Changeset 26 for trunk/wp-content/plugins/xpressme/xpressme_class.php
- Timestamp:
- Dec 15, 2008, 2:09:03 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/plugins/xpressme/xpressme_class.php
r22 r26 6 6 var $pluginName = 'xpressme'; 7 7 var $is_use_xoops_upload_path; 8 var $is_theme_sidebar_disp; 8 9 9 10 //constructor … … 30 31 { 31 32 $this->is_use_xoops_upload_path = true; 33 $this->is_theme_sidebar_disp = true; 32 34 } 33 35 … … 49 51 { 50 52 $write_options = array ( 51 'is_use_xoops_upload_path' => $this->is_use_xoops_upload_path 53 'is_use_xoops_upload_path' => $this->is_use_xoops_upload_path , 54 'is_theme_sidebar_disp' => $this->is_theme_sidebar_disp 52 55 ); 53 56 if ($mode == 'add_new') { … … 61 64 { 62 65 $this->is_use_xoops_upload_path = stripslashes(trim($_POST['ch_is_use_xoops_upload_path'])); 66 $this->is_theme_sidebar_disp = stripslashes(trim($_POST['ch_is_theme_sidebar_disp'])); 63 67 } 64 68 … … 107 111 __('USE WordPress BASE_PATH','xpressme') 108 112 ); 113 echo $this->yes_no_radio_option('is_theme_sidebar_disp', 114 __('Thema Sidebar Display','xpressme'), 115 __('YES','xpressme'), 116 __('NO','xpressme') 117 ); 109 118 110 119 // $this->is_use_xoops_upload_path_html();
Note: See TracChangeset
for help on using the changeset viewer.