コード例 #1
0
ファイル: uploadable.php プロジェクト: nooku/nooku-files
 public function __construct(KObjectConfig $config)
 {
     parent::__construct($config);
     $this->addFilter($this->getObject('com:files.filter.file.name'), self::PRIORITY_HIGH);
     $this->addFilter($this->getObject('com:files.filter.file.extension'));
     $this->addFilter($this->getObject('com:files.filter.file.mimetype'));
     $this->addFilter($this->getObject('com:files.filter.file.size'));
 }
コード例 #2
0
ファイル: uploadable.php プロジェクト: kosmosby/medicine-prof
	public function __construct(KObjectConfig $config)
	{
		parent::__construct($config);

		$this->addFilter($this->getObject('com:files.filter.folder.name'), self::PRIORITY_HIGH);
	}