WPDK, the WordPress Development Kit for Plugin Developers
WPDK is a rather new development kit for WordPress and promises to enable the simple creation of easily maintainable plugins and themes. It's supposed to improve the WordPress kernel and extends its core features and classes. WPDK is fully object-oriented and guarantees easy usability.
WPDK is the acronym of WordPress Development Kit. It's an easily installable PHP framework that was written for the plugin and theme development with WordPress.
The WPDK - WordPress Development Kit Framework
Nowadays, developing plugins and themes is not an easy task anymore. The code is becoming increasingly more complicated, and more and more features have to be implemented. This is the best time for a development plugin that promises to stand for an easily maintainable code base. Due to its object-oriented infrastructure, WPDK encapsulates many aspects of the development of a WordPress plugin or theme and automatically executes tasks that generally are supposed to precede the right approach of a developer. The developer should focus on his idea, and not on the infrastructure. Thanks to the expansion of the WordPress objects with theWPDKWordPressPlugin
object, the developer can access a bunch of advantages with a simple action.
Further Information:
WPDKWordPressPlugin Class ReferenceWPDK - Examples of the Most Important Advantages for Developers
Many important things are quickly accessible to ease the development of plugins. A few examples:- The immediate availability of your plugin data; like name, version, and text domain.
- The immediate availability of useful paths related to your plugin, like the plugin folder, the plugin main file name, and so on.
- The automatic creation of hooks to WordPress filters in connection with the activation, loading, and the deactivation of the plugin.
- A clear cut between the necessary code for the admin area and the frontend for WordPress is also made. This lets you implement the code in the correct spot fast and efficiently.
A Brief Presentation of the Most Important Features:
- Simplicity Your WordPress development should become easier, thanks to the steadily growing amount of WordPress objects that WPDK provides: fast generation of a plugin infrastructure, shortcode manipulation, file system, DateTime helpers, and so forth.
- More Productive The development becomes more productive and faster, as you can stop writing the same code for the same purpose over and over. Basic infrastructures for the development of WordPress plugins and themes are embedded in WPDK.
- Integration The framework can be integrated into the most important IDEs (PHPStorm, Eclipse, Netbeans and others), and supports you with an internal documentation in PHPDoc format. Direct help during development is also offered inline.
- Improvement The WordPress UI is improved and allows for better user friendliness of your creation. This way, faster and more efficient results can be secured.
- Maintainability Your WordPress creations should be easier to take care of now, due to the object-oriented internal infrastructure, as well as the MVC pattern compatibility.
- Swiftness Thanks to the WPDK autoloading technology, your WordPress creations will get up to 50% faster. You only write the PHP source code that is necessary for the fulfillment of the client's HTTP request load, analyze, and execute. Every other WPDK PHP source code that is not related to the HTTP transaction is not loaded, which drastically increases the speed during loading and running the code.
Further Information:
The Complete List of WPDK FeaturesThe Installation of the Framework and its Requirements
Before the installation, there are requirements to be met, however, almost all hosts should meet them by now.- At Least Wordpress Version 3.4
- At Least PHP Version 5.2.4
- At Least MySQL Version 5.0
- Download of the framework from the official Github page
- Unpacking the file to the desktop
- Loading the folder
wpdk-production
into the WordPress plugin index using FTP
lemme try this plugin and see the result :D
Lets see how it goes Andreas Hecht
All latest things and modifications are being done just to simplify the previous process lets see how it goes.
Thanks for the detailed information