本文整理汇总了PHP中getListOfModels函数的典型用法代码示例。如果您正苦于以下问题:PHP getListOfModels函数的具体用法?PHP getListOfModels怎么用?PHP getListOfModels使用的例子?那么, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了getListOfModels函数的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: liste_modeles
/**
* Return list of active generation modules
*
* @param DoliDB $db Database handler
* @param integer $maxfilenamelength Max length of value to show
* @return array List of templates
*/
static function liste_modeles($db, $maxfilenamelength = 0)
{
global $conf;
$type = 'contract';
$liste = array();
include_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php';
$liste = getListOfModels($db, $type, $maxfilenamelength);
return $liste;
}
示例2: liste_modeles
/**
* Return list of active generation modules
* @param $db Database handler
*/
function liste_modeles($db)
{
global $conf;
$type = 'propal';
$liste = array();
include_once DOL_DOCUMENT_ROOT . '/lib/functions2.lib.php';
$liste = getListOfModels($db, $type, '');
return $liste;
}
示例3: liste_modeles
/**
* Return list of active generation modules
*
* @param DoliDB $db Database handler
* @param string $maxfilenamelength Max length of value to show
* @return array List of templates
*/
static function liste_modeles($db, $maxfilenamelength = 0)
{
global $conf;
$type = 'chequereceipt';
$liste = array();
include_once DOL_DOCUMENT_ROOT . '/core/lib/functions2.lib.php';
$liste = getListOfModels($db, $type, $maxfilenamelength);
// TODO Remove this to use getListOfModels only
$liste = array('blochet' => 'blochet');
return $liste;
}
示例4: liste_modeles
/**
* \brief Return list of active generation modules
* \param $db Database handler
*/
function liste_modeles($db)
{
global $conf;
$type='invoice_supplier';
$liste=array();
include_once(DOL_DOCUMENT_ROOT.'/lib/functions2.lib.php');
$liste=getListOfModels($db,$type,'');
return $liste;
}
示例5: liste_modeles
/**
* \brief Return list of active generation modules
* \param $db Database handler
*/
function liste_modeles($db)
{
global $conf;
$type='chequereceipt';
$liste=array();
include_once(DOL_DOCUMENT_ROOT.'/lib/functions2.lib.php');
$liste=getListOfModels($db,$type,'');
// TODO Remove this to use getListOfModels only
$liste = array('blochet'=>'blochet');
return $liste;
}