summaryrefslogtreecommitdiff
path: root/bin/wiki/vendor/addwiki/mediawiki-datamodel/src/Title.php
blob: 1fb151386e0aea16273011293d875aba37da5814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php

namespace Mediawiki\DataModel;

use InvalidArgumentException;
use JsonSerializable;

/**
 * @author Addshore
 */
class Title implements JsonSerializable {

	/**
	 * @var string
	 */
	private $title;

	/**
	 * @var int
	 */
	private $ns;

	/**
	 * @param string $title
	 * @param int $ns
	 *
	 * @throws InvalidArgumentException
	 */
	public function __construct( $title, $ns = 0 ) {
		if( !is_string( $title ) ) {
			throw new InvalidArgumentException( '$title must be a string' );
		}
		if( !is_int( $ns ) ) {
			throw new InvalidArgumentException( '$ns must be an int' );
		}
		$this->title = $title;
		$this->ns = $ns;
	}

	/**
	 * @return int
	 * @since 0.1
	 */
	public function getNs() {
		return $this->ns;
	}

	/**
	 * @return string
	 * @since 0.6
	 */
	public function getText() {
		return $this->title;
	}

	/**
	 * @return string
	 * @deprecated in 0.6 use getText (makes things look cleaner)
	 */
	public function getTitle() {
		return $this->getText();
	}

	/**
	 * @link http://php.net/manual/en/jsonserializable.jsonserialize.php
	 */
	public function jsonSerialize() {
		return array(
			'title' => $this->title,
			'ns' => $this->ns,
		);
	}

	/**
	 * @param array $json
	 *
	 * @return self
	 */
	public static function jsonDeserialize( $json ) {
		return new self( $json['title'], $json['ns'] );
	}

}