Files
san-reymoros/ext/phpbbstudio/dice/controller/admin_interface.php
Gauvain Boiché 155e626426 Extensions
2020-04-04 23:28:30 +02:00

34 lines
741 B
PHP

<?php
/**
* phpBB Studio's Dice extension for the phpBB Forum Software package.
*
* @copyright (c) 2019 phpBB Studio <https://www.phpbbstudio.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*/
namespace phpbbstudio\dice\controller;
/**
* phpBB Studio's Dice Admin controller interface.
*/
interface admin_interface
{
/**
* Display and handle any actions from the Dice ACP.
*
* @param string $action Any action to handle
* @return void
* @access public
*/
public function handle($action);
/**
* Make the custom form action available in the admin controller.
*
* @param string $u_action Custom form action
* @return void
* @access public
*/
public function set_page_url($u_action);
}