- Timestamp:
- Sep 8, 2009, 6:18:52 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/xpressme_integration_kit/wp-content/plugins/xpressme/xpressme_class.php
r350 r379 33 33 var $meta_description_type; 34 34 var $meta_robot_type; 35 var $is_dashboard_blog_disp; 36 var $is_dashboard_forum_disp; 35 37 //constructor 36 38 function XPressME_Class() … … 75 77 $this->meta_description_type = 'xoops'; 76 78 $this->meta_robot_type = 'xoops'; 79 $this->is_dashboard_blog_disp = true; 80 $this->is_dashboard_forum_disp = true; 77 81 } 78 82 … … 126 130 'meta_keyword_type' => $this->meta_keyword_type, 127 131 'meta_description_type' => $this->meta_description_type, 128 'meta_robot_type' => $this->meta_robot_type 132 'meta_robot_type' => $this->meta_robot_type, 133 'is_dashboard_blog_disp' => $this->is_dashboard_blog_disp, 134 'is_dashboard_forum_disp' => $this->is_dashboard_forum_disp 129 135 ); 130 136 if ($mode == 'add_new') { … … 405 411 406 412 } 413 414 function dashboard_display_option(){ 415 $form = ''; 416 $form .= '<tr><th><label for="posts_page_navi">' .__('Dashboard feed Display Setting', 'xpressme') . '</label></th>'; 417 $form .= "<td>\n"; 418 $form .= "<table>\n"; 419 420 $form .= "<tr>\n"; 421 422 $form .= "<td>" . __('Display XPressMe Integration Kit Blog','xpressme') . "</td>\n"; 423 $form .= "<td>\n"; 424 $form .= $this->yes_no_radio_option_sub('is_dashboard_blog_disp', 425 __('YES','xpressme'), 426 __('NO','xpressme') 427 ); 428 $form .= "</td>\n"; 429 $form .= "</tr>\n"; 430 431 $form .= "<tr>\n"; 432 433 $form .= "<td>" . __('Display XPressMe Integration Kit Forum','xpressme') . "</td>\n"; 434 $form .= "<td>\n"; 435 $form .= $this->yes_no_radio_option_sub('is_dashboard_forum_disp', 436 __('YES','xpressme'), 437 __('NO','xpressme') 438 ); 439 $form .= "</td>\n"; 440 $form .= "</tr>\n"; 441 442 $form .= "</table></td></tr>\n"; 443 return $form; 444 } 407 445 408 446 function groupe_role_option(){
Note: See TracChangeset
for help on using the changeset viewer.