2012-06-13 13:49:10 -04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* meta
|
|
|
|
*
|
|
|
|
* Hierarchial data tool
|
|
|
|
*
|
|
|
|
* @package meta
|
|
|
|
* @author Timothy J. Warren
|
|
|
|
* @copyright Copyright (c) 2012
|
|
|
|
* @link https://github.com/aviat4ion/meta
|
|
|
|
* @license http://philsturgeon.co.uk/code/dbad-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Genre controller
|
|
|
|
*
|
|
|
|
* @package meta
|
|
|
|
*/
|
2015-06-04 15:46:30 -04:00
|
|
|
class genre extends \miniMVC\Controller {
|
2012-06-13 13:49:10 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Default controller method
|
|
|
|
*/
|
2015-06-04 14:30:42 -04:00
|
|
|
public function index()
|
2012-06-13 13:49:10 -04:00
|
|
|
{
|
2015-06-04 14:30:42 -04:00
|
|
|
$data = array();
|
|
|
|
$data['genres'] = $this->data_model->get_genres();
|
2012-09-05 11:46:51 -04:00
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
$this->render('genres', $data);
|
2012-09-05 11:46:51 -04:00
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
return;
|
2012-06-13 13:49:10 -04:00
|
|
|
}
|
2015-06-04 15:46:30 -04:00
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-06-13 13:49:10 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Adds a new genre
|
|
|
|
*/
|
|
|
|
public function add()
|
|
|
|
{
|
|
|
|
// Strip away tags for the sake of security
|
|
|
|
$name = strip_tags($_POST['genre']);
|
|
|
|
|
|
|
|
// Make sure the name doesn't already exist. If it does, show an error.
|
2012-09-12 10:36:43 -04:00
|
|
|
$res = $this->data_model->add_genre($name);
|
2012-06-13 13:49:10 -04:00
|
|
|
|
|
|
|
if ($res === TRUE)
|
|
|
|
{
|
|
|
|
$this->page->set_message('success', 'Added new genre');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->page->set_message('error', 'Genre already exists');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Render the basic page
|
|
|
|
$this->index();
|
|
|
|
}
|
2015-06-04 15:46:30 -04:00
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-06-13 13:49:10 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the categories / editing options for a genre
|
|
|
|
*
|
|
|
|
* @param int
|
|
|
|
*/
|
2015-06-04 14:30:42 -04:00
|
|
|
public function detail($id = 0)
|
2012-06-13 13:49:10 -04:00
|
|
|
{
|
2015-06-04 14:30:42 -04:00
|
|
|
if ($id === 0)
|
|
|
|
{
|
|
|
|
// Re-route to detail page if the last segment
|
|
|
|
// is a valid integer
|
|
|
|
$id = (int) miniMVC\get_last_segment();
|
|
|
|
}
|
2015-06-04 15:46:30 -04:00
|
|
|
|
2012-09-12 10:36:43 -04:00
|
|
|
$genre = $this->data_model->get_genre_by_id($id);
|
|
|
|
$categories = $this->data_model->get_categories($id);
|
2012-06-13 13:49:10 -04:00
|
|
|
|
|
|
|
$data = array(
|
|
|
|
'genre' => $genre,
|
|
|
|
'categories' => $categories,
|
|
|
|
'genre_id' => $id
|
|
|
|
);
|
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
$this->render('genre_detail', $data);
|
2012-06-13 13:49:10 -04:00
|
|
|
}
|
2015-06-04 15:46:30 -04:00
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
// --------------------------------------------------------------------------
|
2012-09-05 11:46:51 -04:00
|
|
|
|
2012-09-10 11:45:39 -04:00
|
|
|
/**
|
|
|
|
* Adds a category to the current genre
|
|
|
|
*/
|
2012-09-05 11:46:51 -04:00
|
|
|
public function add_category()
|
|
|
|
{
|
|
|
|
// Strip away tags for the sake of security
|
|
|
|
$name = strip_tags($_POST['category']);
|
|
|
|
$id = (int) $_POST['genre_id'];
|
|
|
|
|
|
|
|
// Make sure the name doesn't already exist. If it does, show an error.
|
2012-09-12 10:36:43 -04:00
|
|
|
$res = $this->data_model->add_category($name, $id);
|
2012-09-05 11:46:51 -04:00
|
|
|
|
|
|
|
if ($res === TRUE)
|
|
|
|
{
|
|
|
|
$this->page->set_message('success', 'Added new category');
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$this->page->set_message('error', 'Category already exists for this genre');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->detail($id);
|
|
|
|
}
|
2015-06-04 15:46:30 -04:00
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display an outline of the data for a table of contents
|
|
|
|
*/
|
|
|
|
public function outline()
|
|
|
|
{
|
|
|
|
$outline_data = $this->data_model->get_outline_data();
|
|
|
|
$this->render('outline', array('outline' => $outline_data));
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a message for ajax insertion
|
|
|
|
*/
|
|
|
|
public function message()
|
|
|
|
{
|
|
|
|
$type = strip_tags($_GET['type']);
|
|
|
|
$message = $_GET['message'];
|
|
|
|
|
|
|
|
$this->page->set_output(
|
|
|
|
$this->page->set_message($type, $message, TRUE)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
public function delete()
|
|
|
|
{
|
|
|
|
$type = strip_tags($_POST['type']);
|
2015-06-04 15:46:30 -04:00
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
$valid_types = ['genre', 'category', 'section', 'data'];
|
2015-06-04 15:46:30 -04:00
|
|
|
|
|
|
|
$res = (in_array($type, $valid_types))
|
2015-06-04 14:30:42 -04:00
|
|
|
? $this->data_model->delete($type, (int) $_POST['id'])
|
|
|
|
: 0;
|
|
|
|
|
|
|
|
exit(mb_trim($res));
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
public function edit()
|
|
|
|
{
|
|
|
|
$type = strip_tags($_GET['type']);
|
|
|
|
$id = (int) $_GET['id'];
|
|
|
|
|
|
|
|
if ($this->data_model->is_valid_type($type))
|
|
|
|
{
|
|
|
|
$data = call_user_func(array($this->data_model, "get_{$type}_by_id"), $id);
|
|
|
|
|
|
|
|
$form_array = array(
|
|
|
|
'name' => is_array($data) ? $data['key'] : "",
|
|
|
|
'val' => is_array($data) ? $data['value'] : $data,
|
|
|
|
'type' => $type,
|
|
|
|
'id' => $id
|
|
|
|
);
|
|
|
|
|
|
|
|
exit($this->load_view('edit_form', $form_array, TRUE));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------------------------------------
|
|
|
|
|
|
|
|
public function update()
|
|
|
|
{
|
|
|
|
$id = (int) $_POST['id'];
|
|
|
|
$type = strip_tags($_POST['type']);
|
|
|
|
$name = strip_tags($_POST['name']);
|
|
|
|
$val = (isset($_POST['val'])) ? $_POST['val'] : NULL;
|
2015-06-04 15:46:30 -04:00
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
if ($this->data_model->is_valid_type($type))
|
|
|
|
{
|
|
|
|
if ($type != 'data')
|
|
|
|
{
|
|
|
|
$res = $this->data_model->update($type, $id, $name);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$res = $this->data_model->update_data($id, $name, $val);
|
|
|
|
}
|
2015-06-04 15:46:30 -04:00
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
$res = (int) $res;
|
2015-06-04 15:46:30 -04:00
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
exit(mb_trim($res));
|
|
|
|
}
|
2015-06-04 15:46:30 -04:00
|
|
|
|
2015-06-04 14:30:42 -04:00
|
|
|
exit(0);
|
|
|
|
}
|
2012-06-13 13:49:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// End of genre.php
|