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

View File

@ -19,7 +19,7 @@
/**
* \file htdocs/bookmarks/fiche.php
* \brief Page affichage/creation des bookmarks
* \brief Page display/creation of bookmarks
* \ingroup bookmark
* \version $Id$
*/
@ -130,7 +130,7 @@ $html=new Form($db);
if ($action == 'create')
{
/*
* Fiche bookmark en mode creation
* Fact bookmark creation mode
*/
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"]))
{
/*
* Fiche bookmark en mode visu ou edition
* Fact bookmark mode or visually edition
*/
$bookmark=new Bookmark($db);
$bookmark->fetch($_GET["id"]);

View File

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

View File

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