'CSS', 'javascript' => 'JavaScript', 'html' => 'HTML', 'php' => 'PHP', ); /** * put your comment there... * * @var mixed */ public $items; /** * put your comment there... * */ public function display($tpl = null) { // Query templates list. $this->items = $this->getModel()->getItems(); // Display the view. echo $this->getTemplate($tpl); } /** * put your comment there... * */ protected function enqueueScripts() { // Get JQuery. self::useScripts(__CLASS__, 'jquery-ui-tabs', 'views:templates:lookup:public:js:{CJT_TEMPLATES-}lookup' ); } /** * put your comment there... * */ protected function enqueueStyles() { self::useStyles(__CLASS__, 'framework:css:{CJT-}forms', 'views:templates:lookup:public:css:{CJT-}lookup' ); } } // End class. // Hookable!! CJTTemplatesLookupView::define('CJTTemplatesLookupView');