Changeset 842606
- Timestamp:
- 01/21/2014 07:00:05 PM (12 years ago)
- Location:
- custom-resources/trunk
- Files:
-
- 3 edited
-
controller.php (modified) (4 diffs)
-
output.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
custom-resources/trunk/controller.php
r842584 r842606 14 14 15 15 // Using namespaces is highly recommended. 16 namespace Org\Fineswap\OpenSource ;16 namespace Org\Fineswap\OpenSource\CustomResources; 17 17 18 18 // Constants reused throughout the plugin. … … 32 32 33 33 // Enclose all logic in one class. 34 class C ustomResources{34 class Controller { 35 35 /** 36 36 * Singleton instance. 37 * @var C ustomResources37 * @var Controller 38 38 */ 39 39 private static $instance; … … 41 41 /** 42 42 * Get an singleton instance of this class. 43 * @return C ustomResources43 * @return Controller 44 44 */ 45 45 static function &kickoff() { … … 288 288 // Multi-site is currently not supported. 289 289 if(!is_multisite()) { 290 C ustomResources::kickoff();290 Controller::kickoff(); 291 291 } -
custom-resources/trunk/output.php
r841894 r842606 1 <?php namespace Org\Fineswap\OpenSource ; ?>1 <?php namespace Org\Fineswap\OpenSource\CustomResources; ?> 2 2 3 3 <div class="wrap" id="custom_resources_wrap"> -
custom-resources/trunk/readme.txt
r842580 r842606 11 11 12 12 == Description == 13 13 14 This plugin will make developers and site builders (hopefully very) happy. 14 15 … … 18 19 19 20 == Installation == 21 20 22 1. Download a copy of the plugin from wordpress.org/plugins. 21 23 2. Extract the files from the compressed file (this will create a directory). … … 26 28 27 29 == Frequently Asked Questions == 30 28 31 Q. Can you implement a feature that I need? 29 32 30 33 A. Maybe... Please drop us an Email and tell us about it. 31 34 35 == Screenshots == 36 37 1. Showing TEXTAREA controls to enter custom styles and scripts. 38 2. Showing CHECKBOX controls to control where should styles and/or scripts load. 39 32 40 == Changelog == 41 42 = 1.0.1 = 43 * Changed the namespace to reflect the correct one. 44 33 45 = 1.0 = 34 * Initial Launch 46 * Initial Launch. 35 47 36 48 == Upgrade Notice == 49 37 50 None
Note: See TracChangeset
for help on using the changeset viewer.