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 . */ ?> 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')); } }