Initial commit
This commit is contained in:
41
local/modules/CmCIC/Model/ConfigInterface.php
Normal file
41
local/modules/CmCIC/Model/ConfigInterface.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
namespace CmCIC\Model;
|
||||
|
||||
interface ConfigInterface
|
||||
{
|
||||
// Data access
|
||||
public function write($file=null);
|
||||
public static function read($file=null);
|
||||
|
||||
// variables setters
|
||||
/*
|
||||
* @return CmCIC\Model\ConfigInterface
|
||||
*/
|
||||
public function setCMCICPAGE($CMCIC_PAGE);
|
||||
|
||||
/*
|
||||
* @return CmCIC\Model\ConfigInterface
|
||||
*/
|
||||
public function setCMCICKEY($CMCIC_KEY);
|
||||
|
||||
/*
|
||||
* @return CmCIC\Model\ConfigInterface
|
||||
*/
|
||||
public function setCMCICCODESOCIETE($CMCIC_CODESOCIETE);
|
||||
|
||||
/*
|
||||
* @return CmCIC\Model\ConfigInterface
|
||||
*/
|
||||
public function setCMCICSERVER($CMCIC_SERVER);
|
||||
|
||||
/*
|
||||
* @return CmCIC\Model\ConfigInterface
|
||||
*/
|
||||
public function setCMCICTPE($CMCIC_TPE);
|
||||
|
||||
/*
|
||||
* @return CmCIC\Model\ConfigInterface
|
||||
*/
|
||||
public function setCMCICVERSION($CMCIC_VERSION);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user