Exemplo n.º 1
0
 public function getItem()
 {
     if (!isset($this->_item)) {
         $this->_item = $this->getService('com://admin/files.database.row.folder', array('data' => array('basepath' => $this->_state->basepath, 'path' => $this->_state->path)));
     }
     return parent::getItem();
 }
Exemplo n.º 2
0
 public function getItem()
 {
     if (!isset($this->_item)) {
         $this->_item = $this->getRow(array('data' => array('container' => $this->_state->container, 'folder' => $this->_state->folder, 'name' => $this->_state->name)));
     }
     return parent::getItem();
 }
Exemplo n.º 3
0
    public function getItem()
    {
        if (!isset($this->_item))
        {
            $this->_item	= KFactory::get('com://admin/files.database.row.file', array(
                'data' => array(
            		'container' => $this->_state->container,
                    'basepath' => $this->_state->basepath,
                    'path' => $this->_state->path
                )));
        }

        return parent::getItem();
    }