예제 #1
0
	protected function _initialize(KObjectConfig $config)
	{
		$config->append(array(
			'behaviors' => array('thumbnailable')
		));

		parent::_initialize($config);
	}
예제 #2
0
    protected function _initialize(KObjectConfig $config)
    {
        $config->append(array(
            'model' => 'lib:model.empty'
        ));

        parent::_initialize($config);
    }
예제 #3
0
파일: file.php 프로젝트: nooku/nooku-files
 protected function _actionRender(KControllerContextInterface $context)
 {
     $model = $this->getModel();
     $result = null;
     if ($this->getRequest()->getFormat() === 'html') {
         // Serve file
         if ($model->getState()->isUnique()) {
             $file = $this->getModel()->fetch();
             try {
                 $this->getResponse()->attachTransport('stream')->setContent($file->fullpath, $file->mimetype);
             } catch (InvalidArgumentException $e) {
                 throw new KControllerExceptionResourceNotFound('File not found');
             }
         } else {
             $query = $this->getRequest()->query;
             $container = $this->getModel()->getContainer();
             // Note: PHP converts dots to underscores in cookie names
             $cookie = json_decode($this->getObject('request')->cookies['com_files_container_' . $container->slug . '_state'], true);
             if (strpos($query->layout, 'compact') === false && is_array($cookie)) {
                 // Check if the folder exists, folder shouldn't exist in query for cookie to be used
                 if (isset($cookie['folder'])) {
                     $adapter = $container->getAdapter('folder');
                     $adapter->setPath($container->fullpath . '/' . $cookie['folder']);
                     // Unset folder cookie if path does not exists.
                     if (!$adapter->exists()) {
                         unset($cookie['folder']);
                     }
                 }
                 foreach ($cookie as $key => $value) {
                     if (!$query->has($key)) {
                         $query->{$key} = $value;
                     }
                 }
                 $model->getState()->setValues($query->toArray());
             }
             $result = parent::_actionRender($context);
         }
     } else {
         $result = parent::_actionRender($context);
     }
     return $result;
 }