Plugin Directory

Changeset 1285180


Ignore:
Timestamp:
11/12/2015 10:06:06 PM (10 years ago)
Author:
clearent1
Message:

Updated name from WP Clearent to Clearent Payments to match all descriptions. Updated page labels to match. No version updates as no-one is using this yet and the code and functionality have not changed.

Location:
clearent-payments/trunk/wp-clearent
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • clearent-payments/trunk/wp-clearent/clearent_util.php

    r1284325 r1285180  
    129129                            $this->logMessage($prefix . $key . ' = ' . (str_repeat('X', strlen($value) - 4) . substr($value, -4)));
    130130                        } else if ($key == 'api-key') {
    131                             $this->logMessage($prefix . $key . ' = ' . ('Log in to WordPress admin console and edit WP Clearent plugin to see installed API keys'));
     131                            $this->logMessage($prefix . $key . ' = ' . ('Log in to WordPress admin console and edit Clearent Payments plugin to see installed API keys'));
    132132                        } else {
    133133                            $this->logMessage($prefix . $key . ' = ' . $value);
  • clearent-payments/trunk/wp-clearent/main.php

    r1284958 r1285180  
    6565    public function admin_menu() {
    6666        // add_options_page( $page_title, $menu_title, $capability, $menu_slug, $function);
    67         $wp_clearent_page = add_options_page('WP Clearent', 'WP Clearent', 'manage_options', 'clearent_option_group', array($this, 'settingsPage'));
     67        $wp_clearent_page = add_options_page('Clearent Payments', 'Clearent Payments', 'manage_options', 'clearent_option_group', array($this, 'settingsPage'));
    6868        add_action('admin_print_scripts-' . $wp_clearent_page, array($this, 'admin_scripts'));  // Load our admin page scripts (our page only)
    6969        add_action('admin_print_styles-' . $wp_clearent_page, array($this, 'wp_clearent_admin_print_styles'));    // Load our admin page stylesheet (our page only)
     
    122122        ?>
    123123        <div class="wrap">
    124             <h2><?php echo('WP Clearent'); ?></h2>
     124            <h2><?php echo('Clearent Payments'); ?></h2>
    125125
    126126            <?php
     
    214214                ?>
    215215                    <div class="postbox">
    216                         <h3>Active Pages Using WP Clearent Shortcode</h3>
    217                         <p>Below is a list of all pages that use the WP Clearent payment shortcode (links open in new window).</p>
     216                        <h3>Active Pages Using Clearent Payments Plugin Shortcode</h3>
     217                        <p>Below is a list of all pages that use the Clearent Payments plugin shortcode (links open in new window).</p>
    218218                        <?php
    219219                        // Display pages using the shortcode
     
    228228                            echo '</ul>';
    229229                        } else {
    230                             echo('There are no pages that use the WP Clearent shortcode.');
     230                            echo('There are no pages that use the Clearent Payments plugin shortcode.');
    231231                        }
    232232                        wp_reset_postdata();
     
    241241
    242242                        <h3>Environment</h3>
    243                         <p>By default, the WP Clearent plugin will perform all transactions against the production environment.
     243                        <p>By default, the Clearent Payments plugin will perform all transactions against the production environment.
    244244                            The plugin may be switched to sandbox environment for testing purposes.
    245245                        </p>
     
    12181218
    12191219    // This function will populate the options if the plugin is activated for the first time.
    1220     // It will also protect the options if the plugin is deactivated (common in troublshooting WP related issues)
     1220    // It will also protect the options if the plugin is deactivated (common in troubleshooting WP related issues)
    12211221    // We may want to add an option to remove DB entries...
    12221222    public function activate() {
Note: See TracChangeset for help on using the changeset viewer.