mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 14:31:59 +01:00
857f5e549d
Change-Id: Ia098c7c2efcb9011e706012ee074e0c354bebded Signed-off-by: SJ <sj@acts.hu>
26 lines
426 B
PHP
26 lines
426 B
PHP
<?php
|
|
|
|
|
|
class ControllerSearchFolder extends Controller {
|
|
|
|
protected function index() {
|
|
|
|
$this->id = "folder";
|
|
$this->template = "search/folder.tpl";
|
|
|
|
$session = Registry::get('session');
|
|
$request = Registry::get('request');
|
|
$db = Registry::get('db');
|
|
|
|
$this->load->model('folder/folder');
|
|
|
|
$this->data['folders'] = $session->get("folders");
|
|
|
|
$this->render();
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|