Amazon_S3_And_CloudFront::admin_menu PHP Method

admin_menu() public method

Add the settings menu item
public admin_menu ( Amazon_Web_Services $aws )
$aws Amazon_Web_Services
    function admin_menu($aws)
    {
        $hook_suffix = $aws->add_page($this->get_plugin_page_title(), $this->plugin_menu_title, 'manage_options', $this->plugin_slug, array($this, 'render_page'));
        if (false !== $hook_suffix) {
            $this->hook_suffix = $hook_suffix;
            add_action('load-' . $this->hook_suffix, array($this, 'plugin_load'));
        }
    }
Amazon_S3_And_CloudFront