XOOPS  2.6.0
header.php
Go to the documentation of this file.
1 <?php
20 require_once dirname(dirname(dirname(__DIR__))) . '/include/cp_header.php';
21 
22 $op = '';
23 if ( isset( $_POST ) ){
24  foreach ( $_POST as $k => $v ) {
25  ${$k} = $v;
26  }
27 }
28 if ( isset( $_GET ) ){
29  foreach ( $_GET as $k => $v ) {
30  ${$k} = $v;
31  }
32 }
33 
34 XoopsLoad::load('system', 'system');
35 
38 
39 include_once dirname(__DIR__) . '/class/xcaptcha.php';
$xcaptcha_handler
Definition: header.php:40
static getInstance()
Definition: system.php:46
$xoops
Definition: header.php:25
static getInstance()
Definition: Xoops.php:160
$op
Definition: header.php:33
$system
Definition: header.php:26
static load($name, $type="core")
Definition: xoopsload.php:65