diff --git a/dev/skeletons/skeleton_class.class.php b/dev/skeletons/skeleton_class.class.php index 3340aa89d44..072375c89d9 100644 --- a/dev/skeletons/skeleton_class.class.php +++ b/dev/skeletons/skeleton_class.class.php @@ -24,7 +24,7 @@ */ // Put here all includes required by your class file -//require_once(DOL_DOCUMENT_ROOT."/core/class/commonobject.class.php"); +require_once(DOL_DOCUMENT_ROOT."/core/class/commonobject.class.php"); //require_once(DOL_DOCUMENT_ROOT."/societe/class/societe.class.php"); //require_once(DOL_DOCUMENT_ROOT."/product/class/product.class.php"); @@ -32,13 +32,13 @@ /** * Put here description of your class */ -class Skeleton_Class // extends CommonObject +class Skeleton_Class extends CommonObject { var $db; //!< To store db handler var $error; //!< To return error code (or message) var $errors=array(); //!< To return several error codes (or messages) - //var $element='skeleton'; //!< Id that identify managed objects - //var $table_element='skeleton'; //!< Name of table without prefix where object is stored + var $element='skeleton'; //!< Id that identify managed objects + var $table_element='skeleton'; //!< Name of table without prefix where object is stored var $id; var $prop1; diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index bd61e245715..52f4c03f1fa 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -562,29 +562,31 @@ function dol_syslog($message, $level = LOG_INFO, $ident = 0, $suffixinfilename=' /** * Show tab header of a card * - * @param array $links Array of tabs - * @param string $active Active tab name (document', 'info', 'ldap', ....) - * @param string $title Title - * @param int $notab 0=Add tab header, 1=no tab header - * @param string $picto Add a picto on tab title + * @param array $links Array of tabs + * @param string $active Active tab name (document', 'info', 'ldap', ....) + * @param string $title Title + * @param int $notab 0=Add tab header, 1=no tab header + * @param string $picto Add a picto on tab title + * @param int $pictoisfullpath If 1, image path is a full path. If you set this to 1, you can use url returned by dol_build_path('/mymodyle/img/myimg.png',1) for $picto. * @return void */ -function dol_fiche_head($links=array(), $active='0', $title='', $notab=0, $picto='') +function dol_fiche_head($links=array(), $active='0', $title='', $notab=0, $picto='', $pictoisfullpath=0) { - print dol_get_fiche_head($links, $active, $title, $notab, $picto); + print dol_get_fiche_head($links, $active, $title, $notab, $picto, $pictoisfullpath); } /** * Show tab header of a card * - * @param array $links Array of tabs - * @param int $active Active tab name - * @param string $title Title - * @param int $notab 0=Add tab header, 1=no tab header - * @param string $picto Add a picto on tab title + * @param array $links Array of tabs + * @param int $active Active tab name + * @param string $title Title + * @param int $notab 0=Add tab header, 1=no tab header + * @param string $picto Add a picto on tab title + * @param int $pictoisfullpath If 1, image path is a full path. If you set this to 1, you can use url returned by dol_build_path('/mymodyle/img/myimg.png',1) for $picto. * @return void */ -function dol_get_fiche_head($links=array(), $active='0', $title='', $notab=0, $picto='') +function dol_get_fiche_head($links=array(), $active='0', $title='', $notab=0, $picto='', $pictoisfullpath=0) { $out="\n".'