Plugin Directory

Changeset 882741


Ignore:
Timestamp:
03/27/2014 03:21:33 AM (12 years ago)
Author:
jamrizzi
Message:

2.2.0 Update

Location:
rizzi-guestbook/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • rizzi-guestbook/trunk/Rizzi-Guestbook.php

    r844790 r882741  
    44Description: 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.
    55Author: JamRizzi
    6 Version: 2.1.1
     6Version: 2.2.0
    77Author URI: http://jamrizzi.x10.bz/
    88Plugin URI: http://jamrizzi.x10.bz/projects/wordpress/plugins/rizzi-guestbook
  • rizzi-guestbook/trunk/_admin_menu.php

    r844790 r882741  
    100100      <h4><?php _e('Main Settings', WPVGB_DOMAIN) ?>:</h4>
    101101      <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;">:&nbsp;</span>
    103104        <select style="width:150px;" name="<?php echo $opt_vgb_page?>">
    104105          <?php
     
    110111          ?>
    111112        </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
    113130        <h4><?php _e('Extra Settings', WPVGB_DOMAIN)?>:</h4>
    114131        <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  
    178178       ?>
    179179
     180<div class="rg_time">
     181<?php echo get_comment_date(__('F j, Y',WPVGB_DOMAIN))?>
     182<?php echo '&nbsp;-&nbsp;'?>
     183<?php echo get_comment_time(__('g:i A',WPVGB_DOMAIN))?>
     184<?php //echo get_comment_date('l')?>
     185</div>
     186
    180187<hr>
    181188
     
    229236        <?php if(!$opts['disallowAnon']) _e('(required)', WPVGB_DOMAIN); ?></p>
    230237
    231 <p><?php _e('Email', WPVGB_DOMAIN)?>:</td>
     238<div class="rg_email"><p><?php _e('Email', WPVGB_DOMAIN)?>:</td>
    232239
    233240        <?php if($user->ID):?> <input type="text" name="email" id="email" value="<?php echo $user->user_email?>" disabled="disabled" size="30" maxlength="40" />
     
    243250           do_action('comment_form', $post->ID);
    244251           ?>
     252</div>
    245253
    246254     <?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>."; ?>
     
    249257     <!-- Text section -->
    250258     <div id="gbSignText">
    251        <?php _e('Text', WPVGB_DOMAIN)?>:<br />
     259       <?php _e('Message', WPVGB_DOMAIN)?>:<br />
    252260       <textarea name="comment" id="comment" rows="12" cols="45"></textarea><br />
    253261       <input style="width:100px;" name="submit" type="submit" id="submit" value="<?php _e('Send', WPVGB_DOMAIN)?>" />
  • rizzi-guestbook/trunk/readme.txt

    r844790 r882741  
    44Requires at least: 2.5
    55Tested up to: 3.8.1
    6 Stable tag: 2.1.1
     6Stable tag: 2.2.0
    77
    88Rizzi-Guestbook is the perfect guestbook solution for you. It is simple to use, but does the job well.
     
    5757
    5858== 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
    5964= 2.1.1 (2014-01-15) =
    6065* Tested with 3.8.1
Note: See TracChangeset for help on using the changeset viewer.