lang: english comments only

This commit is contained in:
r2gnl 2010-02-18 14:03:48 +00:00
parent 089fc33c61
commit e6849ae6ff
4 changed files with 14 additions and 14 deletions

View File

@ -19,14 +19,14 @@
/** /**
\file htdocs/bookmarks/bookmark.class.php \file htdocs/bookmarks/bookmark.class.php
\ingroup bookmark \ingroup bookmark
\brief Fichier de la classe des bookmark \brief File the bookmark class
\version $Id$ \version $Id$
*/ */
/** /**
\class Bookmark \class Bookmark
\brief Classe permettant la gestion des bookmarks \brief Class for managing bookmarks
*/ */
class Bookmark class Bookmark
@ -43,9 +43,9 @@ class Bookmark
/** /**
* \brief Constructeur * \brief Manufacturer
* \param db Handler d'acc<EFBFBD>s base de donn<EFBFBD>es * \param db Handler for Database Access
* \param id Id du bookmark * \param id Bookmark Id
*/ */
function Bookmark($db, $id=-1) function Bookmark($db, $id=-1)
{ {
@ -54,8 +54,8 @@ class Bookmark
} }
/** /**
* \brief Charge le bookmark * \brief Directs the bookmark
* \param id Id du bookmark <EFBFBD> charger * \param id Bookmark Id Loader
*/ */
function fetch($id) function fetch($id)
{ {
@ -173,8 +173,8 @@ class Bookmark
} }
/** /**
* \brief Supprime le bookmark * \brief Removes the bookmark
* \param id Id bookmark <EFBFBD> supprimer * \param id Id removed bookmark
* \return int <0 si ko, >0 si ok * \return int <0 si ko, >0 si ok
*/ */
function remove($id) function remove($id)

View File

@ -19,7 +19,7 @@
/** /**
* \file htdocs/bookmarks/fiche.php * \file htdocs/bookmarks/fiche.php
* \brief Page affichage/creation des bookmarks * \brief Page display/creation of bookmarks
* \ingroup bookmark * \ingroup bookmark
* \version $Id$ * \version $Id$
*/ */
@ -130,7 +130,7 @@ $html=new Form($db);
if ($action == 'create') if ($action == 'create')
{ {
/* /*
* Fiche bookmark en mode creation * Fact bookmark creation mode
*/ */
print '<form action="fiche.php" method="post" enctype="multipart/form-data">'."\n"; print '<form action="fiche.php" method="post" enctype="multipart/form-data">'."\n";
@ -170,7 +170,7 @@ if ($action == 'create')
if ($_GET["id"] > 0 && ! preg_match('/^add/i',$_GET["action"])) if ($_GET["id"] > 0 && ! preg_match('/^add/i',$_GET["action"]))
{ {
/* /*
* Fiche bookmark en mode visu ou edition * Fact bookmark mode or visually edition
*/ */
$bookmark=new Bookmark($db); $bookmark=new Bookmark($db);
$bookmark->fetch($_GET["id"]); $bookmark->fetch($_GET["id"]);

View File

@ -18,7 +18,7 @@
/** /**
* \file htdocs/bookmarks/liste.php * \file htdocs/bookmarks/liste.php
* \brief Page affichage des bookmarks * \brief Page display bookmarks
* \ingroup bookmark * \ingroup bookmark
* \version $Id$ * \version $Id$
*/ */

View File

@ -19,7 +19,7 @@
/** /**
\file htdocs/bookmarks/pre.inc.php \file htdocs/bookmarks/pre.inc.php
\ingroup bookmark \ingroup bookmark
\brief Fichier de gestion du menu gauche des bookmarks \brief File Management menu left bookmarks
\version $Id$ \version $Id$
*/ */