<?php /** * @author evilnapsis * @brief Eliminar editoriales **/ $category = EditorialData::getById($_GET["id"]); $category->del(); Core::redir("./index.php?view=editorials");
<?php if (count($_POST) > 0) { $user = EditorialData::getById($_POST["user_id"]); $user->name = $_POST["name"]; $user->update(); print "<script>window.location='index.php?view=editorials';</script>"; }
<?php if (count($_POST) > 0) { $user = new EditorialData(); $user->name = $_POST["name"]; $user->add(); print "<script>window.location='index.php?view=editorials';</script>"; }
public function getEditorial() { return $this->editorial_id != null ? EditorialData::getById($this->editorial_id) : null; }
<?php $categories = CategoryData::getAll(); $authors = AuthorData::getAll(); $editorials = EditorialData::getAll(); ?> <div class="row"> <div class="col-md-12"> <h1>Nuevo Libro</h1> <form class="form-horizontal" role="form" method="post" action="./?action=addbook" id="addbook"> <div class="form-group"> <label for="inputEmail1" class="col-lg-2 control-label">ISBN</label> <div class="col-lg-10"> <input type="text" name="isbn" class="form-control" id="inputEmail1" placeholder="ISBN"> </div> </div> <div class="form-group"> <label for="inputEmail1" class="col-lg-2 control-label">Titulo</label> <div class="col-lg-10"> <input type="text" name="title" required class="form-control" id="inputEmail1" placeholder="Titulo"> </div> </div> <div class="form-group"> <label for="inputEmail1" class="col-lg-2 control-label">Subtitulo</label> <div class="col-lg-10"> <input type="text" name="subtitle" class="form-control" id="inputEmail1" placeholder="Subtitulo"> </div> </div> <div class="form-group"> <label for="inputEmail1" class="col-lg-2 control-label">Descripcion</label>
<?php $user = EditorialData::getById($_GET["id"]); ?> <div class="row"> <div class="col-md-12"> <h1>Editar Editorial</h1> <br> <form class="form-horizontal" method="post" id="addproduct" action="index.php?action=updateeditorial" role="form"> <div class="form-group"> <label for="inputEmail1" class="col-lg-2 control-label">Nombre*</label> <div class="col-md-6"> <input type="text" name="name" value="<?php echo $user->name; ?> " class="form-control" id="name" placeholder="Nombre"> </div> </div> <div class="form-group"> <div class="col-lg-offset-2 col-lg-10"> <input type="hidden" name="user_id" value="<?php echo $user->id; ?> "> <button type="submit" class="btn btn-success">Actualizar Editorial</button> </div> </div> </form>
<div class="row"> <div class="col-md-12"> <div class="btn-group pull-right"> <a href="index.php?view=neweditorial" class="btn btn-default"><i class='fa fa-th-list'></i> Nueva Editorial</a> </div> <h1>Editoriales</h1> <br> <?php $users = EditorialData::getAll(); if (count($users) > 0) { // si hay usuarios ?> <table class="table table-bordered table-hover"> <thead> <th>Nombre</th> <th></th> </thead> <?php foreach ($users as $user) { ?> <tr> <td><?php echo $user->name; ?> </td> <td style="width:130px;"><a href="index.php?view=editeditorial&id=<?php echo $user->id; ?> " class="btn btn-warning btn-xs">Editar</a> <a href="index.php?action=deleditorial&id=<?php echo $user->id;