namespace = $namespace; $this->dbkey = strtr( $title, ' ', '_' ); $this->fragment = $fragment; $this->interwiki = $interwiki; } /** * Asserts that the given parameters could be used to construct a TitleValue object. * Performs basic syntax and consistency checks. Does not perform full validation, * use TitleParser::makeTitleValueSafe() for that. * * @param int $namespace * @param string $title * @param string $fragment * @param string $interwiki * * @throws InvalidArgumentException if the combination of parameters is not valid for * constructing a TitleValue. */ public static function assertValidSpec( $namespace, $title, $fragment = '', $interwiki = '' ) { if ( !is_int( $namespace ) ) { throw new ParameterTypeException( '$namespace', 'int' ); } if ( !is_string( $title ) ) { throw new ParameterTypeException( '$title', 'string' ); } if ( !is_string( $fragment ) ) { throw new ParameterTypeException( '$fragment', 'string' ); } if ( !is_string( $interwiki ) ) { throw new ParameterTypeException( '$interwiki', 'string' ); } Assert::parameter( !preg_match( '/^[_ ]|[\r\n\t]|[_ ]$/', $title ), '$title', "invalid name '$title'" ); // NOTE: As of MW 1.34, [[#]] is rendered as a valid link, pointing to the empty // page title, effectively leading to the wiki's main page. This means that a completely // empty TitleValue has to be considered valid, for consistency with Title. // Also note that [[#foo]] is a valid on-page section links, and that [[acme:#foo]] is // a valid interwiki link. Assert::parameter( $title !== '' || $namespace === NS_MAIN, '$title', 'should not be empty unless namespace is main' ); } /** * @since 1.23 * @return int */ public function getNamespace() { return $this->namespace; } /** * @since 1.27 * @param int $ns * @return bool */ public function inNamespace( $ns ) { return $this->namespace == $ns; } /** * @since 1.23 * @return string */ public function getFragment() { return $this->fragment; } /** * @since 1.27 * @return bool */ public function hasFragment() { return $this->fragment !== ''; } /** * Returns the title's DB key, as supplied to the constructor, * without namespace prefix or fragment. * @since 1.23 * * @return string */ public function getDBkey() { return $this->dbkey; } /** * Returns the title in text form, * without namespace prefix or fragment. * @since 1.23 * * This is computed from the DB key by replacing any underscores with spaces. * * @note To get a title string that includes the namespace and/or fragment, * use a TitleFormatter. * * @return string */ public function getText() { return str_replace( '_', ' ', $this->dbkey ); } /** * Creates a new TitleValue for a different fragment of the same page. * * @since 1.27 * @param string $fragment The fragment name, or "" for the entire page. * * @return TitleValue */ public function createFragmentTarget( $fragment ) { return new TitleValue( $this->namespace, $this->dbkey, $fragment, $this->interwiki ); } /** * Whether it has an interwiki part * * @since 1.27 * @return bool */ public function isExternal() { return $this->interwiki !== ''; } /** * Returns the interwiki part * * @since 1.27 * @return string */ public function getInterwiki() { return $this->interwiki; } /** * Returns a string representation of the title, for logging. This is purely informative * and must not be used programmatically. Use the appropriate TitleFormatter to generate * the correct string representation for a given use. * @since 1.23 * * @return string */ public function __toString() { $name = $this->namespace . ':' . $this->dbkey; if ( $this->fragment !== '' ) { $name .= '#' . $this->fragment; } if ( $this->interwiki !== '' ) { $name = $this->interwiki . ':' . $name; } return $name; } }