Changeset 1560693
- Timestamp:
- 12/23/2016 12:52:56 PM (9 years ago)
- Location:
- botamp/tags/1.1.0
- Files:
-
- 7 edited
-
admin/partials/botamp-admin-display.php (modified) (1 diff)
-
includes/class-botamp-activator.php (modified) (3 diffs)
-
includes/class-botamp-deactivator.php (modified) (3 diffs)
-
includes/class-botamp-i18n.php (modified) (3 diffs)
-
includes/class-botamp-loader.php (modified) (8 diffs)
-
includes/class-botamp.php (modified) (14 diffs)
-
public/partials/botamp-public-display.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
botamp/tags/1.1.0/admin/partials/botamp-admin-display.php
r1558975 r1560693 6 6 * 7 7 * @link support@botamp.com 8 * @since 1. 0.08 * @since 1.1.0 9 9 * 10 10 * @package Botamp -
botamp/tags/1.1.0/includes/class-botamp-activator.php
r1558975 r1560693 4 4 * 5 5 * @link support@botamp.com 6 * @since 1. 0.06 * @since 1.1.0 7 7 * 8 8 * @package Botamp … … 15 15 * This class defines all code necessary to run during the plugin's activation. 16 16 * 17 * @since 1. 0.017 * @since 1.1.0 18 18 * @package Botamp 19 19 * @subpackage Botamp/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1. 0.030 * @since 1.1.0 31 31 */ 32 32 public static function activate() { -
botamp/tags/1.1.0/includes/class-botamp-deactivator.php
r1558975 r1560693 4 4 * 5 5 * @link support@botamp.com 6 * @since 1. 0.06 * @since 1.1.0 7 7 * 8 8 * @package Botamp … … 15 15 * This class defines all code necessary to run during the plugin's deactivation. 16 16 * 17 * @since 1. 0.017 * @since 1.1.0 18 18 * @package Botamp 19 19 * @subpackage Botamp/includes … … 27 27 * Long Description. 28 28 * 29 * @since 1. 0.029 * @since 1.1.0 30 30 */ 31 31 public static function deactivate() { -
botamp/tags/1.1.0/includes/class-botamp-i18n.php
r1520640 r1560693 7 7 * 8 8 * @link support@botamp.com 9 * @since 1. 0.09 * @since 1.1.0 10 10 * 11 11 * @package Botamp … … 19 19 * so that it is ready for translation. 20 20 * 21 * @since 1. 0.021 * @since 1.1.0 22 22 * @package Botamp 23 23 * @subpackage Botamp/includes … … 30 30 * Load the plugin text domain for translation. 31 31 * 32 * @since 1. 0.032 * @since 1.1.0 33 33 */ 34 34 public function load_plugin_textdomain() { -
botamp/tags/1.1.0/includes/class-botamp-loader.php
r1520640 r1560693 4 4 * 5 5 * @link support@botamp.com 6 * @since 1. 0.06 * @since 1.1.0 7 7 * 8 8 * @package Botamp … … 26 26 * The array of actions registered with WordPress. 27 27 * 28 * @since 1. 0.028 * @since 1.1.0 29 29 * @access protected 30 30 * @var array $actions The actions registered with WordPress to fire when the plugin loads. … … 35 35 * The array of filters registered with WordPress. 36 36 * 37 * @since 1. 0.037 * @since 1.1.0 38 38 * @access protected 39 39 * @var array $filters The filters registered with WordPress to fire when the plugin loads. … … 44 44 * Initialize the collections used to maintain the actions and filters. 45 45 * 46 * @since 1. 0.046 * @since 1.1.0 47 47 */ 48 48 public function __construct() { … … 56 56 * Add a new action to the collection to be registered with WordPress. 57 57 * 58 * @since 1. 0.058 * @since 1.1.0 59 59 * @param string $hook The name of the WordPress action that is being registered. 60 60 * @param object $component A reference to the instance of the object on which the action is defined. … … 70 70 * Add a new filter to the collection to be registered with WordPress. 71 71 * 72 * @since 1. 0.072 * @since 1.1.0 73 73 * @param string $hook The name of the WordPress filter that is being registered. 74 74 * @param object $component A reference to the instance of the object on which the filter is defined. … … 85 85 * collection. 86 86 * 87 * @since 1. 0.087 * @since 1.1.0 88 88 * @access private 89 89 * @param array $hooks The collection of hooks that is being registered (that is, actions or filters). … … 112 112 * Register the filters and actions with WordPress. 113 113 * 114 * @since 1. 0.0114 * @since 1.1.0 115 115 */ 116 116 public function run() { -
botamp/tags/1.1.0/includes/class-botamp.php
r1558975 r1560693 7 7 * 8 8 * @link support@botamp.com 9 * @since 1. 0.09 * @since 1.1.0 10 10 * 11 11 * @package Botamp … … 22 22 * version of the plugin. 23 23 * 24 * @since 1. 0.024 * @since 1.1.0 25 25 * @package Botamp 26 26 * @subpackage Botamp/includes … … 33 33 * the plugin. 34 34 * 35 * @since 1. 0.035 * @since 1.1.0 36 36 * @access protected 37 37 * @var Botamp_Loader $loader Maintains and registers all hooks for the plugin. … … 42 42 * The unique identifier of this plugin. 43 43 * 44 * @since 1. 0.044 * @since 1.1.0 45 45 * @access protected 46 46 * @var string $plugin_name The string used to uniquely identify this plugin. … … 51 51 * The current version of the plugin. 52 52 * 53 * @since 1. 0.053 * @since 1.1.0 54 54 * @access protected 55 55 * @var string $version The current version of the plugin. … … 64 64 * the public-facing side of the site. 65 65 * 66 * @since 1. 0.066 * @since 1.1.0 67 67 */ 68 68 public function __construct() { … … 95 95 * with WordPress. 96 96 * 97 * @since 1. 0.097 * @since 1.1.0 98 98 * @access private 99 99 */ … … 137 137 * with WordPress. 138 138 * 139 * @since 1. 0.0139 * @since 1.1.0 140 140 * @access private 141 141 */ … … 152 152 * of the plugin. 153 153 * 154 * @since 1. 0.0154 * @since 1.1.0 155 155 * @access private 156 156 */ … … 192 192 * of the plugin. 193 193 * 194 * @since 1. 0.0194 * @since 1.1.0 195 195 * @access private 196 196 */ … … 211 211 * Run the loader to execute all of the hooks with WordPress. 212 212 * 213 * @since 1. 0.0213 * @since 1.1.0 214 214 */ 215 215 public function run() { … … 221 221 * WordPress and to define internationalization functionality. 222 222 * 223 * @since 1. 0.0223 * @since 1.1.0 224 224 * @return string The name of the plugin. 225 225 */ … … 231 231 * The reference to the class that orchestrates the hooks with the plugin. 232 232 * 233 * @since 1. 0.0233 * @since 1.1.0 234 234 * @return Botamp_Loader Orchestrates the hooks of the plugin. 235 235 */ … … 241 241 * Retrieve the version number of the plugin. 242 242 * 243 * @since 1. 0.0243 * @since 1.1.0 244 244 * @return string The version number of the plugin. 245 245 */ -
botamp/tags/1.1.0/public/partials/botamp-public-display.php
r1520640 r1560693 6 6 * 7 7 * @link support@botamp.com 8 * @since 1. 0.08 * @since 1.1.0 9 9 * 10 10 * @package Botamp
Note: See TracChangeset
for help on using the changeset viewer.