Example #1
0
 /**
  * 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->hasMenuBar) {
         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=\"wyf.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:wyf.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");
     }
     if (User::getPermission($this->permissionPrefix . "_can_view_notes")) {
         $this->table->addOperation("notes", "Notes");
     }
 }