15 lines
278 B
PHP
15 lines
278 B
PHP
|
<?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);
|
||
|
}
|