Пример #1
0
/**
 * This is a utility function to load a dumped templates files
 * into vtiger
 * @param $filename The name of the file to load.
 */
function loadTemplates($filename)
{
    global $adb;
    $str = file_get_contents('fetchtemplates.out');
    $tm = new VTWorkflowTemplateManager($adb);
    $tm->loadTemplates($str);
}