15 lines
278 B
PHP
Raw Normal View History

2016-05-17 15:54:37 +02:00
<?php
/**
* i-admin.php file defines mandatory method to manage module's admin
*/
interface BT_IAdmin
{
/**
* run() method process configuration or updating admin
*
* @param mixed $aParam => $_GET or $_POST
* @return bool
*/
public function run($aParam = null);
}