$entry->getName(), 'components' => $entry->getComponents(), ]; if ( $entry->isJSOnly() ) { $result['class'] = 'jsonly'; } return $result; }; return array_map( $entryPresenter, $this->entries ); } /** * Insert an entry into the menu. * * @param string $name A unique name identifying the menu entry * @param bool $isJSOnly Whether the menu entry works without JS * @throws DomainException When the entry already exists * @return MenuEntry */ public function insert( $name, $isJSOnly = false ) { if ( $this->search( $name ) !== -1 ) { throw new DomainException( "The \"${name}\" entry already exists." ); } $this->entries[] = $entry = new MenuEntry( $name, $isJSOnly ); return $entry; } /** * Searches for a menu entry by name. * * @param string $name * @return integer If the menu entry exists, then the 0-based index of the entry; otherwise, -1 */ private function search( $name ) { $count = count( $this->entries ); for ( $i = 0; $i < $count; ++$i ) { if ( $this->entries[$i]->getName() === $name ) { return $i; } } return -1; } /** * Insert an entry after an existing one. * * @param string $targetName The name of the existing entry to insert * the new entry after * @param string $name The name of the new entry * @param bool $isJSOnly Whether the entry works without JS * @throws DomainException When the existing entry doesn't exist * @return MenuEntry */ public function insertAfter( $targetName, $name, $isJSOnly = false ) { if ( $this->search( $name ) !== -1 ) { throw new DomainException( "The \"${name}\" entry already exists." ); } $index = $this->search( $targetName ); if ( $index === -1 ) { throw new DomainException( "The \"{$targetName}\" entry doesn't exist." ); } $entry = new MenuEntry( $name, $isJSOnly ); array_splice( $this->entries, $index + 1, 0, [ $entry ] ); return $entry; } }