当前位置: 首页>>代码示例>>PHP>>正文


PHP ViewFactory::buildTableHeader方法代码示例

本文整理汇总了PHP中ViewFactory::buildTableHeader方法的典型用法代码示例。如果您正苦于以下问题:PHP ViewFactory::buildTableHeader方法的具体用法?PHP ViewFactory::buildTableHeader怎么用?PHP ViewFactory::buildTableHeader使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ViewFactory的用法示例。


在下文中一共展示了ViewFactory::buildTableHeader方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __viewIndex

 /**
  * Builds the content view
  */
 public function __viewIndex()
 {
     $title = $this->_tables[$this->_curColor];
     $this->setPageType('table');
     $this->setTitle(sprintf('%1$s: %2$s – %3$s', extension_anti_brute_force::EXT_NAME, $title, __('Symphony')));
     $this->addStylesheetToHead(URL . '/extensions/anti_brute_force/assets/content.abf.css', 'screen', time() + 10);
     $this->appendSubheading(__($title));
     $cols = $this->getCurrentCols();
     // build header table
     $aTableHead = ViewFactory::buildTableHeader($cols);
     // build body table
     $aTableBody = ViewFactory::buildTableBody($cols, $this->getData());
     // build data table
     $table = Widget::Table(Widget::TableHead($aTableHead), NULL, Widget::TableBody($aTableBody), 'selectable', null, array('role' => 'directory', 'aria-labelledby' => 'symphony-subheading', 'data-interactive' => 'data-interactive'));
     // build the color select box
     $this->Context->appendChild(ViewFactory::buildSubMenu($this->_tables, $this->_curColor, 'switch'));
     // append table
     $this->Form->appendChild($table);
     // insert form
     $insertLine = $this->buildInsertForm();
     // append actions
     $insertLine->appendChild(ViewFactory::buildActions($this->_hasData));
     // append the insert line
     $this->Form->appendChild($insertLine);
 }
开发者ID:korelogic,项目名称:anti_brute_force,代码行数:28,代码来源:content.colored_lists.php

示例2: __viewIndex

 /**
  * Builds the content view
  */
 public function __viewIndex()
 {
     // Get data
     $this->_data = ABF::instance()->getFailures('IP ASC');
     $this->_hasData = is_array($this->_data) && count($this->_data) > 0;
     // Build the page
     $title = __('Banned IPs');
     $this->setPageType('table');
     $this->setTitle(__('%1$s – %2$s', array(__('Symphony'), $title)));
     $this->appendSubheading(__($title));
     // build header table
     $aTableHead = ViewFactory::buildTableHeader($this->_cols);
     // build body table
     $aTableBody = ViewFactory::buildTableBody($this->_cols, $this->_data);
     // build data table
     $table = Widget::Table(Widget::TableHead($aTableHead), NULL, Widget::TableBody($aTableBody), 'selectable', null, array('role' => 'directory', 'aria-labelledby' => 'symphony-subheading', 'data-interactive' => 'data-interactive'));
     $this->Form->appendChild($table);
     $this->Form->appendChild(ViewFactory::buildActions($this->_hasData));
 }
开发者ID:korelogic,项目名称:anti_brute_force,代码行数:22,代码来源:content.banned_ips.php


注:本文中的ViewFactory::buildTableHeader方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。