コード例 #1
0
ファイル: files.php プロジェクト: revolveweb/pyrocms
 function __construct()
 {
     parent::WYSIWYG_Controller();
     $this->load->model('files/file_folders_m');
     $this->load->model('files/file_m');
     $this->template->append_metadata(css('images.css', 'wysiwyg'))->title('Files');
 }
コード例 #2
0
ファイル: upload.php プロジェクト: reith2004/pyrocms
	function __construct()
	{
		parent::WYSIWYG_Controller();
        $this->config->load('files/files');
        $this->_path = FCPATH . '/' . $this->config->item('files_folder') . '/';
		
		//if the folder hasn't been created by the files module create it now
		is_dir($this->_path) OR mkdir($this->_path, 0777, TRUE);
	}
コード例 #3
0
ファイル: wysiwyg.php プロジェクト: james182/pyrocms
 function __construct()
 {
     parent::WYSIWYG_Controller();
     $this->load->model('file_m');
 }
コード例 #4
0
ファイル: image.php プロジェクト: vmichnowicz/pyrocms
 function __construct()
 {
     parent::WYSIWYG_Controller();
 }
コード例 #5
0
ファイル: upload.php プロジェクト: vmichnowicz/pyrocms
 function __construct()
 {
     parent::WYSIWYG_Controller();
     $this->config->load('files/files');
     $this->_path = FCPATH . '/' . $this->config->item('files_folder') . '/';
 }