id = $id; } /** * Get the identifier for the group * * @return string */ public function getId() { return $this->id; } /** * Return entries count * * @return bool */ public function hasEntries() { return count( $this->entries ) > 0; } /** * Get all entries represented as plain old PHP arrays. * * @return array */ public function getEntries() { $entryPresenter = static function ( IMenuEntry $entry ) { $result = [ 'name' => $entry->getName(), 'components' => $entry->getComponents(), ]; $classes = $entry->getCSSClasses(); if ( $classes ) { $result[ 'class' ] = implode( ' ', $classes ); } return $result; }; return array_map( $entryPresenter, $this->entries ); } /** * Helper method to verify that the $name of entry is unique (do not exists * in current Group ) * @param string $name * @throws DomainException When the entry already exists */ private function throwIfNotUnique( $name ) { try { $this->search( $name ); } catch ( DomainException $exception ) { return; } throw new DomainException( "The \"${name}\" entry already exists." ); } /** * Insert new menu entry * @param IMenuEntry $entry * @throws DomainException When the entry already exists */ public function insertEntry( IMenuEntry $entry ) { $this->throwIfNotUnique( $entry->getName() ); $this->entries[] = $entry; } /** * Searches for a menu entry by name. * * @param string $name * @return int If the menu entry exists, then the 0-based index of the entry; otherwise, -1 * @throws DomainException */ private function search( $name ) { $count = count( $this->entries ); for ( $i = 0; $i < $count; ++$i ) { if ( $this->entries[$i]->getName() === $name ) { return $i; } } throw new DomainException( "The \"{$name}\" entry doesn't exist." ); } /** * Insert an entry after an existing one. * @deprecated since 1.39 * @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 string $text Entry label * @param string $url The URL entry points to * @param string $className Optional HTML classes * @param string|null $icon defaults to $name if not specified * @param bool $trackable Whether an entry will track clicks or not. Default is false. * @param bool $isJSOnly Whether the entry works without JS * @throws DomainException When the existing entry doesn't exist */ public function insertAfter( $targetName, $name, $text, $url, $className = '', $icon = null, $trackable = false, $isJSOnly = false ) { wfDeprecated( __METHOD__, '1.39' ); $this->throwIfNotUnique( $name ); $index = $this->search( $targetName ); $entry = SingleMenuEntry::create( $name, $text, $url, $className, $icon, $trackable ); if ( $isJSOnly ) { $entry->setJSOnly(); } array_splice( $this->entries, $index + 1, 0, [ $entry ] ); } /** * @param string $targetName * @return IMenuEntry * @throws DomainException */ public function getEntryByName( $targetName ): IMenuEntry { $index = $this->search( $targetName ); return $this->entries[$index]; } /** * Serialize the group for use in a template * @return array{entries:array,id:string} */ public function serialize() { return [ 'entries' => $this->getEntries(), 'id' => $this->getId(), ]; } }