PATH:
home
/
letacommog
/
letaweb
/
admin
/
views
/
layouts
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="language" content="en" /> <?php $clientScript = Yii::app()->getClientScript(); $clientScript->registerCoreScript('jquery'); $script = ''; ?> <script type="text/javascript"> var basePath = '<?php echo Yii::app()->url->get_script_path() ?>'; var baseScriptPath = '/scripts'; </script> <?php $clientScript->registerScript('', sprintf(' window.max_domain_count=%s; window.max_upload_size=%s; window.max_page_count=%s; window.max_contributor_count=%s; window.max_post_count=%s; window.username="%s"; window.YII_CSRF_TOKEN="%s"; ', Yii::app()->site->model->getMaxNumberofDomains(), Yii::app()->site->model->getMaxUploadSize(), Yii::app()->site->model->getMaxNumberofPages(), Yii::app()->site->model->getMaxNumberofContributors(), Yii::app()->site->model->getMaxNumberofPosts(), Yii::app()->user->name, Yii::app()->request->csrfToken), CClientScript::POS_HEAD); ?> <?php $libraries = $this->libraries;//Library_Script::model()->findAll(array('condition' => 'type=1 and admin=1 and in_library=1', 'order' => 'id asc, priority asc')); foreach ($libraries as $library) { if($library['type']==1 && $library['admin']==1 && $library['in_library']==1) $clientScript->registerScriptFile(Yii::app()->url->get_script_path().'/scripts/libraries/'.trim($library->name).'.js?'.STS_VERSION); if($library['type']==1 && $library['admin']==1 && $library['in_library']==0) $clientScript->registerScriptFile(Yii::app()->url->get_script_path().'/scripts/'.trim($library->name).'.js?'.STS_VERSION); if($library['type']==2 && $library['admin']==1) $clientScript->registerCssFile(Yii::app()->url->get_script_path().'/css/'.trim($library->name).'.css?'.STS_VERSION); } ?> <?php //$clientScript->registerScriptFile(Yii::app()->url->get_script_path().'/scripts/libraries/angular/i18n/angular-locale_'.trim(Yii::app()->language).'.js?'.STS_VERSION); $clientScript->registerScriptFile(Yii::app()->url->get_script_path().'/scripts/terms_'.trim(Yii::app()->language).'.js?'.STS_VERSION); foreach ($this->editors as $name => $editor) { if ($editor['visible']) { $clientScript->registerScriptFile(Yii::app()->url->get_script_path().'/scripts/editor/'.trim($name).'.js', CClientScript::POS_BEGIN); } } ?> <?php $popups = $this->popups;//Popup_Script::model()->findAll(array('order' => 'priority asc')); foreach ($popups as $popup) { $clientScript->registerScriptFile(Yii::app()->url->get_script_path().'/scripts/editor/popup/'.trim($popup['name']).'.js?'.STS_VERSION); } ?> <?php Yii::app()->runComponent('renderHead',$clientScript); $clientScript->render($script); ?> <title><?php echo CHtml::encode($this->pageTitle); ?></title> </head> <body id="page"> <script type="text/javascript"> var lang = <?php echo '"'.Yii::app()->language.'"'; ?> </script> <?php echo $content; ?> </body> </html>
[+]
..
[-] admin_column.php
[edit]
[-] main_login.php
[edit]
[-] footer.php
[edit]
[-] column_view_page.php
[edit]
[-] main_checkout.php
[edit]
[-] column_checkout.php
[edit]
[-] edit_main.php
[edit]
[-] admin_main.php
[edit]
[-] column1.php
[edit]
[-] column_login.php
[edit]
[-] edit_column.php
[edit]
[-] main.php
[edit]
[-] main_view_page.php
[edit]