2
0
forked from Wavyzz/dolibarr

Fix: remove obsolete tags (in progress)

This commit is contained in:
Regis Houssin
2011-08-27 14:24:16 +00:00
parent 38b5347d07
commit 726d9581dd
538 changed files with 869 additions and 1160 deletions

View File

@@ -20,7 +20,6 @@
* \file dev/skeletons/build_class_from_table.php
* \ingroup core
* \brief Create a complete class file from a table in database
* \version $Id: build_class_from_table.php,v 1.33 2011/07/31 22:21:58 eldy Exp $
*/
$sapi_type = php_sapi_name();
@@ -38,7 +37,7 @@ require_once($path."../../htdocs/master.inc.php");
// After this $db is a defined handler to database.
// Main
$version='$Revision: 1.33 $';
$version='$Revision: 1.34 $';
@set_time_limit(0);
$error=0;

View File

@@ -20,7 +20,6 @@
* \file dev/skeletons/build_webservice_from_class.php
* \ingroup core
* \brief Create a complete webservice file from CRUD functions of a PHP class
* \version $Id: build_webservice_from_class.php,v 1.7 2011/07/31 22:21:58 eldy Exp $
*/
$sapi_type = php_sapi_name();
@@ -38,7 +37,7 @@ require_once($path."../../htdocs/master.inc.php");
// After this $db is a defined handler to database.
// Main
$version='$Revision: 1.7 $';
$version='$Revision: 1.8 $';
@set_time_limit(0);
$error=0;

View File

@@ -27,7 +27,6 @@
* \file htdocs/includes/modules/modMyModule.class.php
* \ingroup mymodule
* \brief Description and activation file for module MyModule
* \version $Id: modMyModule.class.php,v 1.68 2011/08/10 23:30:20 eldy Exp $
*/
include_once(DOL_DOCUMENT_ROOT ."/includes/modules/DolibarrModules.class.php");

View File

@@ -20,7 +20,6 @@
* \file dev/skeletons/skeleton_class.class.php
* \ingroup mymodule othermodule1 othermodule2
* \brief This file is an example for a CRUD class file (Create/Read/Update/Delete)
* \version $Id: skeleton_class.class.php,v 1.32 2011/07/31 22:21:58 eldy Exp $
* \author Put author name here
* \remarks Put here some comments
*/

View File

@@ -20,7 +20,6 @@
* \file dev/skeletons/skeleton_page.php
* \ingroup mymodule othermodule1 othermodule2
* \brief This file is an example of a php page
* \version $Id: skeleton_page.php,v 1.19 2011/07/31 22:21:57 eldy Exp $
* \author Put author name here
* \remarks Put here some comments
*/
@@ -113,5 +112,5 @@ $somethingshown=$myobject->showLinkedObjectBlock();
// End of page
$db->close();
llxFooter('$Date: 2011/07/31 22:21:57 $ - $Revision: 1.19 $');
llxFooter();
?>

View File

@@ -21,7 +21,6 @@
* \file dev/skeletons/skeleton_script.php
* \ingroup mymodule othermodule1 othermodule2
* \brief This file is an example for a command line script
* \version $Id: skeleton_script.php,v 1.28 2011/07/31 22:21:58 eldy Exp $
* \author Put author name here
* \remarks Put here some comments
*/
@@ -37,7 +36,7 @@ if (substr($sapi_type, 0, 3) == 'cgi') {
}
// Global variables
$version='$Revision: 1.28 $';
$version='$Revision: 1.29 $';
$error=0;