Your IP : 18.191.215.96


Current Path : /home/sudancam/public_html3/games/wp-content/plugins/wp-rss-aggregator/src/Handlers/
Upload File :
Current File : /home/sudancam/public_html3/games/wp-content/plugins/wp-rss-aggregator/src/Handlers/RegisterSubMenuPageHandler.php

<?php

namespace RebelCode\Wpra\Core\Handlers;

use stdClass;

/**
 * A generic handler for registering a submenu page in WordPress.
 *
 * @since 4.13
 */
class RegisterSubMenuPageHandler
{
    /**
     * The submenu page info.
     *
     * @since 4.13
     *
     * @var array
     */
    protected $info;

    /**
     * Constructor.
     *
     * @since 4.13
     *
     * @param array|stdClass $info The submenu page info, containing the keys:
     *                             - parent
     *                             - slug
     *                             - page_title
     *                             - menu_label
     *                             - capability
     *                             - callback
     *                             - position
     */
    public function __construct($info)
    {
        $this->info = wp_parse_args((array) $info, [
            'parent' => null,
            'slug' => null,
            'page_title' => null,
            'menu_label' => null,
            'capability' => null,
            'callback' => null,
            'position' => null,
        ]);
    }

    /**
     * @since 4.13
     */
    public function __invoke()
    {
        add_submenu_page(
            $this->info['parent'],
            $this->info['page_title'],
            $this->info['menu_label'],
            $this->info['capability'],
            $this->info['slug'],
            $this->info['callback'],
            $this->info['position']
        );
    }
}