XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
xoopslocal.php
Go to the documentation of this file.
1 <?php
19 defined('XOOPS_ROOT_PATH') or die('Restricted access');
20 
26 {
27  function load($language = null)
28  {
29  if (class_exists('Xoopslocal')) {
30  return true;
31  }
32  require_once $GLOBALS['xoops']->path('class/xoopslocal.php');
33  //XoopsLocal is inside language file, let us load it
34  xoops_loadLanguage('locale');
35 
36  return true;
37  }
38 }
39 
45 function xoops_local()
46 {
47  // get parameters
48  $func_args = func_get_args();
49  $func = array_shift($func_args);
50  // local method defined
51  return call_user_func_array(array(
52  'XoopsLocal' ,
53  $func), $func_args);
54 }
55 
57 ?>