本文整理汇总了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");
}
}
示例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");
}
}