14/03/2016, 17:42:17
dans le fichier method.install.php avant ton try un truc dans le genre
Code :
// ADD template
$fn = cms_join_path(dirname(__FILE__),'templates','ton_fichier.tpl');
if( file_exists( $fn ) ) {
$template = @file_get_contents($fn);
$tpl = new CmsLayoutTemplate(); $tpl->set_name(CmsLayoutTemplate::generate_unique_name('nom_de_ton_gabarit'));
$tpl->set_description(' une info de description ');
$tpl->set_owner($uid);
$tpl->set_content($template);
$tpl->set_type($menu_template_type);
$tpl->set_type_dflt(TRUE);
$tpl->save();
}
J-C Etiemble v 2.2.xx