Changeset 51 for trunk/wp-content/plugins/xpressme/xpressme_class.php
- Timestamp:
- Dec 27, 2008, 5:31:55 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/plugins/xpressme/xpressme_class.php
r32 r51 12 12 var $old_post_link_text; 13 13 var $newer_post_link_text; 14 var $is_author_view_count; 14 15 15 16 //constructor … … 42 43 $this->old_post_link_text = __('to Old Post'); 43 44 $this->newer_post_link_text = __('to Newer Post'); 45 $this->is_author_view_count = false; 44 46 } 45 47 … … 67 69 'is_left_postnavi_old' => $this->is_left_postnavi_old , 68 70 'old_post_link_text' => $this->old_post_link_text , 69 'newer_post_link_text' => $this->newer_post_link_text 71 'newer_post_link_text' => $this->newer_post_link_text, 72 'is_author_view_count' => $this->is_author_view_count 70 73 ); 71 74 if ($mode == 'add_new') { … … 87 90 $this->newer_post_link_text = stripslashes($_POST['ch_newer_post_link_text']); 88 91 if(empty($this->newer_post_link_text)) $this->newer_post_link_text = __('to Newer Post'); 92 $this->is_author_view_count = stripslashes(trim($_POST['ch_is_author_view_count'])); 89 93 90 94 } … … 174 178 echo $this->text_option('newer_post_link_text', 175 179 __('Display Title of Newer Post Link','xpressme') 176 ); 177 178 180 ); 181 echo $this->yes_no_radio_option('is_author_view_count', 182 __('Is the posts author views counted?','xpressme'), 183 __('YES','xpressme'), 184 __('NO','xpressme') 185 ); 179 186 // $this->is_use_xoops_upload_path_html(); 180 187 echo "</table>\n";
Note: See TracChangeset
for help on using the changeset viewer.