Changeset 882741
- Timestamp:
- 03/27/2014 03:21:33 AM (12 years ago)
- Location:
- rizzi-guestbook/trunk
- Files:
-
- 4 edited
-
Rizzi-Guestbook.php (modified) (1 diff)
-
_admin_menu.php (modified) (2 diffs)
-
_output_guestbook.php (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rizzi-guestbook/trunk/Rizzi-Guestbook.php
r844790 r882741 4 4 Description: Rizzi-Guestbook is the perfect guestbook solution for you. It is a modified and improved version of the popular WP-ViperGB plugin. The plugin's listing page has been beautifully redesigned, unnecessary features have been removed to increase simplicity, and mobile support has been added. 5 5 Author: JamRizzi 6 Version: 2. 1.16 Version: 2.2.0 7 7 Author URI: http://jamrizzi.x10.bz/ 8 8 Plugin URI: http://jamrizzi.x10.bz/projects/wordpress/plugins/rizzi-guestbook -
rizzi-guestbook/trunk/_admin_menu.php
r844790 r882741 100 100 <h4><?php _e('Main Settings', WPVGB_DOMAIN) ?>:</h4> 101 101 <form name="formOptions" method="post" action=""> 102 <?php _e('Guestbook Page', WPVGB_DOMAIN) ?>: 102 103 <?php _e('Guestbook Page', WPVGB_DOMAIN) ?><span style="word-spacing:9px;">: </span> 103 104 <select style="width:150px;" name="<?php echo $opt_vgb_page?>"> 104 105 <?php … … 110 111 ?> 111 112 </select><br /> 112 113 114 115 <?php _e('Display Date/Time', WPVGB_DOMAIN) ?><span style="word-spacing:9px">:</span> 116 <select style="width:150px;" name="<?php echo $opt_vgb_style?>"> 117 <?php 118 $stylesDir = opendir(dirname(__FILE__) . "/display/time_settings"); 119 while ($file = readdir($stylesDir)) 120 { 121 if( ($fileEnding = strpos($file, '.css'))===FALSE ) continue; 122 $styleName = substr($file, 0, $fileEnding); 123 echo '<option value="'.$styleName.'"'. ($styleName==get_option($opt_vgb_style)?' selected':'').'>'.$styleName.'</option>'."\n"; 124 } 125 closedir($stylesDir); 126 ?> 127 </select><br /> 128 129 113 130 <h4><?php _e('Extra Settings', WPVGB_DOMAIN)?>:</h4> 114 131 <input type="text" size="3" name="<?php echo $opt_vgb_items_per_pg?>" value="<?php echo get_option($opt_vgb_items_per_pg) ?>" /> <?php _e('Entries Per Page', WPVGB_DOMAIN)?><br /> -
rizzi-guestbook/trunk/_output_guestbook.php
r844790 r882741 178 178 ?> 179 179 180 <div class="rg_time"> 181 <?php echo get_comment_date(__('F j, Y',WPVGB_DOMAIN))?> 182 <?php echo ' - '?> 183 <?php echo get_comment_time(__('g:i A',WPVGB_DOMAIN))?> 184 <?php //echo get_comment_date('l')?> 185 </div> 186 180 187 <hr> 181 188 … … 229 236 <?php if(!$opts['disallowAnon']) _e('(required)', WPVGB_DOMAIN); ?></p> 230 237 231 < p><?php _e('Email', WPVGB_DOMAIN)?>:</td>238 <div class="rg_email"><p><?php _e('Email', WPVGB_DOMAIN)?>:</td> 232 239 233 240 <?php if($user->ID):?> <input type="text" name="email" id="email" value="<?php echo $user->user_email?>" disabled="disabled" size="30" maxlength="40" /> … … 243 250 do_action('comment_form', $post->ID); 244 251 ?> 252 </div> 245 253 246 254 <?php if( $user->ID && !$opts['disallowAnon'] ) echo __("*If you'd like to customize these values, please ", WPVGB_DOMAIN) . "<b><a href=\"". wp_logout_url( $_SERVER['REQUEST_URI'] ) . "\">" . __("Logout", WPVGB_DOMAIN) . "</a></b>."; ?> … … 249 257 <!-- Text section --> 250 258 <div id="gbSignText"> 251 <?php _e(' Text', WPVGB_DOMAIN)?>:<br />259 <?php _e('Message', WPVGB_DOMAIN)?>:<br /> 252 260 <textarea name="comment" id="comment" rows="12" cols="45"></textarea><br /> 253 261 <input style="width:100px;" name="submit" type="submit" id="submit" value="<?php _e('Send', WPVGB_DOMAIN)?>" /> -
rizzi-guestbook/trunk/readme.txt
r844790 r882741 4 4 Requires at least: 2.5 5 5 Tested up to: 3.8.1 6 Stable tag: 2. 1.16 Stable tag: 2.2.0 7 7 8 8 Rizzi-Guestbook is the perfect guestbook solution for you. It is simple to use, but does the job well. … … 57 57 58 58 == Changelog == 59 = 2.2.0 (2014-03-26) = 60 * Tested with 3.8.1 61 * Added an option to add a date stamp. 62 * Changed "Text:" to "Message:" 63 59 64 = 2.1.1 (2014-01-15) = 60 65 * Tested with 3.8.1
Note: See TracChangeset
for help on using the changeset viewer.