Plugin Directory

Changeset 1793770


Ignore:
Timestamp:
12/28/2017 06:03:18 PM (8 years ago)
Author:
augusto1995
Message:

Fixed some misspellings and setted Cyclos Users Map instead of Cyclos User Map for name of the plugin and pattern of variables.

Location:
simple-cyclos-leaflet-map
Files:
6 added
6 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • simple-cyclos-leaflet-map/tags/1.0/readme.txt

    r1793697 r1793770  
    1 === Cyclos User Map ===
     1=== Cyclos Users Map ===
    22Contributors: Cyclos, Jelmer Oosthoek, augusto1995
    33Tags: Cyclos, Cyclos map, User directory, User map, Banking, Payment, Barter, Remittances, Micro Finance, Complementary Currency, Mobile Money
     
    1212
    1313== Description ==
    14 = Cyclos wordpress Plugin =
    15 This plugin enables you to easily add a Cyclos business directory or user map to your wordpress blog. Our special thanks go out to Jelmer Oosthoek who created the basis of this plugin for us.
     14= Cyclos Users Map wordpress Plugin =
     15This plugin enables you to easily add a Cyclos business directory or users map to your wordpress blog. Our special thanks go out to Jelmer Oosthoek who created the basis of this plugin for us.
    1616
    1717== Installation ==
    18181. Upload the plugin files to the `/wp-content/plugins/simple-cyclos-leaflet-map` directory, or install the plugin through the WordPress plugins screen directly.
    19192. Activate the plugin through the 'Plugins' screen in WordPress
    20 3. Go to "Settings" -> "Cyclos User Map" to configure the plugin and follow the instructions there to use it.
     203. Go to "Settings" -> "Cyclos Users Map" to configure the plugin and follow the instructions there to use it.
    2121
    2222== Frequently Asked Questions ==
  • simple-cyclos-leaflet-map/tags/1.0/simple-cyclos-leaflet-map.php

    r1793680 r1793770  
    11<?php
    22/*
    3  * Plugin Name: Cyclos User Map
     3 * Plugin Name: Cyclos Users Map
    44 * Plugin URI: https://plugins.svn.wordpress.org/simple-cyclos-leaflet-map
    55 * Description: Integrates a business directory map of Cyclos users into your WordPress blog.
     
    3333// Block people to access the script directly (against malicious attempts)
    3434defined ( 'ABSPATH' ) or die ( 'No script kiddies please!' );
    35 function cyclosUserMap_plugin_activate() {
     35function cyclosUsersMap_plugin_activate() {
    3636    if (version_compare ( PHP_VERSION, '5.3.0', '<' )) {
    37         wp_die ( 'The Cyclos User Map plugin requires at least PHP version 5.3.0 You have ' . PHP_VERSION );
     37        wp_die ( 'The Cyclos Users Map plugin requires at least PHP version 5.3.0 You have ' . PHP_VERSION );
    3838        deactivate_plugins ( basename ( __FILE__ ) );
    3939    }
    4040}
    41 register_activation_hook ( __FILE__, 'cyclosUserMap_plugin_activate' );
     41register_activation_hook ( __FILE__, 'cyclosUsersMap_plugin_activate' );
    4242
    4343if (version_compare ( PHP_VERSION, '5.3.0', '>=' )) {
    44     include_once 'cyclosUserMap-common.php';
    45     include_once 'cyclosUserMap-map.php';
    46     include_once 'cyclosUserMap-admin-config.php';
     44    include_once 'cyclosUsersMap-common.php';
     45    include_once 'cyclosUsersMap-map.php';
     46    include_once 'cyclosUsersMap-admin-config.php';
    4747}
    4848?>
  • simple-cyclos-leaflet-map/trunk/readme.txt

    r1793697 r1793770  
    1 === Cyclos User Map ===
     1=== Cyclos Users Map ===
    22Contributors: Cyclos, Jelmer Oosthoek, augusto1995
    33Tags: Cyclos, Cyclos map, User directory, User map, Banking, Payment, Barter, Remittances, Micro Finance, Complementary Currency, Mobile Money
     
    1212
    1313== Description ==
    14 = Cyclos wordpress Plugin =
    15 This plugin enables you to easily add a Cyclos business directory or user map to your wordpress blog. Our special thanks go out to Jelmer Oosthoek who created the basis of this plugin for us.
     14= Cyclos Users Map wordpress Plugin =
     15This plugin enables you to easily add a Cyclos business directory or users map to your wordpress blog. Our special thanks go out to Jelmer Oosthoek who created the basis of this plugin for us.
    1616
    1717== Installation ==
    18181. Upload the plugin files to the `/wp-content/plugins/simple-cyclos-leaflet-map` directory, or install the plugin through the WordPress plugins screen directly.
    19192. Activate the plugin through the 'Plugins' screen in WordPress
    20 3. Go to "Settings" -> "Cyclos User Map" to configure the plugin and follow the instructions there to use it.
     203. Go to "Settings" -> "Cyclos Users Map" to configure the plugin and follow the instructions there to use it.
    2121
    2222== Frequently Asked Questions ==
  • simple-cyclos-leaflet-map/trunk/simple-cyclos-leaflet-map.php

    r1793682 r1793770  
    11<?php
    22/*
    3  * Plugin Name: Cyclos User Map
     3 * Plugin Name: Cyclos Users Map
    44 * Plugin URI: https://plugins.svn.wordpress.org/simple-cyclos-leaflet-map
    55 * Description: Integrates a business directory map of Cyclos users into your WordPress blog.
     
    3333// Block people to access the script directly (against malicious attempts)
    3434defined ( 'ABSPATH' ) or die ( 'No script kiddies please!' );
    35 function cyclosUserMap_plugin_activate() {
     35function cyclosUsersMap_plugin_activate() {
    3636    if (version_compare ( PHP_VERSION, '5.3.0', '<' )) {
    37         wp_die ( 'The Cyclos User Map plugin requires at least PHP version 5.3.0 You have ' . PHP_VERSION );
     37        wp_die ( 'The Cyclos Users Map plugin requires at least PHP version 5.3.0 You have ' . PHP_VERSION );
    3838        deactivate_plugins ( basename ( __FILE__ ) );
    3939    }
    4040}
    41 register_activation_hook ( __FILE__, 'cyclosUserMap_plugin_activate' );
     41register_activation_hook ( __FILE__, 'cyclosUsersMap_plugin_activate' );
    4242
    4343if (version_compare ( PHP_VERSION, '5.3.0', '>=' )) {
    44     include_once 'cyclosUserMap-common.php';
    45     include_once 'cyclosUserMap-map.php';
    46     include_once 'cyclosUserMap-admin-config.php';
     44    include_once 'cyclosUsersMap-common.php';
     45    include_once 'cyclosUsersMap-map.php';
     46    include_once 'cyclosUsersMap-admin-config.php';
    4747}
    4848?>
Note: See TracChangeset for help on using the changeset viewer.