146 lines
5.6 KiB
PHP
146 lines
5.6 KiB
PHP
<?php
|
|
|
|
/**
|
|
* 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; under version 2
|
|
* of the License (non-upgradable).
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* Copyright (c) 2008-2010 (original work) Deutsche Institut für Internationale Pädagogische Forschung (under the project TAO-TRANSFER);
|
|
* 2009-2012 (update and modification) Public Research Centre Henri Tudor (under the project TAO-SUSTAIN & TAO-DEV);
|
|
*
|
|
*/
|
|
|
|
use oat\generis\model\OntologyRdfs;
|
|
use oat\tao\model\TaoOntology;
|
|
|
|
/**
|
|
* Create a form to translate a resource of the ontology
|
|
*
|
|
* @access public
|
|
* @author Bertrand Chevrier, <bertrand.chevrier@tudor.lu>
|
|
* @package tao
|
|
|
|
*/
|
|
class tao_actions_form_Translate extends tao_actions_form_Instance
|
|
{
|
|
// --- ASSOCIATIONS ---
|
|
|
|
|
|
// --- ATTRIBUTES ---
|
|
|
|
// --- OPERATIONS ---
|
|
|
|
/**
|
|
* Initialize the form
|
|
*
|
|
* @access protected
|
|
* @author Bertrand Chevrier, <bertrand.chevrier@tudor.lu>
|
|
* @return mixed
|
|
*/
|
|
protected function initForm()
|
|
{
|
|
|
|
|
|
parent::initForm();
|
|
$this->form->setName('translate_' . $this->form->getName());
|
|
|
|
$actions = tao_helpers_form_FormFactory::getCommonActions('top');
|
|
$this->form->setActions($actions, 'top');
|
|
$this->form->setActions($actions, 'bottom');
|
|
}
|
|
|
|
/**
|
|
* Initialize the form elements
|
|
*
|
|
* @access protected
|
|
* @author Bertrand Chevrier, <bertrand.chevrier@tudor.lu>
|
|
* @return mixed
|
|
*/
|
|
protected function initElements()
|
|
{
|
|
|
|
|
|
parent::initElements();
|
|
|
|
$elements = $this->form->getElements();
|
|
$this->form->setElements([]);
|
|
|
|
|
|
$currentLangElt = tao_helpers_form_FormFactory::getElement('current_lang', 'Textbox');
|
|
$currentLangElt->setDescription(__('Current language'));
|
|
$currentLangElt->setAttributes(['readonly' => 'true']);
|
|
$currentLangElt->setValue(\common_session_SessionManager::getSession()->getDataLanguage()); //API lang /data lang
|
|
$this->form->addElement($currentLangElt);
|
|
|
|
$dataLangElement = tao_helpers_form_FormFactory::getElement('translate_lang', 'Combobox');
|
|
$dataLangElement->setDescription(__('Translate to'));
|
|
$dataLangElement->setOptions(tao_helpers_I18n::getAvailableLangsByUsage(new core_kernel_classes_Resource(tao_models_classes_LanguageService::INSTANCE_LANGUAGE_USAGE_DATA)));
|
|
$dataLangElement->setEmptyOption(__('Select a language'));
|
|
$dataLangElement->addValidator(tao_helpers_form_FormFactory::getValidator('NotEmpty'));
|
|
$this->form->addElement($dataLangElement);
|
|
|
|
$this->form->createGroup('translation_info', __('Translation parameters'), ['current_lang', 'translate_lang']);
|
|
|
|
$dataGroup = [];
|
|
foreach ($elements as $element) {
|
|
if (
|
|
$element instanceof tao_helpers_form_elements_Hidden ||
|
|
$element->getName() == 'uri' || $element->getName() == 'classUri'
|
|
) {
|
|
$this->form->addElement($element);
|
|
} else {
|
|
$propertyUri = tao_helpers_Uri::decode($element->getName());
|
|
$property = new core_kernel_classes_Property($propertyUri);
|
|
|
|
//translate only language dependent properties or Labels
|
|
//supported widget are: Textbox, TextArea, HtmlArea
|
|
//@todo support other widgets
|
|
if (
|
|
( $property->isLgDependent() &&
|
|
($element instanceof tao_helpers_form_elements_Textbox ||
|
|
$element instanceof tao_helpers_form_elements_TextArea ||
|
|
$element instanceof tao_helpers_form_elements_HtmlArea
|
|
) ) ||
|
|
$propertyUri == OntologyRdfs::RDFS_LABEL
|
|
) {
|
|
$translatedElt = clone $element;
|
|
|
|
$viewElt = tao_helpers_form_FormFactory::getElement('view_' . $element->getName(), 'Label');
|
|
$viewElt->setDescription($element->getDescription());
|
|
$viewElt->setValue($element->getValue());
|
|
$viewElt->setAttribute('no-format', true);
|
|
if ($element instanceof tao_helpers_form_elements_HtmlArea) {
|
|
$viewElt->setAttribute('htmlentities', false);
|
|
}
|
|
|
|
$this->form->addElement($viewElt);
|
|
|
|
$dataGroup[] = $viewElt->getName();
|
|
|
|
$translatedElt->setDescription(' ');
|
|
$translatedElt->setValue('');
|
|
if ($propertyUri == OntologyRdfs::RDFS_LABEL) {
|
|
$translatedElt->setForcedValid();
|
|
}
|
|
|
|
$this->form->addElement($translatedElt);
|
|
|
|
$dataGroup[] = $translatedElt->getName();
|
|
}
|
|
}
|
|
}
|
|
|
|
$this->form->createGroup('translation_form', __('Translate'), $dataGroup);
|
|
}
|
|
}
|