mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-11 01:44:02 +01:00
16 lines
253 B
PHP
16 lines
253 B
PHP
<?php
|
|
|
|
namespace gp\special;
|
|
|
|
defined('is_running') or die('Not an entry point...');
|
|
|
|
class Base extends \gp\Base{
|
|
|
|
protected $page;
|
|
|
|
public function __construct($args){
|
|
if( array_key_exists('page',$args) ){
|
|
$this->page = $args['page'];
|
|
}
|
|
}
|
|
}
|