XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
imagebody.php
1<?php
10
11if (!defined('XOOPS_ROOT_PATH')) {
12 exit();
13}
14
16{
17 public function __construct()
18 {
19 static $initVars;
20 if (isset($initVars)) {
21 $this->mVars = $initVars;
22 return;
23 }
24 $this->initVar('image_id', XOBJ_DTYPE_INT, '', false);
25 $this->initVar('image_body', XOBJ_DTYPE_TEXT, '', true);
26 $initVars=$this->mVars;
27 }
28}
29
31{
32 public $mTable = 'imagebody';
33 public $mPrimary = 'image_id';
34 public $mClass = 'LegacyImagebodyObject';
35}