Plugin Directory

Changeset 842606


Ignore:
Timestamp:
01/21/2014 07:00:05 PM (12 years ago)
Author:
fineswap
Message:

Changed namespace to reflect the correct one.

Location:
custom-resources/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • custom-resources/trunk/controller.php

    r842584 r842606  
    1414
    1515// Using namespaces is highly recommended.
    16 namespace Org\Fineswap\OpenSource;
     16namespace Org\Fineswap\OpenSource\CustomResources;
    1717
    1818// Constants reused throughout the plugin.
     
    3232
    3333// Enclose all logic in one class.
    34 class CustomResources {
     34class Controller {
    3535  /**
    3636   * Singleton instance.
    37    * @var CustomResources
     37   * @var Controller
    3838   */
    3939  private static $instance;
     
    4141  /**
    4242   * Get an singleton instance of this class.
    43    * @return CustomResources
     43   * @return Controller
    4444   */
    4545  static function &kickoff() {
     
    288288// Multi-site is currently not supported.
    289289if(!is_multisite()) {
    290   CustomResources::kickoff();
     290  Controller::kickoff();
    291291}
  • custom-resources/trunk/output.php

    r841894 r842606  
    1 <?php namespace Org\Fineswap\OpenSource; ?>
     1<?php namespace Org\Fineswap\OpenSource\CustomResources; ?>
    22
    33<div class="wrap" id="custom_resources_wrap">
  • custom-resources/trunk/readme.txt

    r842580 r842606  
    1111
    1212== Description ==
     13
    1314This plugin will make developers and site builders (hopefully very) happy.
    1415
     
    1819
    1920== Installation ==
     21
    20221. Download a copy of the plugin from wordpress.org/plugins.
    21232. Extract the files from the compressed file (this will create a directory).
     
    2628
    2729== Frequently Asked Questions ==
     30
    2831Q. Can you implement a feature that I need?
    2932
    3033A. Maybe... Please drop us an Email and tell us about it.
    3134
     35== Screenshots ==
     36
     371. Showing TEXTAREA controls to enter custom styles and scripts.
     382. Showing CHECKBOX controls to control where should styles and/or scripts load.
     39
    3240== Changelog ==
     41
     42= 1.0.1 =
     43 * Changed the namespace to reflect the correct one.
     44
    3345= 1.0 =
    34  * Initial Launch
     46 * Initial Launch.
    3547
    3648== Upgrade Notice ==
     49
    3750None
Note: See TracChangeset for help on using the changeset viewer.