Changeset 1211458
- Timestamp:
- 08/02/2015 08:32:57 PM (11 years ago)
- Location:
- classy/trunk
- Files:
-
- 12 edited
-
admin/class-classy-admin.php (modified) (6 diffs)
-
admin/partials/classy-admin-display.php (modified) (1 diff)
-
classy.php (modified) (3 diffs)
-
includes/class-classy-activator.php (modified) (3 diffs)
-
includes/class-classy-api.php (modified) (17 diffs)
-
includes/class-classy-deactivator.php (modified) (3 diffs)
-
includes/class-classy-i18n.php (modified) (5 diffs)
-
includes/class-classy-loader.php (modified) (8 diffs)
-
includes/class-classy.php (modified) (11 diffs)
-
public/class-classy-public.php (modified) (7 diffs)
-
public/partials/classy-public-display.php (modified) (1 diff)
-
uninstall.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
classy/trunk/admin/class-classy-admin.php
r1211455 r1211458 5 5 * 6 6 * @link http://mediacause.org 7 * @since 1.2 7 * @since 1.2.2 8 8 * 9 9 * @package Classy … … 23 23 * The ID of this plugin. 24 24 * 25 * @since 1.2 25 * @since 1.2.2 26 26 * @access private 27 27 * @var string $classy The ID of this plugin. … … 32 32 * The version of this plugin. 33 33 * 34 * @since 1.2 34 * @since 1.2.2 35 35 * @access private 36 36 * @var string $version The current version of this plugin. … … 41 41 * Initialize the class and set its properties. 42 42 * 43 * @since 1.2 43 * @since 1.2.2 44 44 * @param string $classy The name of this plugin. 45 45 * @param string $version The version of this plugin. … … 54 54 * Register the stylesheets for the Dashboard. 55 55 * 56 * @since 1.2 56 * @since 1.2.2 57 57 */ 58 58 public function enqueue_styles() { … … 63 63 * Register the JavaScript for the dashboard. 64 64 * 65 * @since 1.2 65 * @since 1.2.2 66 66 */ 67 67 public function enqueue_scripts() { -
classy/trunk/admin/partials/classy-admin-display.php
r1130896 r1211458 5 5 * 6 6 * @link http://mediacause.org 7 * @since 1.2 7 * @since 1.2.2 8 8 * 9 9 * @package Classy -
classy/trunk/classy.php
r1130957 r1211458 5 5 * 6 6 * @link http://mediacause.org 7 * @since 1.2. 17 * @since 1.2.2 8 8 * @package Classy 9 9 * … … 12 12 * Plugin URI: http://mediacause.org 13 13 * Description: A tool used to integrate Classy's API into easily accessible shortcodes 14 * Version: 1.2. 114 * Version: 1.2.2 15 15 * Author: Media Cause 16 16 * Author URI: http://mediacause.org … … 60 60 * not affect the page life cycle. 61 61 * 62 * @since 1.2 62 * @since 1.2.2 63 63 */ 64 64 function run_classy() { -
classy/trunk/includes/class-classy-activator.php
r1130896 r1211458 5 5 * 6 6 * @link http://mediacause.org 7 * @since 1.2 7 * @since 1.2.2 8 8 * 9 9 * @package Classy … … 16 16 * This class defines all code necessary to run during the plugin's activation. 17 17 * 18 * @since 1.2 18 * @since 1.2.2 19 19 * @package Classy 20 20 * @subpackage Classy/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1.2 30 * @since 1.2.2 31 31 */ 32 32 public static function activate() { -
classy/trunk/includes/class-classy-api.php
r1130896 r1211458 5 5 * 6 6 * @link http://mediacause.org 7 * @since 1.2 7 * @since 1.2.2 8 8 * 9 9 * @package Classy … … 16 16 * This class defines all code necessary to run during the plugin's API functionality. 17 17 * 18 * @since 1.2 18 * @since 1.2.2 19 19 * @package Classy 20 20 * @subpackage Classy/includes … … 33 33 * Updates Classy Token and CID information. 34 34 * 35 * @since 1.2 35 * @since 1.2.2 36 36 */ 37 37 … … 61 61 * Get all the details about a specific charity account 62 62 * 63 * @since 1.2 63 * @since 1.2.2 64 64 */ 65 65 public function account_info(){ … … 78 78 * activity. 79 79 * 80 * @since 1.2 80 * @since 1.2.2 81 81 * @param string $attrs The query string (optional) 82 82 */ … … 94 94 * Get information about matching sponsors for a campaign/event 95 95 * 96 * @since 1.2 96 * @since 1.2.2 97 97 * @param string $attrs The query string (optional) 98 98 */ … … 110 110 * Get an array of all campaigns and events for a charity account 111 111 * 112 * @since 1.2 112 * @since 1.2.2 113 113 * @param string $attrs The query string (optional) 114 114 */ … … 126 126 * Get all the specific details about a specific campaign or event 127 127 * 128 * @since 1.2 128 * @since 1.2.2 129 129 * @param string $eid The unique ID of the campaign/event 130 130 */ … … 142 142 * Get an array of all tickets for a specified campaign/event 143 143 * 144 * @since 1.2 144 * @since 1.2.2 145 145 * @param string $eid The unique ID of the campaign/event 146 146 */ … … 159 159 * designation or member 160 160 * 161 * @since 1.2 161 * @since 1.2.2 162 162 * @param string $attrs The query string (optional) 163 163 */ … … 175 175 * Get the details for a specific individual fundraising page 176 176 * 177 * @since 1.2 177 * @since 1.2.2 178 178 * @param string $fcid The unique ID of the individual fundraising page 179 179 */ … … 191 191 * Get a list of the top fundraising teams ranked by total $ raised for a specific campaign 192 192 * 193 * @since 1.2 193 * @since 1.2.2 194 194 * @param string $attrs The query string (optional) 195 195 */ … … 207 207 * Get the details for a specific individual fundraising team page 208 208 * 209 * @since 1.2 209 * @since 1.2.2 210 210 * @param string $ftid The unique ID of the individual fundraising page 211 211 */ … … 223 223 * Get an array of donations over a specific date range 224 224 * 225 * @since 1.2 225 * @since 1.2.2 226 226 * @param string $attrs The query string (optional) 227 227 */ … … 239 239 * Get an array of recurring donation profiles 240 240 * 241 * @since 1.2 241 * @since 1.2.2 242 242 * @param string $attrs The query string (optional) 243 243 */ … … 256 256 * designations and terminology is sometimes interchanged on Classy. 257 257 * 258 * @since 1.2 258 * @since 1.2.2 259 259 * @param string $pid The unique ID of the project/designation 260 260 */ … … 272 272 * Retrieve ticket details for a specific campaign/event 273 273 * 274 * @since 1.2 274 * @since 1.2.2 275 275 * @param string $eid The unique ID of the campaign/event 276 276 */ -
classy/trunk/includes/class-classy-deactivator.php
r1130896 r1211458 5 5 * 6 6 * @link http://mediacause.org 7 * @since 1.2 7 * @since 1.2.2 8 8 * 9 9 * @package Classy … … 16 16 * This class defines all code necessary to run during the plugin's deactivation. 17 17 * 18 * @since 1.2 18 * @since 1.2.2 19 19 * @package Classy 20 20 * @subpackage Classy/includes … … 28 28 * Long Description. 29 29 * 30 * @since 1.2 30 * @since 1.2.2 31 31 */ 32 32 public static function deactivate() { -
classy/trunk/includes/class-classy-i18n.php
r1130896 r1211458 8 8 * 9 9 * @link http://mediacause.org 10 * @since 1.2 10 * @since 1.2.2 11 11 * 12 12 * @package Classy … … 20 20 * so that it is ready for translation. 21 21 * 22 * @since 1.2 22 * @since 1.2.2 23 23 * @package Classy 24 24 * @subpackage Classy/includes … … 30 30 * The domain specified for this plugin. 31 31 * 32 * @since 1.2 32 * @since 1.2.2 33 33 * @access private 34 34 * @var string $domain The domain identifier for this plugin. … … 39 39 * Load the plugin text domain for translation. 40 40 * 41 * @since 1.2 41 * @since 1.2.2 42 42 */ 43 43 public function load_plugin_textdomain() { … … 54 54 * Set the domain equal to that of the specified domain. 55 55 * 56 * @since 1.2 56 * @since 1.2.2 57 57 * @param string $domain The domain that represents the locale of this plugin. 58 58 */ -
classy/trunk/includes/class-classy-loader.php
r1130896 r1211458 5 5 * 6 6 * @link http://mediacause.org 7 * @since 1.2 7 * @since 1.2.2 8 8 * 9 9 * @package Classy … … 27 27 * The array of actions registered with WordPress. 28 28 * 29 * @since 1.2 29 * @since 1.2.2 30 30 * @access protected 31 31 * @var array $actions The actions registered with WordPress to fire when the plugin loads. … … 36 36 * The array of filters registered with WordPress. 37 37 * 38 * @since 1.2 38 * @since 1.2.2 39 39 * @access protected 40 40 * @var array $filters The filters registered with WordPress to fire when the plugin loads. … … 45 45 * Initialize the collections used to maintain the actions and filters. 46 46 * 47 * @since 1.2 47 * @since 1.2.2 48 48 */ 49 49 public function __construct() { … … 57 57 * Add a new action to the collection to be registered with WordPress. 58 58 * 59 * @since 1.2 59 * @since 1.2.2 60 60 * @param string $hook The name of the WordPress action that is being registered. 61 61 * @param object $component A reference to the instance of the object on which the action is defined. … … 71 71 * Add a new filter to the collection to be registered with WordPress. 72 72 * 73 * @since 1.2 73 * @since 1.2.2 74 74 * @param string $hook The name of the WordPress filter that is being registered. 75 75 * @param object $component A reference to the instance of the object on which the filter is defined. … … 86 86 * collection. 87 87 * 88 * @since 1.2 88 * @since 1.2.2 89 89 * @access private 90 90 * @param array $hooks The collection of hooks that is being registered (that is, actions or filters). … … 113 113 * Register the filters and actions with WordPress. 114 114 * 115 * @since 1.2 115 * @since 1.2.2 116 116 */ 117 117 public function run() { -
classy/trunk/includes/class-classy.php
r1130947 r1211458 8 8 * 9 9 * @link http://mediacause.org 10 * @since 1.2 10 * @since 1.2.2 11 11 * 12 12 * @package Classy … … 23 23 * version of the plugin. 24 24 * 25 * @since 1.2 25 * @since 1.2.2 26 26 * @package Classy 27 27 * @subpackage Classy/includes … … 34 34 * the plugin. 35 35 * 36 * @since 1.2 36 * @since 1.2.2 37 37 * @access protected 38 38 * @var Classy_Loader $loader Maintains and registers all hooks for the plugin. … … 43 43 * The unique identifier of this plugin. 44 44 * 45 * @since 1.2 45 * @since 1.2.2 46 46 * @access protected 47 47 * @var string $classy The string used to uniquely identify this plugin. … … 52 52 * The current version of the plugin. 53 53 * 54 * @since 1.2 54 * @since 1.2.2 55 55 * @access protected 56 56 * @var string $version The current version of the plugin. … … 65 65 * the public-facing side of the site. 66 66 * 67 * @since 1.2 67 * @since 1.2.2 68 68 */ 69 69 public function __construct() { … … 92 92 * with WordPress. 93 93 * 94 * @since 1.2 94 * @since 1.2.2 95 95 * @access private 96 96 */ … … 133 133 * with WordPress. 134 134 * 135 * @since 1.2 135 * @since 1.2.2 136 136 * @access private 137 137 */ … … 149 149 * of the plugin. 150 150 * 151 * @since 1.2 151 * @since 1.2.2 152 152 * @access private 153 153 */ … … 165 165 * of the plugin. 166 166 * 167 * @since 1.2 167 * @since 1.2.2 168 168 * @access private 169 169 */ … … 180 180 * Run the loader to execute all of the hooks with WordPress. 181 181 * 182 * @since 1.2 182 * @since 1.2.2 183 183 */ 184 184 public function run() { -
classy/trunk/public/class-classy-public.php
r1211455 r1211458 5 5 * 6 6 * @link http://mediacause.org 7 * @since 1.2 7 * @since 1.2.2 8 8 * 9 9 * @package Classy … … 23 23 * The ID of this plugin. 24 24 * 25 * @since 1.2 25 * @since 1.2.2 26 26 * @access private 27 27 * @var string $classy The ID of this plugin. … … 32 32 * The version of this plugin. 33 33 * 34 * @since 1.2 34 * @since 1.2.2 35 35 * @access private 36 36 * @var string $version The current version of this plugin. … … 41 41 * The version of this plugin. 42 42 * 43 * @since 1.2 43 * @since 1.2.2 44 44 * @access private 45 45 * @var object $api The current account API Object … … 53 53 * Initialize the class and set its properties. 54 54 * 55 * @since 1.2 55 * @since 1.2.2 56 56 * @param string $classy The name of the plugin. 57 57 * @param string $version The version of this plugin. … … 70 70 * Register the stylesheets for the public-facing side of the site. 71 71 * 72 * @since 1.2 72 * @since 1.2.2 73 73 */ 74 74 public function enqueue_styles() { … … 79 79 * Register the stylesheets for the public-facing side of the site. 80 80 * 81 * @since 1.2 81 * @since 1.2.2 82 82 */ 83 83 public function enqueue_scripts() { -
classy/trunk/public/partials/classy-public-display.php
r1130896 r1211458 7 7 * 8 8 * @link http://mediacause.org 9 * @since 1.2 9 * @since 1.2.2 10 10 * 11 11 * @package Classy -
classy/trunk/uninstall.php
r1130896 r1211458 21 21 * 22 22 * @link http://mediacause.org 23 * @since 1.2 23 * @since 1.2.2 24 24 * 25 25 * @package Classy
Note: See TracChangeset
for help on using the changeset viewer.