public $useLivePageJS = TRUE;
- /**
- * The action links that we need to display for the browse screen.
- *
- * @var array
- */
- public static $_links = NULL;
-
/**
* Get BAO Name.
*
return 'CRM_Contact_BAO_RelationshipType';
}
- /**
- * Get action Links.
- *
- * @return array
- * (reference) of action links
- */
- public function &links() {
- if (!(self::$_links)) {
- self::$_links = [
- CRM_Core_Action::VIEW => [
- 'name' => ts('View'),
- 'url' => 'civicrm/admin/reltype/edit',
- 'qs' => 'action=view&id=%%id%%&reset=1',
- 'title' => ts('View Relationship Type'),
- 'weight' => -20,
- ],
- CRM_Core_Action::UPDATE => [
- 'name' => ts('Edit'),
- 'url' => 'civicrm/admin/reltype/edit',
- 'qs' => 'action=update&id=%%id%%&reset=1',
- 'title' => ts('Edit Relationship Type'),
- 'weight' => -10,
- ],
- CRM_Core_Action::DISABLE => [
- 'name' => ts('Disable'),
- 'ref' => 'crm-enable-disable',
- 'title' => ts('Disable Relationship Type'),
- 'weight' => 40,
- ],
- CRM_Core_Action::ENABLE => [
- 'name' => ts('Enable'),
- 'ref' => 'crm-enable-disable',
- 'title' => ts('Enable Relationship Type'),
- 'weight' => 30,
- ],
- CRM_Core_Action::DELETE => [
- 'name' => ts('Delete'),
- 'url' => 'civicrm/admin/reltype/edit',
- 'qs' => 'action=delete&id=%%id%%',
- 'title' => ts('Delete Reletionship Type'),
- 'weight' => 100,
- ],
- ];
- }
- return self::$_links;
- }
-
/**
* Get name of edit form.
*