autoContentLinksControlPanel($file); } /** * Old style PHP4 constructor * @param string $file * @access public * @since 1.0 * @return void */ function autoContentLinksControlPanel($file) { // Add Settings link to plugin page add_filter("plugin_action_links_".$file, array($this, 'actlinks')); // Any settings to initialize add_action('admin_init', array($this, 'adminInit')); // Load menu page add_action('admin_menu', array($this, 'addAdminPage')); // Load admin CSS style sheet add_action('admin_head', array($this, 'registerHead')); } /** * Add a setting link to the plugin settings page * @param array $links * @access public * @since 1.0 * @return void */ function actlinks($links) { // Add a link to this plugins settings page $settings_link = 'Settings'; array_unshift($links, $settings_link); return $links; } /** * Initialize admin * @access public * @since 1.0 * @return void */ function adminInit() { register_setting('autoContentLinksOptions', 'auto_content_links'); } /** * Add an admin page to the general settings panel * @access public * @since 1.0 * @return void */ function addAdminPage() { add_options_page('Auto Content Links Options', 'Auto Content Links', 'administrator', 'auto-content-links', array($this, 'admin')); } /** * Admin page * @access public * @since 1.0 * @return void */ function admin() { echo '
If you like this plugin, keep it Ad free and in a constant state of development by donating to the cause!
I\'m on Twitter - make sure you follow me!
The Wapple Architect Mobile Plugin for WordPress mobilizes your blog so your visitors can read your posts whilst they are on their mobile phone!
Head over to http://wordpress.org/extend/plugins/wapple-architect/ and install it now or jump straight to the Plugin Install Page
WordPress Mobile Admin allows you to create posts from your mobile, upload photots, moderate comments and perform basic post/page management.
Download it from http://wordpress.org/extend/plugins/wordpress-mobile-admin/ or jump straight to the Plugin Install Page