Skip to content

Commit 5b0a961

Browse files
committed
Renamed namespace to VendorName\MyPlugin
1 parent 6a7f899 commit 5b0a961

12 files changed

Lines changed: 18 additions & 13 deletions

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,14 +35,18 @@ It may also be used as the means of [separating custom code](http://www.billeric
3535

3636
* Refactor code
3737
* Add/test/document object caching class
38+
* Add activation/deactivation/uninstall hooks
3839
* Update to comply with new Carbon Fields standards
3940
* Add task runner, related documentation and update .gitignore and rearrange `./assets`
4041
* Fix i18n issues and create `.pot` language file
42+
* Create means to autogenerate language file
4143
* Add Ajax call example
4244
* Add encrypt/decrypt example
4345
* Add hidden `password` field with encrypted `hidden` field
44-
* Possibly add hooks
46+
* Possibly add hooks (maybe to assist in consolidation of multiple settings pages?)
4547
* Possibly add TGMPA example
48+
* Possible add Customizer example
49+
* Add wordpress-settings-api-class example(s)
4650
* Allow loading Carbon Fields via [plugin](https://github.com/dmhendricks/carbon-fields-loader) rather than Composer dependency
4751
* Test compatibility with WordPress 4.0 and higher
4852
* Add uninstall.php
@@ -59,6 +63,7 @@ It may also be used as the means of [separating custom code](http://www.billeric
5963
* Tested PHP 5.4 - 7.1 compatibility
6064
* Fixed various PHP 5.3 issues; bumped minimum suggested version to 5.4.0
6165
* Added minimum PHP version check
66+
* Renamed namespace to `VendorName\MyPlugin`
6267
* Added screenshot
6368

6469
#### 0.1.1

app/CPT.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Nimbium\MyPlugin;
2+
namespace VendorName\MyPlugin;
33
use Carbon_Fields\Container;
44
use Carbon_Fields\Field;
55
use PostTypes;

app/Cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Nimbium\MyPlugin;
2+
namespace VendorName\MyPlugin;
33

44
class Cache extends Plugin {
55

app/Core.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Nimbium\MyPlugin;
2+
namespace VendorName\MyPlugin;
33

44
class Core extends Plugin {
55

app/EnqueueScripts.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Nimbium\MyPlugin;
2+
namespace VendorName\MyPlugin;
33

44
class EnqueueScripts extends Plugin {
55

app/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Nimbium\MyPlugin;
2+
namespace VendorName\MyPlugin;
33
use Carbon_Fields\Container;
44
use Carbon_Fields\Field;
55

app/Settings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Nimbium\MyPlugin;
2+
namespace VendorName\MyPlugin;
33
use Carbon_Fields\Container;
44
use Carbon_Fields\Field;
55

app/Shortcodes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Nimbium\MyPlugin;
2+
namespace VendorName\MyPlugin;
33

44
class Shortcodes extends Plugin {
55

app/Utils.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Nimbium\MyPlugin;
2+
namespace VendorName\MyPlugin;
33
use Carbon_Fields\Container;
44
use Carbon_Fields\Field;
55

app/WidgetLoader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
namespace Nimbium\MyPlugin;
2+
namespace VendorName\MyPlugin;
33
use Carbon_Fields\Widget;
44
use Carbon_Fields\Field;
55

0 commit comments

Comments
 (0)