function my_upload_and_shorten_add_page()
{
    // load custom text domain
    yourls_load_custom_textdomain('upload-and-shorten', dirname(__FILE__) . '/i18n/');
    // create entry in the admin's plugin menu
    yourls_register_plugin_page('upload-and-shorten', 'Upload & Shorten', 'my_upload_and_shorten_do_page');
    // parameters: page slug, page title, and function that will display the page itself
}
function vaughany_popularclicksextended_add_page()
{
    yourls_register_plugin_page('popularclicksextended', 'Popular Clicks Extended', 'vaughany_popularclicksextended_display_page');
}
Beispiel #3
0
function ozh_yourls_samplepage_add_page()
{
    yourls_register_plugin_page('sample_page', 'Sample Admin Page', 'ozh_yourls_samplepage_do_page');
    // parameters: page slug, page title, and function that will display the page itself
}
Beispiel #4
0
function gmo_domain_swap_add_page()
{
    yourls_register_plugin_page('domain_swap', 'Domain Swap', 'gmo_domain_swap_do_page');
}
Beispiel #5
0
function abdulrauf_adminreCaptcha_init()
{
    yourls_register_plugin_page('adminreCaptcha', 'Admin reCaptcha Settings', 'adminreCaptcha_config_page');
}
Beispiel #6
0
function spb_recaptcha_plugin_init()
{
    yourls_register_plugin_page('spb_recaptcha', 'reCaptcha settings', 'spb_recaptcha_configpage_display');
}
Beispiel #7
0
function popularclicks_add_page()
{
    yourls_register_plugin_page('popular_clicks', 'Popular Clicks', 'popularclicks_do_page');
}
/**
 * Register the change password page
 */
function vva_change_password_register_page()
{
    yourls_register_plugin_page('change_password', 'Change Password', 'vva_change_password_display_page');
}
Beispiel #9
0
/**
 * Registers our configuration page with YOURLS
 */
function itfs_piwik_register_plugin_page()
{
    // Parameters: page slug, page title, and function that will display the page itself
    yourls_register_plugin_page('itfs_piwik_admin', 'Piwik', 'itfs_piwik_admin_settings');
}
Beispiel #10
0
function temp_instead_admin_page_add()
{
    yourls_register_plugin_page('temp_instead', 'Redirect Rules', 'temp_instead_admin_page_do');
}