PluginProbe
Wp-Insert / 2.0
Wp-Insert v2.0
trunk 1.0 1.1 1.2 1.2.1 1.2.2 1.3.0 1.3.1 1.3.3 1.4 1.5.0 1.5.1 1.5.2 1.5.3 1.6.0 1.6.1 1.6.2 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 2.0 All 63 releases
wp-insert / includes / adwidgets / menu.php

menu.php in Wp-Insert 2.0, at includes/adwidgets/menu.php

9 lines 724 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 function wp_insert_adwidgets_menu() {
3 $subPageHandle = add_submenu_page('wp-insert', 'Manage Ad Widgets<br /><small>(1 - 10)</small>', 'Manage Ad Widgets<br /><small>(1 - 10)</small>', 'manage_options', 'wp-insert-adwidgets', 'wp_insert_adwidgets_admin_page');
4 add_action('admin_print_styles-'.$subPageHandle, 'wp_insert_admin_styles');
5 $subPageHandle = add_submenu_page('wp-insert', 'Manage Ad Widgets<br /><small>(11 - 20)</small>', 'Manage Ad Widgets<br /><small>(11 - 20)</small>', 'manage_options', 'wp-insert-more-adwidgets', 'wp_insert_more_adwidgets_admin_page');
6 add_action('admin_print_styles-'.$subPageHandle, 'wp_insert_admin_styles');
7 }
8 add_action('admin_menu', 'wp_insert_adwidgets_menu');
9 ?>