2021-01-28 19:34:46 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Citizen - A responsive skin developed for the Star Citizen Wiki
|
|
|
|
*
|
|
|
|
* This file is part of Citizen.
|
|
|
|
*
|
|
|
|
* Citizen is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Citizen is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with Citizen. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @file
|
|
|
|
* @ingroup Skins
|
|
|
|
*/
|
|
|
|
|
|
|
|
declare( strict_types=1 );
|
|
|
|
|
2022-05-26 20:54:52 +00:00
|
|
|
namespace MediaWiki\Skins\Citizen\Partials;
|
2021-01-28 19:34:46 +00:00
|
|
|
|
2022-05-26 20:54:52 +00:00
|
|
|
use MediaWiki\Skins\Citizen\GetConfigTrait;
|
|
|
|
use MediaWiki\Skins\Citizen\SkinCitizen;
|
2023-08-25 00:56:42 +00:00
|
|
|
use MediaWiki\Title\Title;
|
2023-08-25 00:57:30 +00:00
|
|
|
use OutputPage;
|
2021-01-28 19:34:46 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The base class for all skin partials
|
2024-05-08 19:30:36 +00:00
|
|
|
* TODO: Use SkinComponentRegistryContext
|
2021-01-28 19:34:46 +00:00
|
|
|
*/
|
|
|
|
abstract class Partial {
|
|
|
|
|
|
|
|
use GetConfigTrait;
|
|
|
|
|
2024-05-08 19:30:36 +00:00
|
|
|
/** @var SkinCitizen */
|
2021-01-28 19:34:46 +00:00
|
|
|
protected $skin;
|
|
|
|
|
2024-05-08 19:30:36 +00:00
|
|
|
/** @var OutputPage */
|
2021-01-28 19:34:46 +00:00
|
|
|
protected $out;
|
|
|
|
|
2024-05-08 19:30:36 +00:00
|
|
|
/** @var Title */
|
2022-05-22 19:06:49 +00:00
|
|
|
protected $title;
|
|
|
|
|
2024-05-08 19:30:36 +00:00
|
|
|
/** @var User */
|
2022-05-22 19:06:49 +00:00
|
|
|
protected $user;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor
|
2021-01-28 19:34:46 +00:00
|
|
|
* @param SkinCitizen $skin
|
|
|
|
*/
|
|
|
|
public function __construct( SkinCitizen $skin ) {
|
|
|
|
$this->skin = $skin;
|
|
|
|
$this->out = $skin->getOutput();
|
2022-05-22 19:06:49 +00:00
|
|
|
$this->title = $this->out->getTitle();
|
|
|
|
$this->user = $this->out->getUser();
|
2021-01-28 19:34:46 +00:00
|
|
|
}
|
|
|
|
}
|