select('menu_custom', 'm')->fields('m'); } /** * {@inheritdoc} */ public function fields() { return [ 'menu_name' => $this->t('The menu name. Primary key.'), 'title' => $this->t('The human-readable name of the menu.'), 'description' => $this->t('A description of the menu'), ]; } /** * {@inheritdoc} */ public function getIds() { $ids['menu_name']['type'] = 'string'; return $ids; } }