doxygen
This commit is contained in:
parent
f007be46ff
commit
ebf372d5f8
@ -18,7 +18,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file htdocs/dolgraph.class.php
|
||||
* \file htdocs/core/dolgraph.class.php
|
||||
* \brief Fichier de la classe mere de gestion des graph
|
||||
* \version $Id$
|
||||
* \remarks Usage:
|
||||
|
||||
@ -17,13 +17,13 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
\file core/events.class.php
|
||||
\ingroup core
|
||||
\brief Events class file.
|
||||
\version $Id$
|
||||
\author Laurent Destailleur
|
||||
\remarks An event is when status of an object change.
|
||||
*/
|
||||
* \file htdocs/core/events.class.php
|
||||
* \ingroup core
|
||||
* \brief Events class file.
|
||||
* \version $Id$
|
||||
* \author Laurent Destailleur
|
||||
* \remarks An event is when status of an object change.
|
||||
*/
|
||||
|
||||
// Put here all includes required by your class file
|
||||
//require_once(DOL_DOCUMENT_ROOT."/commonobject.class.php");
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file htdoc/ecm/docdir.php
|
||||
* \file htdocs/ecm/docdir.php
|
||||
* \ingroup ecm
|
||||
* \brief Main page for ECM section area
|
||||
* \version $Id$
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file htdoc/ecm/docfile.php
|
||||
* \file htdocs/ecm/docfile.php
|
||||
* \ingroup ecm
|
||||
* \brief Card of a file for ECM module
|
||||
* \version $Id$
|
||||
|
||||
@ -18,7 +18,7 @@
|
||||
|
||||
|
||||
/**
|
||||
* \file htdoc/ecm/docmine.php
|
||||
* \file htdocs/ecm/docmine.php
|
||||
* \ingroup ecm
|
||||
* \brief Card of a directory for ECM module
|
||||
* \version $Id$
|
||||
|
||||
@ -3,7 +3,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
\file htdoc/ecm/docother.php
|
||||
\file htdocs/ecm/docother.php
|
||||
\ingroup ecm
|
||||
\brief Main ecm page
|
||||
\version $Id$
|
||||
@ -51,12 +51,12 @@ if ( $_POST["sendit"] && $conf->upload != 0)
|
||||
if (is_dir($upload_dir))
|
||||
{
|
||||
$result = dol_move_uploaded_file($_FILES['userfile']['tmp_name'], $upload_dir . "/" . $_FILES['userfile']['name'],0);
|
||||
if ($result == 1)
|
||||
if ($result > 0)
|
||||
{
|
||||
$mesg = '<div class="ok">'.$langs->trans("FileTransferComplete").'</div>';
|
||||
//print_r($_FILES);
|
||||
}
|
||||
else if (!$result)
|
||||
else if ($result < 0)
|
||||
{
|
||||
// Echec transfert (fichier d?passant la limite ?)
|
||||
$mesg = '<div class="error">'.$langs->trans("ErrorFileNotUploaded").'</div>';
|
||||
|
||||
@ -18,11 +18,11 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
\file dev/skeletons/ecm_directories.class.php
|
||||
\ingroup mymodule othermodule1 othermodule2
|
||||
\file htdocs/ecm/ecm_directories.class.php
|
||||
\ingroup ecm
|
||||
\brief This file is an example for a class file
|
||||
\version $Id$
|
||||
\author Put author name here
|
||||
\author Laurent Destailleur
|
||||
\remarks Initialy built by build_class_from_table on 2008-02-24 19:24
|
||||
*/
|
||||
|
||||
@ -465,8 +465,8 @@ class EcmDirectory // extends CommonObject
|
||||
|
||||
|
||||
/**
|
||||
* \brief Reconstruit l'arborescence des catégories sous la forme d'un tableau
|
||||
* Renvoi un tableau de tableau('id','id_mere',...) trié selon
|
||||
* \brief Reconstruit l'arborescence des cat<EFBFBD>gories sous la forme d'un tableau
|
||||
* Renvoi un tableau de tableau('id','id_mere',...) tri<EFBFBD> selon
|
||||
* arbre et avec:
|
||||
* id = id de la categorie
|
||||
* id_mere = id de la categorie mere
|
||||
@ -546,7 +546,7 @@ class EcmDirectory // extends CommonObject
|
||||
return -1;
|
||||
}
|
||||
|
||||
// On ajoute la propriete fullpath a tous les éléments
|
||||
// On ajoute la propriete fullpath a tous les <EFBFBD>l<EFBFBD>ments
|
||||
foreach($this->cats as $key => $val)
|
||||
{
|
||||
if (isset($motherof[$key])) continue;
|
||||
@ -560,7 +560,7 @@ class EcmDirectory // extends CommonObject
|
||||
}
|
||||
|
||||
/**
|
||||
* \brief Calcule les propriétés fullpath et fulllabel d'une categorie
|
||||
* \brief Calcule les propri<EFBFBD>t<EFBFBD>s fullpath et fulllabel d'une categorie
|
||||
* du tableau this->cats et de toutes ces enfants
|
||||
* \param id_categ id_categ entry to update
|
||||
* \param protection Deep counter to avoid infinite loop
|
||||
|
||||
@ -17,16 +17,16 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file htdocs/ecm/htmlecm.form.class.php
|
||||
* \brief Fichier de la classe des fonctions prédéfinie de composants html
|
||||
* \version $Id$
|
||||
* \file htdocs/ecm/htmlecm.form.class.php
|
||||
* \brief Fichier de la classe des fonctions predefinie de composants html
|
||||
* \version $Id$
|
||||
*/
|
||||
require_once(DOL_DOCUMENT_ROOT."/ecm/ecmdirectory.class.php");
|
||||
|
||||
|
||||
/**
|
||||
* \class FormEcm
|
||||
* \brief Classe permettant la génération de composants html
|
||||
* \brief Classe permettant la g<EFBFBD>n<EFBFBD>ration de composants html
|
||||
* \remarks Only common components must be here.
|
||||
*/
|
||||
class FormEcm
|
||||
@ -44,7 +44,7 @@ class FormEcm
|
||||
|
||||
/**
|
||||
* \brief Constructeur
|
||||
* \param DB handler d'accès base de donnée
|
||||
* \param DB handler d'acc<EFBFBD>s base de donn<EFBFBD>e
|
||||
*/
|
||||
function FormEcm($DB)
|
||||
{
|
||||
@ -55,7 +55,7 @@ class FormEcm
|
||||
|
||||
|
||||
/**
|
||||
* \brief Retourne la liste des catégories du type choisi
|
||||
* \brief Retourne la liste des cat<EFBFBD>gories du type choisi
|
||||
* \param selected Id categorie preselectionnee
|
||||
* \param select_name Nom formulaire HTML
|
||||
*/
|
||||
|
||||
@ -17,7 +17,7 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file htdoc/ecm/index.php
|
||||
* \file htdocs/ecm/index.php
|
||||
* \ingroup ecm
|
||||
* \brief Main page for ECM section area
|
||||
* \version $Id$
|
||||
@ -295,7 +295,7 @@ if (empty($action) || $action == 'file_manager' || eregi('refresh',$action) || $
|
||||
print '<br>';
|
||||
}
|
||||
|
||||
// Construit liste des répertoires
|
||||
// Construit liste des r<EFBFBD>pertoires
|
||||
print '<table width="100%" class="nobordernopadding">';
|
||||
|
||||
print '<tr class="liste_titre">';
|
||||
|
||||
@ -3,12 +3,12 @@
|
||||
*/
|
||||
|
||||
/**
|
||||
\file htdoc/ecm/earch.php
|
||||
\ingroup ecm
|
||||
\brief Page for search results
|
||||
\version $Id$
|
||||
\author Laurent Destailleur
|
||||
*/
|
||||
* \file htdocs/ecm/search.php
|
||||
* \ingroup ecm
|
||||
* \brief Page for search results
|
||||
* \version $Id$
|
||||
* \author Laurent Destailleur
|
||||
*/
|
||||
|
||||
require("./pre.inc.php");
|
||||
require_once(DOL_DOCUMENT_ROOT."/html.formfile.class.php");
|
||||
|
||||
Loading…
Reference in New Issue
Block a user