XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
blockinstance.php
Go to the documentation of this file.
1 <?php
22 defined('XOOPS_ROOT_PATH') or die('Restricted access');
23 
33 {
38  function __construct()
39  {
40  }
41 
49  function __call($name, $args)
50  {
51  trigger_error("Class '" . __CLASS__ . "' is deprecated" . (empty($name) ? "" : " thus the method '{$name}' is not executed") . "!", E_USER_WARNING);
52  return null;
53  }
54 
62  function __set($name, $args)
63  {
64  trigger_error("Class '" . __CLASS__ . "' is deprecated" . (empty($name) ? "" : " thus the variable '{$name}' is not set") . "!", E_USER_WARNING);
65  return false;
66  }
67 
74  function __get($name)
75  {
76  trigger_error("Class '" . __CLASS__ . "' is deprecated" . (empty($name) ? "" : " thus the variable '{$name}' is not vailable") . "!", E_USER_WARNING);
77  return null;
78  }
79 }
80 
93 {
98  function __construct()
99  {
100  }
101 
109  function __call($name, $args)
110  {
111  trigger_error("Class '" . __CLASS__ . "' is deprecated" . (empty($name) ? "" : " thus the method '{$name}' is not executed") . "!", E_USER_WARNING);
112  return null;
113  }
114 
122  function __set($name, $args)
123  {
124  trigger_error("Class '" . __CLASS__ . "' is deprecated" . (empty($name) ? "" : " thus the variable '{$name}' is not set") . "!", E_USER_WARNING);
125  return false;
126  }
127 
134  function __get($name)
135  {
136  trigger_error("Class '" . __CLASS__ . "' is deprecated" . (empty($name) ? "" : " thus the variable '{$name}' is not vailable") . "!", E_USER_WARNING);
137  return null;
138  }
139 }
140 ?>