__table = 'civicrm_menu'; parent::__construct(); } /** * Returns foreign keys and entity references. * * @return array * [CRM_Core_Reference_Interface] */ static function getReferenceColumns() { if (!isset(Civi::$statics[__CLASS__]['links'])) { Civi::$statics[__CLASS__]['links'] = static ::createReferenceColumns(__CLASS__); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'domain_id', 'civicrm_domain', 'id'); Civi::$statics[__CLASS__]['links'][] = new CRM_Core_Reference_Basic(self::getTableName() , 'component_id', 'civicrm_component', 'id'); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'links_callback', Civi::$statics[__CLASS__]['links']); } return Civi::$statics[__CLASS__]['links']; } /** * Returns all the column names of this table * * @return array */ static function &fields() { if (!isset(Civi::$statics[__CLASS__]['fields'])) { Civi::$statics[__CLASS__]['fields'] = array( 'id' => array( 'name' => 'id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Menu ID') , 'required' => true, ) , 'domain_id' => array( 'name' => 'domain_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Domain') , 'description' => 'Which Domain is this menu item for', 'required' => true, 'FKClassName' => 'CRM_Core_DAO_Domain', 'pseudoconstant' => array( 'table' => 'civicrm_domain', 'keyColumn' => 'id', 'labelColumn' => 'name', ) ) , 'path' => array( 'name' => 'path', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Path') , 'description' => 'Path Name', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'path_arguments' => array( 'name' => 'path_arguments', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Arguments') , 'description' => 'Arguments to pass to the url', ) , 'title' => array( 'name' => 'title', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Menu Title') , 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'access_callback' => array( 'name' => 'access_callback', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Access Callback') , 'description' => 'Function to call to check access permissions', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'access_arguments' => array( 'name' => 'access_arguments', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Access Arguments') , 'description' => 'Arguments to pass to access callback', ) , 'page_callback' => array( 'name' => 'page_callback', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Page Callback') , 'description' => 'function to call for this url', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'page_arguments' => array( 'name' => 'page_arguments', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Page Arguments') , 'description' => 'Arguments to pass to page callback', ) , 'breadcrumb' => array( 'name' => 'breadcrumb', 'type' => CRM_Utils_Type::T_TEXT, 'title' => ts('Breadcrumb') , 'description' => 'Breadcrumb for the path.', ) , 'return_url' => array( 'name' => 'return_url', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Return Url') , 'description' => 'Url where a page should redirected to, if next url not known.', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'return_url_args' => array( 'name' => 'return_url_args', 'type' => CRM_Utils_Type::T_STRING, 'title' => ts('Return Url Args') , 'description' => 'Arguments to pass to return_url', 'maxlength' => 255, 'size' => CRM_Utils_Type::HUGE, ) , 'component_id' => array( 'name' => 'component_id', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Component') , 'description' => 'Component that this menu item belongs to', 'FKClassName' => 'CRM_Core_DAO_Component', 'html' => array( 'type' => 'Select', ) , 'pseudoconstant' => array( 'table' => 'civicrm_component', 'keyColumn' => 'id', 'labelColumn' => 'name', ) ) , 'is_active' => array( 'name' => 'is_active', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Enabled?') , 'description' => 'Is this menu item active?', ) , 'is_public' => array( 'name' => 'is_public', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Public?') , 'description' => 'Is this menu accessible to the public?', ) , 'is_exposed' => array( 'name' => 'is_exposed', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Exposed?') , 'description' => 'Is this menu exposed to the navigation system?', ) , 'is_ssl' => array( 'name' => 'is_ssl', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Use SSL?') , 'description' => 'Should this menu be exposed via SSL if enabled?', ) , 'weight' => array( 'name' => 'weight', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Order') , 'description' => 'Ordering of the menu items in various blocks.', 'required' => true, 'default' => '1', ) , 'type' => array( 'name' => 'type', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Type') , 'description' => 'Drupal menu type.', 'required' => true, 'default' => '1', ) , 'page_type' => array( 'name' => 'page_type', 'type' => CRM_Utils_Type::T_INT, 'title' => ts('Page Type') , 'description' => 'CiviCRM menu type.', 'required' => true, 'default' => '1', ) , 'skipBreadcrumb' => array( 'name' => 'skipBreadcrumb', 'type' => CRM_Utils_Type::T_BOOLEAN, 'title' => ts('Hide Breadcrumb?') , 'description' => 'skip this url being exposed to breadcrumb', ) , ); CRM_Core_DAO_AllCoreTables::invoke(__CLASS__, 'fields_callback', Civi::$statics[__CLASS__]['fields']); } return Civi::$statics[__CLASS__]['fields']; } /** * Return a mapping from field-name to the corresponding key (as used in fields()). * * @return array * Array(string $name => string $uniqueName). */ static function &fieldKeys() { if (!isset(Civi::$statics[__CLASS__]['fieldKeys'])) { Civi::$statics[__CLASS__]['fieldKeys'] = array_flip(CRM_Utils_Array::collect('name', self::fields())); } return Civi::$statics[__CLASS__]['fieldKeys']; } /** * Returns the names of this table * * @return string */ static function getTableName() { return self::$_tableName; } /** * Returns if this table needs to be logged * * @return boolean */ function getLog() { return self::$_log; } /** * Returns the list of fields that can be imported * * @param bool $prefix * * @return array */ static function &import($prefix = false) { $r = CRM_Core_DAO_AllCoreTables::getImports(__CLASS__, 'menu', $prefix, array()); return $r; } /** * Returns the list of fields that can be exported * * @param bool $prefix * * @return array */ static function &export($prefix = false) { $r = CRM_Core_DAO_AllCoreTables::getExports(__CLASS__, 'menu', $prefix, array()); return $r; } }