Plugin Directory

Changeset 1867804


Ignore:
Timestamp:
05/02/2018 10:36:15 PM (8 years ago)
Author:
cosme12
Message:

Fixes version displayed and adds comments to code

Location:
copito-comments
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • copito-comments/tags/1.0.1/admin/class-copito-comments-admin.php

    r1867708 r1867804  
    141141    }
    142142
     143    /**
     144     * Sanitize inputs.
     145     *
     146     * @since    1.0.0
     147     */
    143148    public function sanitizeTextField($input) {
    144149        return sanitize_text_field($input);
     
    158163    }
    159164
     165    /**
     166     * Displays success or error messages.
     167     * NOT IMPLEMENTED
     168     *
     169     * @since    1.0.0
     170     */
    160171    public function settings_errors($value) {
    161172        if ($value == 0) {
     
    166177    }
    167178
     179    /**
     180     * Generates menu in admin area.
     181     *
     182     * @since    1.0.0
     183     */
    168184    public function copito_comments_menu() {
    169185
     
    171187    }
    172188
     189    /**
     190     * Loads template for menu page in admin area
     191     *
     192     * @since    1.0.0
     193     */
    173194    public function copito_comments_menu_page() {
    174195
  • copito-comments/tags/1.0.1/copito-comments.php

    r1867708 r1867804  
    1111 * Plugin URI:       
    1212 * Description:       Allows you to add comments manually. Useful to migrate comments from a Facebook Fan Page to your website.
    13  * Version:           1.0.0
     13 * Version:           1.0.1
    1414 * Author:            Cosme12
    1515 * Author URI:        http://copitosystem.com/about-us/
     
    3030 * Rename this for your plugin and update it as you release new versions.
    3131 */
    32 define( 'COPITO_COMMENTS_VERSION', '1.0.0' );
     32define( 'COPITO_COMMENTS_VERSION', '1.0.1' );
    3333
    3434/**
  • copito-comments/trunk/admin/class-copito-comments-admin.php

    r1867249 r1867804  
    141141    }
    142142
     143    /**
     144     * Sanitize inputs.
     145     *
     146     * @since    1.0.0
     147     */
    143148    public function sanitizeTextField($input) {
    144149        return sanitize_text_field($input);
     
    158163    }
    159164
     165    /**
     166     * Displays success or error messages.
     167     * NOT IMPLEMENTED
     168     *
     169     * @since    1.0.0
     170     */
    160171    public function settings_errors($value) {
    161172        if ($value == 0) {
     
    166177    }
    167178
     179    /**
     180     * Generates menu in admin area.
     181     *
     182     * @since    1.0.0
     183     */
    168184    public function copito_comments_menu() {
    169185
     
    171187    }
    172188
     189    /**
     190     * Loads template for menu page in admin area
     191     *
     192     * @since    1.0.0
     193     */
    173194    public function copito_comments_menu_page() {
    174195
  • copito-comments/trunk/copito-comments.php

    r1867249 r1867804  
    1111 * Plugin URI:       
    1212 * Description:       Allows you to add comments manually. Useful to migrate comments from a Facebook Fan Page to your website.
    13  * Version:           1.0.0
     13 * Version:           1.0.1
    1414 * Author:            Cosme12
    1515 * Author URI:        http://copitosystem.com/about-us/
     
    3030 * Rename this for your plugin and update it as you release new versions.
    3131 */
    32 define( 'COPITO_COMMENTS_VERSION', '1.0.0' );
     32define( 'COPITO_COMMENTS_VERSION', '1.0.1' );
    3333
    3434/**
Note: See TracChangeset for help on using the changeset viewer.