Qual: Mutualized code

This commit is contained in:
Laurent Destailleur
2011-01-24 23:35:21 +00:00
parent a029d1288f
commit 65a007a506
16 changed files with 196 additions and 351 deletions

View File

@@ -40,7 +40,13 @@ function contract_prepare_head($object)
$head[$h][2] = 'contact';
$h++;
$head[$h][0] = DOL_URL_ROOT.'/contrat/note.php?id='.$object->id;
// Show more tabs from modules
// Entries must be declared in modules descriptor with line
// $this->tabs = array('entity:+tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to add new tab
// $this->tabs = array('entity:-tabname:Title:@mymodule:/mymodule/mypage.php?id=__ID__'); to remove a tab
complete_head_from_modules($conf,$langs,$object,$head,$h,'contract');
$head[$h][0] = DOL_URL_ROOT.'/contrat/note.php?id='.$object->id;
$head[$h][1] = $langs->trans("Note");
$head[$h][2] = 'note';
$h++;
@@ -55,23 +61,6 @@ function contract_prepare_head($object)
$head[$h][2] = 'info';
$h++;
// Show more tabs from modules
// Entries must be declared in modules descriptor with line
// $this->tabs = array('entity:MyModule:@mymodule:/mymodule/mypage.php?id=__ID__');
if (is_array($conf->tabs_modules['contract']))
{
$i=0;
foreach ($conf->tabs_modules['contract'] as $value)
{
$values=explode(':',$value);
if ($values[2]) $langs->load($values[2]);
$head[$h][0] = dol_buildpath(preg_replace('/__ID__/i',$object->id,$values[3]),1);
$head[$h][1] = $langs->trans($values[1]);
$head[$h][2] = 'tab'.$values[1];
$h++;
}
}
return $head;
}