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


PHP Toolbar::add方法代码示例

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


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

示例1: setupImportExportOperations

 private function setupImportExportOperations()
 {
     if (User::getPermission($this->permissionPrefix . "_can_export")) {
         $exportButton = new MenuButton("Export");
         $exportButton->addMenuItem("PDF", "#", "wyf.openWindow('" . $this->urlPath . "/export/pdf')");
         $exportButton->addMenuItem("CSV Data", "#", "wyf.openWindow('" . $this->urlPath . "/export/csv')");
         $exportButton->addMenuItem("HTML", "#", "wyf.openWindow('" . $this->urlPath . "/export/html')");
         $exportButton->addMenuItem("Excel", "#", "wyf.openWindow('" . $this->urlPath . "/export/xls')");
         $this->toolbar->add($exportButton);
     }
     if ($this->hasAddOperation && User::getPermission($this->permissionPrefix . "_can_import")) {
         $this->toolbar->addLinkButton("Import", $this->urlPath . "/import");
     }
 }
开发者ID:ekowabaka,项目名称:cfx,代码行数:14,代码来源:MCListView.php

示例2: setupList

 /**
  * Sets up the list that is shown by default when the Model controller is
  * used. This list normall has the toolbar on top and the table below.
  * This method performs checks to ensure that the user has permissions
  * to access a particular operation before it renders the operation.
  */
 protected function setupList()
 {
     if ($this->hasAddOperation) {
         if (User::getPermission($this->permissionPrefix . "_can_add") || $this->forceAddOperation) {
             $this->toolbar->addLinkButton("New", $this->name . "/add");
         }
     }
     if (User::getPermission($this->permissionPrefix . "_can_export")) {
         $exportButton = new MenuButton("Export");
         $exportButton->addMenuItem("PDF", "#", "wyf.openWindow('" . $this->urlPath . "/export/pdf')");
         $exportButton->addMenuItem("Data", "#", "wyf.openWindow('" . $this->urlPath . "/export/csv')");
         $exportButton->addMenuItem("Template", "#", "wyf.openWindow('" . $this->urlPath . "/export/csv/template')");
         $exportButton->addMenuItem("HTML", "#", "wyf.openWindow('" . $this->urlPath . "/export/html')");
         $exportButton->addMenuItem("Excel", "#", "wyf.openWindow('" . $this->urlPath . "/export/xls')");
         $this->toolbar->add($exportButton);
         //addLinkButton("Export",$this->urlPath."/export");
     }
     if (User::getPermission($this->permissionPrefix . "_can_import")) {
         $this->toolbar->addLinkButton("Import", $this->urlPath . "/import");
     }
     $this->toolbar->addLinkButton("Search", "#")->linkAttributes = "onclick=\"ntentan.tapi.showSearchArea('{$this->table->name}')\"";
     if ($this->hasEditOperation) {
         if (User::getPermission($this->permissionPrefix . "_can_edit") || $this->forceEditOperation) {
             $this->table->addOperation("edit", "Edit");
         }
     }
     if ($this->hasDeleteOperation) {
         if (User::getPermission($this->permissionPrefix . "_can_delete") || $this->forceDeleteOperation) {
             $this->table->addOperation("delete", "Delete", "javascript:ntentan.confirmRedirect('Are you sure you want to delete','{$this->urlPath}/%path%/%key%')");
         }
     }
     if (User::getPermission($this->permissionPrefix . "_can_view")) {
         $this->table->addOperation("view", "View");
     }
     if (User::getPermission($this->permissionPrefix . "_can_audit")) {
         $this->table->addOperation("audit", "History");
     }
 }
开发者ID:rocksyne,项目名称:wyf,代码行数:44,代码来源:ModelController.php


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