public function vatsObject()
 {
     global $ilAccess;
     if (!$ilAccess->checkAccess('read', '', $this->object->getRefId())) {
         $this->ilErr->raiseError($this->lng->txt('msg_no_perm_read'), $this->ilErr->MESSAGE);
     }
     include_once 'Services/Table/classes/class.ilTable2GUI.php';
     $tbl = new ilTable2GUI($this, 'vats');
     $tbl->setId('pay_vats_tbl');
     $tbl->setFormAction($this->ctrl->getFormAction($this), 'createVat');
     $tbl->setTitle($this->lng->txt('payment_tax_rates'));
     $tbl->setRowTemplate('tpl.shop_vats_list_row.html', 'Services/Payment');
     $tbl->setDefaultOrderField('title');
     $tbl->addColumn('', 'check', '1%');
     $tbl->addColumn($this->lng->txt('vat_title'), 'vat_title', '33%');
     $tbl->addColumn($this->lng->txt('vat_rate'), 'vat_rate', '33%');
     $tbl->addColumn('', 'commands', '33%');
     $oShopVatsList = new ilShopVatsList();
     $oShopVatsList->read();
     $result = array();
     $_SESSION['count_vats'] = $oShopVatsList->getNumItems();
     if ($oShopVatsList->hasItems()) {
         $tbl->enable('select_all');
         $tbl->setSelectAllCheckbox('vat_id');
         $counter = 0;
         foreach ($oShopVatsList as $oVAT) {
             $result[$counter]['check'] = ilUtil::formCheckbox(0, 'vat_id[]', $oVAT->getId());
             $result[$counter]['vat_title'] = $oVAT->getTitle();
             $result[$counter]['vat_rate'] = ilShopUtils::_formatVAT((double) $oVAT->getRate());
             $this->ctrl->setParameter($this, 'vat_id', $oVAT->getId());
             $result[$counter]['edit_text'] = $this->lng->txt('edit');
             $result[$counter]['edit_url'] = $this->ctrl->getLinkTarget($this, 'editVat');
             $result[$counter]['delete_text'] = $this->lng->txt('delete');
             $result[$counter]['delete_url'] = $this->ctrl->getLinkTarget($this, 'confirmDeleteVat');
             $this->ctrl->clearParameters($this);
             ++$counter;
         }
         $tbl->addMultiCommand('confirmDeleteVat', $this->lng->txt('delete'));
     } else {
         $tbl->disable('header');
         $tbl->disable('footer');
         $tbl->setNoEntriesText($this->lng->txt('paya_no_vats_assigned'));
     }
     $tbl->setData($result);
     $tbl->addCommandButton('createVat', $this->lng->txt('paya_insert_vats'));
     $this->tpl->setContent($tbl->getHTML());
     return true;
 }
 /**
  * Configure social bookmark settings
  * 
  * @access	public
  */
 function editSocialBookmarksObject()
 {
     global $ilAccess, $rbacreview, $lng, $ilCtrl;
     if (!$ilAccess->checkAccess("write", "", $this->object->getRefId())) {
         $this->ilias->raiseError($this->lng->txt("permission_denied"), $this->ilias->error_obj->MESSAGE);
     }
     $this->__initSubTabs("editSocialBookmarks");
     include_once "./Services/UIComponent/AdvancedSelectionList/classes/class.ilAdvancedSelectionListGUI.php";
     include_once './Services/Administration/classes/class.ilSocialBookmarks.php';
     $rset = ilSocialBookmarks::_getEntry();
     $counter = 0;
     foreach ($rset as $row) {
         $current_selection_list = new ilAdvancedSelectionListGUI();
         $current_selection_list->setListTitle($lng->txt("actions"));
         $current_selection_list->setId("act_" . $counter++);
         $ilCtrl->setParameter($this, 'sbm_id', $row->sbm_id);
         $current_selection_list->addItem($lng->txt("edit"), '', $ilCtrl->getLinkTarget($this, "editSocialBookmark"));
         $current_selection_list->addItem($lng->txt("delete"), '', $ilCtrl->getLinkTarget($this, "deleteSocialBookmarks"));
         $toggle_action = '';
         if ($row->sbm_active) {
             $current_selection_list->addItem($lng->txt("socialbm_disable"), '', $toggle_action = $ilCtrl->getLinkTarget($this, "disableSocialBookmarks"));
         } else {
             $current_selection_list->addItem($lng->txt("socialbm_enable"), '', $toggle_action = $ilCtrl->getLinkTarget($this, "enableSocialBookmarks"));
         }
         $dset[] = array('CHECK' => ilUtil::formCheckbox(0, 'sbm_id[]', $row->sbm_id), 'ID' => $row->sbm_id, 'TITLE' => $row->sbm_title, 'LINK' => str_replace('{', '{', $row->sbm_link), 'ICON' => $row->sbm_icon, 'ACTIVE' => $row->sbm_active ? $lng->txt('enabled') : $lng->txt('disabled'), 'ACTIONS' => $current_selection_list->getHTML(), 'TOGGLE_LINK' => $toggle_action);
         $ilCtrl->clearParameters($this);
     }
     require_once 'Services/Table/classes/class.ilTable2GUI.php';
     $table = new ilTable2GUI($this, 'editSocialBookmarks');
     $table->setFormName('smtable');
     $table->setId('smtable');
     $table->setPrefix('sm');
     $table->setFormAction($ilCtrl->getFormAction($this, 'saveSocialBookmarks'));
     $table->addColumn('', 'check', '', true);
     $table->addColumn($lng->txt('icon'), '');
     $table->addColumn($lng->txt('title'), 'TITLE');
     $table->addColumn($lng->txt('link'), 'LINK');
     $table->addColumn($lng->txt('active'), 'ACTIVE');
     $table->addColumn($lng->txt('actions'), '');
     $table->setTitle($lng->txt('bm_manage_social_bm'));
     $table->setData($dset);
     $table->setRowTemplate('tpl.social_bookmarking_row.html', 'Services/Administration');
     $table->setSelectAllCheckbox('sbm_id');
     $table->setDefaultOrderField("title");
     $table->setDefaultOrderDirection("asc");
     $table->addMultiCommand('enableSocialBookmarks', $lng->txt('socialbm_enable'));
     $table->addMultiCommand('disableSocialBookmarks', $lng->txt('socialbm_disable'));
     $table->addMultiCommand('deleteSocialBookmarks', $lng->txt('delete'));
     $table->addCommandButton('addSocialBookmark', $lng->txt('create'));
     $this->tpl->setVariable('ADM_CONTENT', $table->getHTML());
 }
 public function showMembersList()
 {
     if (!$this->mlists->getCurrentMailingList()->getId()) {
         $this->showMailingLists();
         return true;
     }
     $this->ctrl->setParameter($this, 'cmd', 'post');
     $this->ctrl->setParameter($this, 'ml_id', $this->mlists->getCurrentMailingList()->getId());
     $this->tpl->setTitle($this->lng->txt('mail_addressbook'));
     $this->tpl->addBlockFile('ADM_CONTENT', 'adm_content', 'tpl.mail_mailing_lists_members.html', 'Services/Contact');
     $tbl = new ilTable2GUI($this);
     $tbl->setId('show_mlng_mmbrs_list_tbl');
     $tbl->setFormAction($this->ctrl->getFormAction($this), 'showMemberForm');
     $tbl->setTitle($this->lng->txt('mail_members_of_mailing_list') . ' ' . $this->mlists->getCurrentMailingList()->getTitle());
     $tbl->setRowTemplate('tpl.mail_mailing_lists_membersrow.html', 'Services/Contact');
     $this->ctrl->setParameter($this, 'cmd', 'showMembersList');
     $tbl->setDefaultOrderField('title');
     $result = array();
     $tbl->addColumn('', 'check', '10%');
     $tbl->addColumn($this->lng->txt('title'), 'title', '90%');
     $assigned_entries = $this->mlists->getCurrentMailingList()->getAssignedEntries();
     if (count($assigned_entries)) {
         $tbl->enable('select_all');
         $tbl->setSelectAllCheckbox('a_id');
         $counter = 0;
         foreach ($assigned_entries as $entry) {
             $result[$counter]['check'] = ilUtil::formCheckbox(0, 'a_id[]', $entry['a_id']);
             $result[$counter]['title'] = $entry['login'] != '' ? $entry['login'] : $entry['email'];
             ++$counter;
         }
         $tbl->addMultiCommand('confirmDeleteMembers', $this->lng->txt('delete'));
     } else {
         $tbl->disable('header');
         $tbl->disable('footer');
         $tbl->setNoEntriesText($this->lng->txt('mail_search_no'));
     }
     $tbl->setData($result);
     $tbl->addCommandButton('showAssignmentForm', $this->lng->txt('add'));
     $tbl->addCommandButton('showMailingLists', $this->lng->txt('back'));
     $this->tpl->setVariable('MEMBERS_LIST', $tbl->getHTML());
     $this->tpl->show();
     return true;
 }
 /**
  * Shows $results in a table
  *
  * @param array $results
  * @access public
  */
 public function showFileSearchResult($results = null)
 {
     global $tree;
     if (!$results && isset($_SESSION['contents']['search_result'])) {
         // this is for table sorting
         $results = $_SESSION['contents']['search_result'];
     }
     if (!$results) {
         return $this->showAddContent();
     }
     include_once 'Services/Table/classes/class.ilTable2GUI.php';
     $this->tabs->activateTab('contents');
     $table = new ilTable2GUI($this, 'showFileSearchResult');
     $table->setLimit(2147483647);
     $table->setTitle($this->txt('files'));
     $table->setDefaultOrderField('path');
     $table->addColumn('', '', '1%', true);
     $table->addColumn($this->txt('title'), 'title', '30%');
     $table->addColumn($this->lng->txt('path'), 'path', '70%');
     $table->setFormAction($this->ctrl->getFormAction($this, 'addContentFromILIAS'));
     $table->setRowTemplate('tpl.content_file_row.html', $this->pluginObj->getDirectory());
     $table->setId('xavc_cs_' . $this->object->getId());
     $table->setPrefix('xavc_cs_' . $this->object->getId());
     $table->addCommandButton('addContentFromILIAS', $this->txt('add'));
     $table->addCommandButton('cancelSearchContentFile', $this->txt('cancel'));
     $data = array();
     $i = 0;
     foreach ($results as $file_id) {
         $title = ilObject::_lookupTitle($file_id);
         $file_ref = array_shift(ilObject::_getAllReferences($file_id));
         $path_arr = $tree->getPathFull($file_ref);
         $counter = 0;
         $path = '';
         foreach ($path_arr as $element) {
             if ($counter++) {
                 $path .= " > ";
                 $path .= $element['title'];
             } else {
                 $path .= $this->lng->txt('repository');
             }
         }
         $data[$i]['check_box'] = ilUtil::formRadioButton(0, 'file_id', $file_id);
         $data[$i]['title'] = $title;
         $data[$i]['path'] = $path;
         ++$i;
     }
     $table->setData($data);
     $this->tpl->setContent($table->getHTML());
 }