__construct() public method

Constructor
Author: Dmitry (dio) Levashov
public __construct ( $opts )
コード例 #1
0
 /**
  * Constructor
  *
  * @param  array  elFinder and roots configurations
  * @return void
  * @author nao-pon
  **/
 public function __construct($opts)
 {
     parent::__construct($opts);
     $this->commands['perm'] = array('target' => true, 'perm' => true, 'umask' => false, 'gids' => false, 'filter' => false);
 }
コード例 #2
0
ファイル: VisualElFinder.php プロジェクト: florinp/dexonline
 public function __construct($opts)
 {
     parent::__construct($opts);
     $this->commands['tagimage'] = array('target' => true);
 }
コード例 #3
0
 public function __construct($opts)
 {
     parent::__construct($opts);
     $this->commands['desc'] = array('target' => TRUE, 'content' => FALSE);
 }
コード例 #4
0
ファイル: tikiElFinder.php プロジェクト: linuxwhy/tiki-1
 function __construct($opts)
 {
     parent::__construct($opts);
     /* Adding new command */
     $this->commands['info'] = array('target' => true, 'content' => false);
 }