ToutPratique 1d1a2def5f push prod
2016-05-17 15:54:37 +02:00

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);
}