Plugin info

Total downloads: 1,669
Active installs: 10
Total reviews: 0
Average rating: 0
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 2/2/2010 (5812 days ago)
Added to WordPress: 2/1/2010 (15 years old)
Minimum WordPress version: 2.9
Tested up to WordPress version: 2.9.2
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 5812 days ago

20/100

Is Devel abandoned?

Possibly abandoned (last update 5812 days ago).

Compatibility

Requires WordPress: 2.9
Tested up to: 2.9.2
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

No similar plugins found yet.

Description

Devel is made up of development oriented administrative components for developers and power users who need more control over their WordPress site.

Features are seperated into components which can be enabled or disabled. In addition, devel has an intuitive API for adding your own custom components into the mix using the devel components API.

Bundled Components

By default, devel comes packaged with:

  • Custom Fields Manager – Allows to you manage all custom fields in your site.

Additional components will be added gradually throughout future releases. If you have any component suggestions, please visit the forums.

Components API

Using the components API, you can add your own components to devel.

Add a component:

add_action( 'devel_register_components', 'register_my_components' );
function register_my_components() {
    register_devel_component( array( 'id' => 'debug', 'label' => 'Debug', 'callback' => 'debug_callback', 'description' => 'This is a custom component.' ) );
}

In your callback function:

function debug_callback() {
    if ( is_active_devel_component( 'debug' ) ) {
        require_once( TEMPLATEPATH . '/devel-component-debug.php' );
    }
}

In devel-component-debug.php you can hook into the devel menu:

add_action( 'admin_menu', 'custom_fields_init' );
function custom_fields_init() {
    add_submenu_page( 'devel', 'Debug', 'Debug', 'manage_options', 'debug-component', 'debug_admin_page' );
}

function debug_admin_page() { ?>
    

Debug

Installation

  1. Upload ‘devel’ to the ‘/wp-content/plugins/’ directory.
  2. Activate the plugin through the Plugins menu in WordPress.
  3. Go to Devel > Devel Components and activate any components you want.

Frequently Asked Questions

Where do I go to file a bug or ask a question?

Please visit the forum for questions or comments: https://wordpress.org/tags/devel/

Review feed

No reviews available

Screenshots

No screenshots available

Changelog

0.1 (02/1/2010)

* Initial release.