本文整理汇总了PHP中AdminPage::output方法的典型用法代码示例。如果您正苦于以下问题:PHP AdminPage::output方法的具体用法?PHP AdminPage::output怎么用?PHP AdminPage::output使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AdminPage
的用法示例。
在下文中一共展示了AdminPage::output方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: output
protected function output()
{
// Вывод начала
$controls = $this->schema->selectTabbedControls();
// Сортируем вкладки по алфавиту
ksort($controls);
$title = sprintf('Редактирование "%s"', $this->schema->getTitle());
$sheets = $this->getTabSheets($controls);
if ($this->schema->getSitemapLink() == 0) {
$begin = array($title => '#');
} else {
$parents = Sitemap_CMS::getParents($this->schema->getSitemapLink());
$begin = Sitemap_CMS::selectBegin($parents, $title);
}
$this->outputHeader($begin, $title, array(), array(), $this->embed);
$this->outputEditingForm($sheets, $controls);
parent::output();
}
示例2: outputForm
public function outputForm($aDocument, $aMove, $szTitle, $szTitle2, $aButton)
{
$design = CMSDesign::getInstance();
$design->popupBegin($szTitle);
$design->header($szTitle);
$design->header($szTitle2);
$design->buttons($aButton);
?>
<script type="text/javascript" >
jQuery(document).ready(function () {
jQuery('#close_window').click(function () {
window.close();
return false;
});
});
</script>
<?php
// Получаем список возможных скриптов
$aTableHeader = array(array(' ', 5), array('Страница', 25), array('URL', 55));
$design->formBegin();
$design->TableBegin();
$design->tableHeader($aTableHeader);
foreach ($aMove as $row) {
$szRadio = sprintf('<input type="radio" name="to" value="%d" %s>', $row['id'], $aDocument['parent'] == $row['id'] ? ' checked ' : '');
$design->rowBegin();
$design->listCell($szRadio);
$design->listCell(htmlspecialchars($row['name']));
$design->listCell(htmlspecialchars($row['full_url']));
$design->rowEnd();
}
$design->tableEnd();
$design->hidden('id', $aDocument['id']);
$design->submit('submit', 'Переместить');
$design->formEnd();
$design->popupEnd();
parent::output();
}
示例3: output
public function output()
{
$tabSheet = array(array('id' => 'tab_list', 'title' => 'Список контролов'), array('id' => 'tab_sheets', 'title' => 'Вкладки редактирования'), array('id' => 'tab_add', 'title' => 'Добавить контрол'), array('id' => 'tab_sitemap', 'title' => 'Подключить к sitemap'));
$buttons = array('Редактировать данные' => sprintf('./edit.php?schema=%s', $this->schema->getName()));
// Стартуем вывод
$this->outputHeader();
$design = CMSDesign::getInstance();
$design->decor->buttons($buttons);
$design->tabs->sheetsBegin($tabSheet);
// Вкладка, список полей
$design->tabs->contentBegin($tabSheet[0]['id']);
$this->outputControlListForm();
$design->tabs->contentEnd();
// Вкладка, поля редактирования
$design->tabs->contentBegin($tabSheet[1]['id']);
$this->outputTabsheetsForm();
$design->tabs->contentEnd();
// Добавить контрол
$design->tabs->contentBegin($tabSheet[2]['id']);
$this->outputAddControlForm();
$design->tabs->contentEnd();
// Отображает форму sitemap ссылки
$design->tabs->contentBegin($tabSheet[3]['id']);
$this->outputSitemapLink();
$design->tabs->contentEnd();
// Завершаем вывод
$design->tabs->sheetsEnd();
$this->outputFooter();
parent::output();
}