XCL Web Application Platform
2.5.0
The XoopsCube Legacy Project
📘
Loading...
Searching...
No Matches
tplsource.php
1
<?php
2
3
if
(!defined(
'XOOPS_ROOT_PATH'
)) {
4
exit();
5
}
6
7
class
LegacyRenderTplsourceObject
extends
XoopsSimpleObject
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
22
class
LegacyRenderTplsourceHandler
extends
XoopsObjectGenericHandler
23
{
24
public
$mTable =
'tplsource'
;
25
public
$mPrimary =
'tpl_id'
;
26
public
$mClass =
'LegacyRenderTplsourceObject'
;
27
}
LegacyRenderTplsourceHandler
Definition
tplsource.php:23
LegacyRenderTplsourceObject
Definition
tplsource.php:8
XoopsObjectGenericHandler
Definition
handler.php:20
XoopsSimpleObject
Definition
object.php:30
html
modules
legacyRender
class
tplsource.php
Generated by
1.13.2