58 $this->ilObjOrgUnitGui = $ilObjOrgUnitGUI;
59 $this->ilObjectOrgUnit = $ilObjOrgUnitGUI->object;
62 if (!
$ilAccess->checkAccess(
'write',
'', $this->ilObjectOrgUnit->getRefId())) {
64 $this->ctrl->redirect($this->parent_gui,
"");
71 $cmd = $this->ctrl->getCmd();
78 $this->lng->loadLanguageModule($this->ilObjectOrgUnit->getType());
86 if ($a_get_post_values) {
88 foreach (
$_POST[
"title"] as $k => $v) {
91 "desc" =>
$_POST[
"desc"][$k],
92 "lang" =>
$_POST[
"lang"][$k],
93 "default" => (
$_POST[
"default"] == $k),
96 $table->setData($vals);
98 $data = $this->ilObjectOrgUnit->getTranslations();
100 $data[][
"title"] =
"";
102 $table->setData(
$data);
104 $this->tpl->setContent($table->getHTML());
114 if (!isset(
$_POST[
"default"])) {
121 if (array_key_exists(
"",
$_POST[
"lang"])) {
128 if (count(array_unique(
$_POST[
"lang"])) < count(
$_POST[
"lang"])) {
135 $this->ilObjectOrgUnit->removeTranslations();
136 foreach (
$_POST[
"title"] as $k => $v) {
139 $translations = $this->ilObjectOrgUnit->getTranslations();
141 if(array_key_exists(
$_POST[
"lang"][$k], $translations)) {
142 $this->ilObjectOrgUnit->updateTranslation(
146 (
$_POST[
"default"]==$k)?1:0
149 $this->ilObjectOrgUnit->addTranslation(
153 (
$_POST[
"default"]==$k)?1:0
158 ilUtil::sendSuccess($this->lng->txt(
"msg_obj_modified"),
true);
159 $this->ctrl->redirect($this,
"editTranslations");
169 $k = max(array_keys(
$_POST[
"title"]));
184 foreach (
$_POST[
"title"] as $k => $v) {
185 if (
$_POST[
"check"][$k]) {
187 if ($k !=
$_POST[
"default"]) {
188 unset(
$_POST[
"title"][$k]);
189 unset(
$_POST[
"desc"][$k]);
190 unset(
$_POST[
"lang"][$k]);
saveTranslations()
Save title and translations.
editTranslations($a_get_post_values=false, $a_add=false)
deleteTranslations()
Remove translation.
addTranslation()
Add a translation.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
TableGUI class for title/description translations.
__construct(Container $dic, ilPlugin $plugin)