array( 'name' => ts('Edit'), 'url' => 'civicrm/admin/pdfFormats', 'qs' => 'action=update&id=%%id%%&reset=1', 'title' => ts('Edit PDF Page Format'), ), CRM_Core_Action::DELETE => array( 'name' => ts('Delete'), 'url' => 'civicrm/admin/pdfFormats', 'qs' => 'action=delete&id=%%id%%', 'title' => ts('Delete PDF Page Format'), ), ); } return self::$_links; } /** * Get name of edit form * * @return string Classname of edit form. */ function editForm() { return 'CRM_Admin_Form_PdfFormats'; } /** * Get edit form name * * @return string name of this page. */ function editName() { return 'PDF Page Formats'; } /** * Get user context. * * @param null $mode * * @return string user context. */ function userContext($mode = NULL) { return 'civicrm/admin/pdfFormats'; } /** * Browse all PDF Page Formats * * @param null $action * * @return void * @access public * @static */ function browse($action = NULL) { // Get list of configured PDF Page Formats $pdfFormatList = CRM_Core_BAO_PdfFormat::getList(); // Add action links to each of the PDF Page Formats $action = array_sum(array_keys($this->links())); foreach ($pdfFormatList as & $format) { $format['action'] = CRM_Core_Action::formLink( self::links(), $action, array('id' => $format['id']), ts('more'), FALSE, 'pdfFormat.manage.action', 'PdfFormat', $format['id'] ); } // Order Label Formats by weight $returnURL = CRM_Utils_System::url(self::userContext()); CRM_Core_BAO_PdfFormat::addOrder($pdfFormatList, $returnURL); $this->assign('rows', $pdfFormatList); } }