/code/ryzom/tools/server/www/webtt/app/controllers/translation_files_controller.php
https://bitbucket.org/mattraykowski/ryzomcore_demoshard · PHP · 102 lines · 76 code · 9 blank · 17 comment · 15 complexity · 6339d58126d7581b0e688bed2eca55c7 MD5 · raw file
- <?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 TranslationFilesController extends AppController {
- var $name = 'TranslationFiles';
- function index() {
- $this->TranslationFile->recursive = 0;
- $conditions = null;
- if (isset($this->passedArgs['language_id']) && $language_id = $this->passedArgs['language_id'])
- $conditions = array('TranslationFile.language_id' => $language_id);
- $this->set('translationFiles', $this->paginate($conditions));
- }
- function view($id = null) {
- if (!$id) {
- $this->Session->setFlash(__('Invalid translation file', true));
- $this->redirect(array('action' => 'index'));
- }
- $this->set('translationFile', $this->TranslationFile->read(null, $id));
- }
- function admin_index() {
- $this->TranslationFile->recursive = 0;
- $this->set('translationFiles', $this->paginate());
- }
- function admin_view($id = null) {
- if (!$id) {
- $this->Session->setFlash(__('Invalid translation file', true));
- $this->redirect(array('action' => 'index'));
- }
- $this->set('translationFile', $this->TranslationFile->read(null, $id));
- }
- function admin_add() {
- if (!empty($this->data)) {
- $this->TranslationFile->create();
- if ($this->TranslationFile->save($this->data)) {
- $this->Session->setFlash(__('The translation file has been saved', true));
- $this->redirect(array('action' => 'index'));
- } else {
- $this->Session->setFlash(__('The translation file could not be saved. Please, try again.', true));
- }
- }
- $languages = $this->TranslationFile->Language->find('list');
- $this->set(compact('languages'));
- }
- function admin_edit($id = null) {
- if (!$id && empty($this->data)) {
- $this->Session->setFlash(__('Invalid translation file', true));
- $this->redirect(array('action' => 'index'));
- }
- if (!empty($this->data)) {
- if ($this->TranslationFile->save($this->data)) {
- $this->Session->setFlash(__('The translation file has been saved', true));
- $this->redirect(array('action' => 'index'));
- } else {
- $this->Session->setFlash(__('The translation file could not be saved. Please, try again.', true));
- }
- }
- $this->set('translationFile', $translationFile_data = $this->TranslationFile->read(null, $id));
- if (empty($this->data)) {
- $this->data = $translationFile_data;
- }
- $languages = $this->TranslationFile->Language->find('list');
- $this->set(compact('languages'));
- }
- function admin_delete($id = null) {
- if (!$id) {
- $this->Session->setFlash(__('Invalid id for translation file', true));
- $this->redirect(array('action'=>'index'));
- }
- if ($this->TranslationFile->delete($id)) {
- $this->Session->setFlash(__('Translation file deleted', true));
- $this->redirect(array('action'=>'index'));
- }
- $this->Session->setFlash(__('Translation file was not deleted', true));
- $this->redirect(array('action' => 'index'));
- }
- }