request('id', 'int', 0); $do = $inCore->request('do', 'str', 'view'); //Подключаем JS к странице $inPage->addHeadJS('components/my_component/js/common.js'); //Подключаем CSS к странице $inPage->addHeadCSS('components/my_component/css/styles.css'); //============================================================================// if ($do=='view'){ $inPage->printHeading('ЗАГОЛОВОК КОМПОНЕНТА'); $smarty = $inCore->initSmarty('components', 'com_mycomponent_view.tpl'); $smarty->display('com_mycomponent_view.tpl'); } //============================================================================// } //end of component ?>