<?php
/** SMS - Selling Made Simple
* Copyright 2007 by Kevin Grandon (hide@address.com)
* This project's homepage is: http://sellingmadesimple.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
**/
class CountriesController extends AppController {
var $name = 'Countries';
var $components = array('RequestHandler');
var $paginate = array();
function admin_edit ($country_id = null)
{
// If they pressed cancel
if(isset($this->params['form']['cancel']))
{
$this->redirect('/countries/admin/');
die();
}
if(empty($this->data))
{
$this->Country->id = $country_id;
$this->set('data', $this->Country->read());
}
else
{
$this->Country->save($this->data);
if($country_id == null)
$this->Session->setFlash(__('record_created', true));
else
$this->Session->setFlash(__('record_saved', true));
$this->redirect('/countries/admin/');
die();
}
$this->render('','admin');
}
function admin_modify_selected()
{
$build_flash = "";
foreach($this->params['data']['Country']['modify'] AS $value)
{
// Make sure the id is valid
if($value > 0)
{
$this->Country->id = $value;
$country = $this->Country->read();
switch ($this->params['form']['multiaction'])
{
case "delete":
$this->Country->del($value);
$build_flash .= __('record_deleted', true) . ': ' . $country['Country']['name'] . '<br />';
break;
}
}
}
$this->Session->setFlash($build_flash);
$this->redirect('/countries/admin/');
}
function admin_delete ($country_id)
{
$this->Country->del($country_id);
$this->Session->setFlash( __('record_deleted', true));
$this->redirect('/countries/admin');
}
function admin_new ()
{
$this->redirect('/countries/admin_edit/');
}
function admin($ajax_request = false)
{
$this->paginate['Model'] = array('limit' => 25, 'order' => 'Country.name ASC');
$data = $this->paginate('Country');
$this->set(compact('data'));
if($ajax_request == true)
$this->render('','ajax');
else
$this->render('','admin');
}
}
?>