\n";
}
/**
* Callback for viewing this plugin admin page
*
* @since 0.1
* @uses ZUI_WpAdditionalImageSizes::viewOptionsPage()
*/
function aiszViewOptionsPage() {
echo "
";
echo "
Additional image sizes
";
ZUI_WpAdditionalImageSizes::viewOptionsPage();
echo "";
}
/**
* Displays the activation notice
* and provides a link to the new page for first time use
*
* @since 0.1
* @uses get_option() WP function
* @uses admin_url() WP function
* @uses delete_option() WP function
*/
function aiszActivationNotice() {
if (get_option('aisz_activated')) {
echo '
Thank you for using Additional image sizes! Go here to add image sizes and to create missing/changed sizes of previously uploaded images.
';
delete_option('aisz_activated');
}
}