XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
blocklinkmodule.php
Go to the documentation of this file.
1 <?php
17 defined('XOOPS_ROOT_PATH') or die('Restricted access');
18 
26 {
27  function __construct()
28  {
29  parent::__construct();
30  $this->initVar('block_id', XOBJ_DTYPE_INT);
31  $this->initVar('module_id', XOBJ_DTYPE_INT);
32  }
33 
34 }
35 
47 {
48  function __construct($db)
49  {
50  parent::__construct($db, 'block_module_link', 'SystemBlockLinkModule', 'block_id', 'module_id');
51  }
52 
53 }
54 
55 ?>