Typesetter-Original-gtbu/include/special/Base.php
2021-09-08 19:52:21 +02:00

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'];
}
}
}