XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
tplsource.php
1<?php
2
3if (!defined('XOOPS_ROOT_PATH')) {
4 exit();
5}
6
8{
9 public function __construct()
10 {
11 static $initVars;
12 if (isset($initVars)) {
13 $this->mVars = $initVars;
14 return;
15 }
16 $this->initVar('tpl_id', XOBJ_DTYPE_INT, '0', true);
17 $this->initVar('tpl_source', XOBJ_DTYPE_TEXT, '', true);
18 $initVars=$this->mVars;
19 }
20}
21
23{
24 public $mTable = 'tplsource';
25 public $mPrimary = 'tpl_id';
26 public $mClass = 'LegacyRenderTplsourceObject';
27}