2021-09-09 22:13:48 +00:00
|
|
|
<?php
|
|
|
|
|
2022-02-06 22:43:56 +00:00
|
|
|
namespace Vector;
|
|
|
|
|
2021-09-09 22:13:48 +00:00
|
|
|
/**
|
|
|
|
* @ingroup Skins
|
|
|
|
* @package Vector
|
|
|
|
* @internal
|
|
|
|
*/
|
|
|
|
class SkinVectorLegacy extends SkinVector {
|
|
|
|
/**
|
2022-01-20 22:14:19 +00:00
|
|
|
* Whether or not the legacy version of the skin is being used.
|
2021-09-09 22:13:48 +00:00
|
|
|
*
|
2022-01-20 22:14:19 +00:00
|
|
|
* @return bool
|
2021-09-09 22:13:48 +00:00
|
|
|
*/
|
2022-01-20 22:14:19 +00:00
|
|
|
protected function isLegacy(): bool {
|
|
|
|
return true;
|
2021-09-09 22:13:48 +00:00
|
|
|
}
|
2022-04-01 15:53:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @inheritDoc
|
|
|
|
*/
|
|
|
|
protected function isLanguagesInContentAt( $location ) {
|
|
|
|
return false;
|
|
|
|
}
|
2021-09-09 22:13:48 +00:00
|
|
|
}
|