PropertyAlbums.php 442 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: xiaofeng
  5. * Date: 2018/3/4
  6. * Time: 上午9:47
  7. */
  8. namespace common\models;
  9. //use yii\db\ActiveRecord;
  10. class PropertyAlbums extends Common
  11. {
  12. public $photo1;
  13. public function rules()
  14. {
  15. return [
  16. ['photo', 'file', 'skipOnEmpty' => false, 'extensions' => 'png, jpg', 'checkExtensionByMimeType' => false, 'maxFiles' => 4],
  17. ];
  18. }
  19. }