XCL Web Application Platform 2.5.0
The XoopsCube Legacy Project
Loading...
Searching...
No Matches
block_module_link.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('block_id', XOBJ_DTYPE_INT, '0', true);
25 $this->initVar('module_id', XOBJ_DTYPE_INT, '0', true);
26 $initVars=$this->mVars;
27 }
28}
29
31{
32 public $mTable = 'block_module_link';
33 public $mPrimary = 'block_id';
34 public $mClass = 'LegacyBlock_module_linkObject';
35}