Inpsyde\MultilingualPress\Common\Admin\SettingsPage::get_callback_args PHP Method

get_callback_args() private method

Returns the callback args for adding the page to the admin menu.
private get_callback_args ( ) : array
return array Callback args for adding the page to the admin menu.
    private function get_callback_args()
    {
        return array_diff_key(['parent' => $this->parent, 'title' => $this->title, 'menu_title' => $this->menu_title, 'capability' => $this->capability, 'slug' => $this->slug, 'callback' => [$this->view, 'render'], 'icon' => $this->icon, 'position' => $this->position], $this->parent ? ['icon', 'position'] : ['parent']);
    }