mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-04-06 22:50:31 +02:00
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();
|
|
}
|
|
|
|
|
|
}
|
|
|
|
?>
|