[ 'name' => ts('Edit'), 'url' => 'civicrm/admin/financial/financialAccount', 'qs' => 'action=update&id=%%id%%&reset=1', 'title' => ts('Edit Financial Type'), ], CRM_Core_Action::DISABLE => [ 'name' => ts('Disable'), 'ref' => 'crm-enable-disable', 'title' => ts('Disable Financial Type'), ], CRM_Core_Action::ENABLE => [ 'name' => ts('Enable'), 'ref' => 'crm-enable-disable', 'title' => ts('Enable Financial Type'), ], CRM_Core_Action::DELETE => [ 'name' => ts('Delete'), 'url' => 'civicrm/admin/financial/financialAccount', 'qs' => 'action=delete&id=%%id%%', 'title' => ts('Delete Financial Type'), ], ]; } return self::$_links; } /** * Browse all custom data groups. */ public function browse() { // get all custom groups sorted by weight $contributionType = []; $dao = new CRM_Financial_DAO_FinancialAccount(); $dao->orderBy('financial_account_type_id, name'); $dao->find(); $financialAccountType = CRM_Core_PseudoConstant::get('CRM_Financial_DAO_FinancialAccount', 'financial_account_type_id'); while ($dao->fetch()) { $contributionType[$dao->id] = []; CRM_Core_DAO::storeValues($dao, $contributionType[$dao->id]); $contributionType[$dao->id]['financial_account_type_id'] = $financialAccountType[$dao->financial_account_type_id]; // form all action links $action = array_sum(array_keys($this->links())); // update enable/disable links depending on if it is is_reserved or is_active if ($dao->is_reserved) { continue; } else { if ($dao->is_active) { $action -= CRM_Core_Action::ENABLE; } else { $action -= CRM_Core_Action::DISABLE; } } $contributionType[$dao->id]['action'] = CRM_Core_Action::formLink(self::links(), $action, ['id' => $dao->id], ts('more'), FALSE, 'financialAccount.manage.action', 'FinancialAccount', $dao->id ); } $this->assign('rows', $contributionType); } /** * Get name of edit form. * * @return string * Classname of edit form. */ public function editForm() { return 'CRM_Financial_Form_FinancialAccount'; } /** * Get edit form name. * * @return string * name of this page. */ public function editName() { return 'Financial Types'; } /** * Get user context. * * @param null $mode * * @return string * user context. */ public function userContext($mode = NULL) { return 'civicrm/admin/financial/financialAccount'; } }