Nouveaux fichier
This commit is contained in:
parent
3646a085fb
commit
e274ee7748
154
htdocs/boutique/auteur/auteur.class.php
Normal file
154
htdocs/boutique/auteur/auteur.class.php
Normal file
@ -0,0 +1,154 @@
|
|||||||
|
<?PHP
|
||||||
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* $Id$
|
||||||
|
* $Source$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
class Auteur {
|
||||||
|
var $db ;
|
||||||
|
|
||||||
|
var $id ;
|
||||||
|
var $nom;
|
||||||
|
|
||||||
|
Function Auteur($DB, $id=0) {
|
||||||
|
$this->db = $DB;
|
||||||
|
$this->id = $id ;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
Function create($user) {
|
||||||
|
|
||||||
|
$sql = "INSERT INTO llx_auteur (fk_user_author) VALUES (".$user->id.")";
|
||||||
|
|
||||||
|
if ($this->db->query($sql) )
|
||||||
|
{
|
||||||
|
$id = $this->db->last_insert_id();
|
||||||
|
|
||||||
|
if ( $this->update($id, $user) )
|
||||||
|
{
|
||||||
|
return $id;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
Function liste_array ()
|
||||||
|
{
|
||||||
|
$ga = array();
|
||||||
|
|
||||||
|
$sql = "SELECT rowid, nom FROM llx_auteur ORDER BY nom";
|
||||||
|
|
||||||
|
if ($this->db->query($sql) )
|
||||||
|
{
|
||||||
|
$nump = $this->db->num_rows();
|
||||||
|
|
||||||
|
if ($nump)
|
||||||
|
{
|
||||||
|
$i = 0;
|
||||||
|
while ($i < $nump)
|
||||||
|
{
|
||||||
|
$obj = $this->db->fetch_object($i);
|
||||||
|
|
||||||
|
$ga[$obj->rowid] = $obj->nom;
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return $ga;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print $this->db->error();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
Function update($id, $user)
|
||||||
|
{
|
||||||
|
|
||||||
|
$sql = "UPDATE llx_auteur ";
|
||||||
|
$sql .= " SET nom = '" . trim($this->nom) ."'";
|
||||||
|
|
||||||
|
$sql .= " WHERE rowid = " . $id;
|
||||||
|
|
||||||
|
if ( $this->db->query($sql) ) {
|
||||||
|
return 1;
|
||||||
|
} else {
|
||||||
|
print $this->db->error() . ' in ' . $sql;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
Function fetch ($id) {
|
||||||
|
|
||||||
|
$sql = "SELECT rowid, nom FROM llx_auteur WHERE rowid = $id";
|
||||||
|
|
||||||
|
$result = $this->db->query($sql) ;
|
||||||
|
|
||||||
|
if ( $result )
|
||||||
|
{
|
||||||
|
$result = $this->db->fetch_array();
|
||||||
|
|
||||||
|
$this->id = $result["rowid"];
|
||||||
|
$this->nom = stripslashes($result["nom"]);
|
||||||
|
|
||||||
|
$this->db->free();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print $this->db->error();
|
||||||
|
}
|
||||||
|
|
||||||
|
return $result;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
Function delete($user) {
|
||||||
|
|
||||||
|
$sql = "DELETE FROM ".DB_NAME_OSC.".products WHERE products_id = $idosc ";
|
||||||
|
|
||||||
|
$sql = "DELETE FROM ".DB_NAME_OSC.".products_to_categories WHERE products_id = $idosc";
|
||||||
|
|
||||||
|
$sql = "DELETE FROM ".DB_NAME_OSC.".products_description WHERE products_id = $idosc";
|
||||||
|
|
||||||
|
$sql = "DELETE FROM llx_livre WHERE rowid = $id";
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
?>
|
||||||
153
htdocs/boutique/auteur/fiche.php
Normal file
153
htdocs/boutique/auteur/fiche.php
Normal file
@ -0,0 +1,153 @@
|
|||||||
|
<?PHP
|
||||||
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* $Id$
|
||||||
|
* $Source$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
require("./pre.inc.php");
|
||||||
|
|
||||||
|
llxHeader();
|
||||||
|
|
||||||
|
$db = new Db();
|
||||||
|
|
||||||
|
if ($action == 'add') {
|
||||||
|
$auteur = new Auteur($db);
|
||||||
|
|
||||||
|
$auteur->nom = $nom;
|
||||||
|
|
||||||
|
$id = $auteur->create($user);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($action == 'addga') {
|
||||||
|
$auteur = new Auteur($db);
|
||||||
|
|
||||||
|
$auteur->linkga($id, $ga);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if ($action == 'update' && !$cancel) {
|
||||||
|
$auteur = new Auteur($db);
|
||||||
|
|
||||||
|
$auteur->nom = $nom;
|
||||||
|
|
||||||
|
$auteur->update($id, $user);
|
||||||
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
if ($action == 'create')
|
||||||
|
{
|
||||||
|
|
||||||
|
print "<form action=\"$PHP_SELF?id=$id\" method=\"post\">\n";
|
||||||
|
print '<input type="hidden" name="action" value="add">';
|
||||||
|
|
||||||
|
print '<div class="titre">Nouvel Auteur</div><br>';
|
||||||
|
|
||||||
|
print '<table border="1" width="100%" cellspacing="0" cellpadding="4">';
|
||||||
|
print "<tr>";
|
||||||
|
print '<td>Nom</td><td><input name="nom" size="40" value=""></td></tr>';
|
||||||
|
print '<tr><td> </td><td><input type="submit" value="Créer"></td></tr>';
|
||||||
|
print '</table>';
|
||||||
|
print '</form>';
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if ($id)
|
||||||
|
{
|
||||||
|
|
||||||
|
$auteur = new Auteur($db);
|
||||||
|
$result = $auteur->fetch($id);
|
||||||
|
|
||||||
|
if ( $result )
|
||||||
|
{
|
||||||
|
if ($action == 'edit')
|
||||||
|
{
|
||||||
|
print '<div class="titre">Edition de la fiche Auteur : '.$auteur->nom.'</div><br>';
|
||||||
|
|
||||||
|
print "<form action=\"$PHP_SELF?id=$id\" method=\"post\">\n";
|
||||||
|
print '<input type="hidden" name="action" value="update">';
|
||||||
|
|
||||||
|
print '<table border="1" width="100%" cellspacing="0" cellpadding="4">';
|
||||||
|
print "<tr>";
|
||||||
|
print '<td width="20%">Nom</td><td><input name="nom" size="40" value="'.$auteur->nom.'"></td>';
|
||||||
|
|
||||||
|
|
||||||
|
print '<tr><td colspan="2" align="center"><input type="submit" value="Enregistrer"> <input type="submit" value="Annuler" name="cancel"></td></tr>';
|
||||||
|
|
||||||
|
print '</form>';
|
||||||
|
|
||||||
|
print '</table><hr>';
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
print '<div class="titre">Fiche Auteur : '.$auteur->nom.'</div><br>';
|
||||||
|
|
||||||
|
print '<table border="1" width="100%" cellspacing="0" cellpadding="4">';
|
||||||
|
print "<tr>";
|
||||||
|
print '<td width="20%">Nom</td><td width="30%">'.$auteur->nom.'</td></tr>';
|
||||||
|
print "</table>";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print "Fetch failed";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print "Error";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ************************************************************************** */
|
||||||
|
/* */
|
||||||
|
/* Barre d'action */
|
||||||
|
/* */
|
||||||
|
/* ************************************************************************** */
|
||||||
|
|
||||||
|
print '<br><table width="100%" border="1" cellspacing="0" cellpadding="3">';
|
||||||
|
print '<td width="20%" align="center">-</td>';
|
||||||
|
print '<td width="20%" align="center">-</td>';
|
||||||
|
print '<td width="20%" align="center">-</td>';
|
||||||
|
|
||||||
|
if ($action == 'create')
|
||||||
|
{
|
||||||
|
print '<td width="20%" align="center">-</td>';
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print '<td width="20%" align="center">[<a href="fiche.php?action=edit&id='.$id.'">Editer</a>]</td>';
|
||||||
|
}
|
||||||
|
print '<td width="20%" align="center">-</td>';
|
||||||
|
print '</table><br>';
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
$db->close();
|
||||||
|
|
||||||
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||||||
|
?>
|
||||||
75
htdocs/boutique/auteur/index.php
Normal file
75
htdocs/boutique/auteur/index.php
Normal file
@ -0,0 +1,75 @@
|
|||||||
|
<?PHP
|
||||||
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* $Id$
|
||||||
|
* $Source$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
require("./pre.inc.php");
|
||||||
|
|
||||||
|
llxHeader();
|
||||||
|
|
||||||
|
$db = new Db();
|
||||||
|
if ($sortfield == "") {
|
||||||
|
$sortfield="lower(e.nom)";
|
||||||
|
}
|
||||||
|
if ($sortorder == "") {
|
||||||
|
$sortorder="ASC";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
if ($page == -1) { $page = 0 ; }
|
||||||
|
$limit = $conf->liste_limit;
|
||||||
|
$offset = $limit * $page ;
|
||||||
|
|
||||||
|
print_barre_liste("Liste des Auteurs", $page, $PHP_SELF);
|
||||||
|
|
||||||
|
$sql = "SELECT e.rowid, e.nom FROM llx_auteur as e";
|
||||||
|
|
||||||
|
$sql .= " ORDER BY $sortfield $sortorder ";
|
||||||
|
$sql .= $db->plimit( $limit ,$offset);
|
||||||
|
|
||||||
|
if ( $db->query($sql) ) {
|
||||||
|
$num = $db->num_rows();
|
||||||
|
$i = 0;
|
||||||
|
print "<p><TABLE border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"4\">";
|
||||||
|
print "<TR class=\"liste_titre\"><td>";
|
||||||
|
print_liste_field_titre("Nom",$PHP_SELF, "e.nom");
|
||||||
|
print "</td>";
|
||||||
|
print "</TR>\n";
|
||||||
|
$var=True;
|
||||||
|
while ($i < $num) {
|
||||||
|
$objp = $db->fetch_object( $i);
|
||||||
|
$var=!$var;
|
||||||
|
print "<TR $bc[$var]>";
|
||||||
|
print "<TD width='70%'><a href=\"fiche.php?id=$objp->rowid\">$objp->nom</a></TD>\n";
|
||||||
|
print "</TR>\n";
|
||||||
|
$i++;
|
||||||
|
}
|
||||||
|
print "</TABLE>";
|
||||||
|
$db->free();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
print $db->error();
|
||||||
|
}
|
||||||
|
|
||||||
|
$db->close();
|
||||||
|
|
||||||
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||||||
|
?>
|
||||||
58
htdocs/boutique/auteur/pre.inc.php
Normal file
58
htdocs/boutique/auteur/pre.inc.php
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
<?PHP
|
||||||
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
|
*
|
||||||
|
* This program is free software; you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
* the Free Software Foundation; either version 2 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
||||||
|
*
|
||||||
|
* $Id$
|
||||||
|
* $Source$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
require("../../main.inc.php3");
|
||||||
|
require("../livre/livre.class.php");
|
||||||
|
require("./auteur.class.php");
|
||||||
|
|
||||||
|
function llxHeader($head = "", $urlp = "") {
|
||||||
|
global $user, $conf;
|
||||||
|
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
top_menu($head);
|
||||||
|
|
||||||
|
$menu = new Menu();
|
||||||
|
|
||||||
|
$menu->add("/boutique/livre/", "Livres");
|
||||||
|
|
||||||
|
$menu->add_submenu("/boutique/livre/fiche.php?&action=create","Nouvel ouvrage");
|
||||||
|
|
||||||
|
$menu->add("/boutique/auteur/", "Auteur");
|
||||||
|
|
||||||
|
$menu->add_submenu("/boutique/auteur/fiche.php?&action=create","Nouvel auteur");
|
||||||
|
|
||||||
|
$menu->add("/boutique/editeur/", "Editeurs");
|
||||||
|
|
||||||
|
$menu->add_submenu("/boutique/editeur/fiche.php?&action=create","Nouvel éditeur");
|
||||||
|
|
||||||
|
$menu->add("/product/categorie/", "Catégories");
|
||||||
|
|
||||||
|
left_menu($menu->liste);
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
}
|
||||||
|
?>
|
||||||
Loading…
Reference in New Issue
Block a user