Changeset 95 for trunk/include/config_from_xoops.class.php
- Timestamp:
- Mar 3, 2009, 8:33:23 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/config_from_xoops.class.php
r92 r95 26 26 var $module_path; 27 27 var $module_url; 28 var $module_db_prefix; 29 var $xoops_upload_path; 30 var $xoops_upload_url; 31 28 32 29 33 function __constructor() //for PHP5 30 34 { 31 35 $this->ConfigFromXoops(); 36 32 37 } 33 38 … … 89 94 } 90 95 } 96 97 // define from /settings/definition.inc.php (XCL) or /include/common.php(2016a-JP) 98 $this->xoops_upload_path = $this->xoops_root_path .'/uploads'; 99 $this->xoops_upload_url = $this->xoops_url . '/uploads'; 100 101 if ($this->module_name == 'wordpress') 102 $this->module_db_prefix = $this->xoops_db_prefix . '_wp_'; 103 else 104 $this->module_db_prefix = $this->xoops_db_prefix . '_' . $this->module_name . '_'; 105 91 106 } 92 107
Note: See TracChangeset
for help on using the changeset viewer.