Changeset 155 for trunk/wp-content/plugins/xpressme/xpressme_class.php
- Timestamp:
- Apr 4, 2009, 6:47:22 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/plugins/xpressme/xpressme_class.php
r152 r155 28 28 var $more_link_text; 29 29 var $viewer_type; 30 var $is_multi_user; 30 31 //constructor 31 32 function XPressME_Class() … … 77 78 $this->more_link_text = __('more', 'xpressme'); 78 79 $this->viewer_type = 'xoops'; 80 $this->is_multi_user = false; 79 81 80 82 } … … 124 126 'excerpt_length_character' => $this->excerpt_length_character, 125 127 'more_link_text' => $this->more_link_text, 126 'viewer_type' => $this->viewer_type 128 'viewer_type' => $this->viewer_type, 129 'is_multi_user' => $this->is_multi_user 127 130 ); 128 131 if ($mode == 'add_new') { … … 235 238 $this->more_link_text = stripslashes(trim($_POST['ch_more_link_text'])); 236 239 $this->viewer_type = stripslashes(trim($_POST['ch_viewer_type'])); 237 240 $this->is_multi_user = stripslashes(trim($_POST['ch_is_multi_user'])); 238 241 global $xoops_db; 239 242 $table = get_wp_prefix() . 'group_role'; … … 652 655 ); 653 656 657 echo $this->yes_no_radio_option('is_multi_user', 658 __('Select Multi user mode','xpressme'), 659 __('YES','xpressme'), 660 __('NO','xpressme') 661 ); 662 663 654 664 echo $this->single_post_navi_option(); 655 665 echo $this->posts_page_navi_option();
Note: See TracChangeset
for help on using the changeset viewer.