96 lines
2.9 KiB
PHP
96 lines
2.9 KiB
PHP
<?php
|
|
/*
|
|
Ryzom Core Web-Based Translation Tool
|
|
Copyright (C) 2011 Piotr Kaczmarek <p.kaczmarek@openlink.pl>
|
|
|
|
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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
?>
|
|
<?php
|
|
class LanguagesController extends AppController {
|
|
|
|
var $name = 'Languages';
|
|
var $layout="new";
|
|
|
|
function index() {
|
|
App::import("Vendor","functions_render");
|
|
$this->Language->recursive = 0;
|
|
$this->set('languages', $this->paginate());
|
|
}
|
|
|
|
function view($id = null) {
|
|
if (!$id) {
|
|
$this->Session->setFlash(__('Invalid language', true));
|
|
$this->redirect(array('action' => 'index'));
|
|
}
|
|
$this->set('language', $this->Language->read(null, $id));
|
|
}
|
|
|
|
function admin_index() {
|
|
$this->Language->recursive = 0;
|
|
$this->set('languages', $this->paginate());
|
|
}
|
|
|
|
function admin_view($id = null) {
|
|
if (!$id) {
|
|
$this->Session->setFlash(__('Invalid language', true));
|
|
$this->redirect(array('action' => 'index'));
|
|
}
|
|
$this->set('language', $this->Language->read(null, $id));
|
|
}
|
|
|
|
function admin_add() {
|
|
if (!empty($this->data)) {
|
|
$this->Language->create();
|
|
if ($this->Language->save($this->data)) {
|
|
$this->Session->setFlash(__('The language has been saved', true));
|
|
$this->redirect(array('action' => 'index'));
|
|
} else {
|
|
$this->Session->setFlash(__('The language could not be saved. Please, try again.', true));
|
|
}
|
|
}
|
|
}
|
|
|
|
function admin_edit($id = null) {
|
|
if (!$id && empty($this->data)) {
|
|
$this->Session->setFlash(__('Invalid language', true));
|
|
$this->redirect(array('action' => 'index'));
|
|
}
|
|
if (!empty($this->data)) {
|
|
if ($this->Language->save($this->data)) {
|
|
$this->Session->setFlash(__('The language has been saved', true));
|
|
$this->redirect(array('action' => 'index'));
|
|
} else {
|
|
$this->Session->setFlash(__('The language could not be saved. Please, try again.', true));
|
|
}
|
|
}
|
|
$this->set('language', $language_data = $this->Language->read(null, $id));
|
|
if (empty($this->data)) {
|
|
$this->data = $language_data;
|
|
}
|
|
}
|
|
|
|
function admin_delete($id = null) {
|
|
if (!$id) {
|
|
$this->Session->setFlash(__('Invalid id for language', true));
|
|
$this->redirect(array('action'=>'index'));
|
|
}
|
|
if ($this->Language->delete($id)) {
|
|
$this->Session->setFlash(__('Language deleted', true));
|
|
$this->redirect(array('action'=>'index'));
|
|
}
|
|
$this->Session->setFlash(__('Language was not deleted', true));
|
|
$this->redirect(array('action' => 'index'));
|
|
}
|
|
}
|