1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
|
<?php
/*
This code is part of FusionDirectory (http://www.fusiondirectory.org/)
Copyright (C) 2003-2010 Cajus Pollmeier
Copyright (C) 2011-2013 FusionDirectory
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 2 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, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
*/
/*!
* \file class_tabs.inc
* Source code for class tabs
*/
/*!
* \brief This class contains all function to manage tabs classes
*/
class tabs
{
var $dn;
var $config;
var $acl;
var $is_template;
var $is_new = FALSE;
var $last = "";
var $current = "";
var $disabled = "";
var $by_name = array();
var $by_object = array();
var $SubDialog = FALSE;
var $acl_category;
var $parent = NULL; // A parent object if available, e.g. a management class.
var $read_only = FALSE; // Used when the entry is opened as "readonly" due to locks.
var $baseclass = "";
/*!
* \brief Tabs classes constructor
*
* \param string $config
*
* \param string $data
*
* \param string $dn The DN
*
* \param string $acl_category
*
* \param Object $attrs_object An object to copy values from
*/
function __construct(&$config, $data, $dn, $acl_category = "", $attrs_object = NULL)
{
/* Save dn */
$this->dn = $dn;
$this->config = &$config;
if (!count($data)) {
$data[] = array("CLASS" => 'plugin',"NAME" => 'Error');
msg_dialog::display(_("Error"),
sprintf(_("No plugin definitions found to initialize '%s', please check your configuration file."), get_class($this)),
"ERROR_DIALOG");
}
$baseobject = NULL;
$this->acl_category = $acl_category;
foreach ($data as &$tab) {
if (!plugin_available($tab['CLASS'])) {
continue;
}
$this->by_name[$tab['CLASS']] = $tab['NAME'];
if ($baseobject === NULL) {
$baseobject = new $tab['CLASS']($this->config, $this->dn, $attrs_object);
$baseobject->enable_CSN_check();
$this->by_object[$tab['CLASS']] = $baseobject;
$this->baseclass = $tab['CLASS'];
} else {
$this->by_object[$tab['CLASS']] = new $tab['CLASS']($this->config, $this->dn, $baseobject);
}
$this->read_only |= $this->by_object[$tab['CLASS']]->read_only;
$this->by_object[$tab['CLASS']]->parent = &$this;
$this->by_object[$tab['CLASS']]->set_acl_category($this->acl_category);
}
unset($tab);
/* Initialize current */
$this->current = $this->baseclass;
}
/*!
* \brief Reinitializes the tab classes with fresh ldap values.
*
* This maybe usefull if for example the apply button was pressed.
*/
function re_init()
{
$baseobject = NULL;
foreach ($this->by_object as $name => $object) {
$class = get_class($object);
if (in_array($class, array("reference","acl"))) {
continue;
}
if ($baseobject === NULL) {
$baseobject = new $class($this->config, $this->dn);
$baseobject->enable_CSN_check();
$this->by_object[$name] = $baseobject;
} else {
$this->by_object[$name] = new $class($this->config, $this->dn, $baseobject);
}
$this->by_object[$name]->parent = &$this;
$this->by_object[$name]->set_acl_category($this->acl_category);
}
}
function resetCopyInfos()
{
$this->dn = 'new';
foreach ($this->by_object as &$obj) {
$obj->resetCopyInfos();
}
unset($obj);
}
function resetBase()
{
$baseobject = $this->getBaseObject();
if (isset($baseobject->base)) {
@DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $baseobject->base, 'Fixing base');
if (session::global_is_set('CurrentMainBase')) {
$baseobject->base = dn2base('cn=dummy,'.session::global_get('CurrentMainBase'));
} else {
$baseobject->base = dn2base(get_userinfo()->dn);
}
if (is_object($baseobject->baseSelector)) { // For some plugins not yet migrated to simple plugin.
$baseobject->baseSelector->setBase($baseobject->base);
}
@DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $baseobject->base, 'Fixed base');
} else {
@DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, '', 'no base');
}
}
function getBaseObject()
{
return $this->by_object[$this->baseclass];
}
/*!
* \brief Save the tab(s) contents
*/
function execute()
{
/* Look for pressed tab button first */
foreach ($this->by_object as $class => &$obj) {
if (isset($_POST[$class]) || (isset($_POST['arg']) && $_POST['arg'] == "$class")) {
$this->current = $class;
break;
}
}
unset($obj);
/* Show object */
$display = '<div class="tab_content">'."\n";
$display .= $this->by_object[$this->current]->execute();
$modal_dialog = $this->by_object[$this->current]->is_modal_dialog();
/* Build tab line */
$tabs = $this->gen_tabs($modal_dialog);
/* Footer for tabbed dialog */
$display = $tabs.$display.'</div>';
return $display;
}
/*!
* \brief Save a tabs object
*
* \param boolean $save_current false
*/
function save_object()
{
/* Ensure that the currently selected tab is valid. */
if (!isset($this->by_name[$this->current])) {
$this->current = key($this->by_name);
}
/* Rotate current to last */
$this->last = $this->current;
/* Save last tab */
if ($this->last != "") {
@DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $this->last, "Saving");
$this->by_object[$this->last]->save_object();
}
}
/*!
* \brief Generate the tab classes
*
* \param boolean $disabled false
*/
function gen_tabs($disabled = FALSE)
{
$display = "";
if (!$disabled) {
$display .= '<input type="hidden" name="arg" value=""/>';
}
$display .= '<table class="tabs_header"><tbody><tr>';
$index = 0;
$style = array("tab_left", "tab_active", "tab_near_active", "tab_right");
foreach ($this->by_name as $class => $name) {
/* Activate right tabs with style "tab_right"
Activate near current with style "tab_near_active" */
if ($index == 2 || $index == 1) {
$index++;
}
/* Activate current tab with style "tab_active " */
if ($class == $this->current) {
$index++;
}
/* Paint tab */
$display .= '<td>';
/* Shorten string if its too long for the tab headers*/
$title = _($name);
if (mb_strlen($title, 'UTF-8') > 28) {
$title = mb_substr($title, 0, 25, 'UTF-8')."...";
}
/* nobr causes w3c warnings so we use to keep the tab name in one line */
$title = str_replace(" ", " ", $title);
/* Take care about notifications */
$obj = $this->by_object[$class];
if ($this->by_object[$class]->pl_notify && ($obj->is_account || $obj->ignore_account)) {
$notify = " tab_notify";
} else {
$notify = "";
}
if ($disabled) {
$display .= "<div class=\"$style[$index]$notify\"
style=' font-family:arial,helvetica,sans-serif;
font-weight:bold;
font-size:13px;
color: gray;'
title=\"$title\"><a>".$title."</a></div>";
} else {
$display .= "<div class=\"$style[$index]$notify\"><a id=\"tab_$class\" class=\"$style[$index]\" onclick=\"return true;\" href=\"javascript:document.mainform.arg.value='$class';document.mainform.submit();\">$title</a></div></td>";
}
}
$display .= "<td>\n";
$display .= "<div class=\"tab_border\"> </div></td></tr></tbody></table>";
return $display;
}
/*!
* \brief Remove object from parent
*/
function delete()
{
/* Check if all plugins will ACK for deletion */
foreach (array_reverse($this->by_object) as $key => $obj) {
$reason = $obj->allow_remove();
if ($reason != "") {
msg_dialog::display(_("Warning"), sprintf(_("Delete process has been canceled by plugin '%s': %s"), $key, $reason), WARNING_DIALOG);
return;
}
}
/* Delete for all plugins */
foreach (array_reverse($this->by_object) as $obj) {
$obj->remove_from_parent();
}
}
/*!
* \brief Check
*
* \param boolean $ignore_account false
*/
function check()
{
$messages = array();
$current_set = FALSE;
/* Check all plugins */
foreach ($this->by_object as $key => &$obj) {
if ($obj->is_account || $obj->ignore_account) {
@DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $key, "Checking");
$msg = $obj->check();
if (count($msg)) {
$obj->pl_notify = TRUE;
if (!$current_set) {
$current_set = TRUE;
$this->current = $key;
$messages = $msg;
}
} else {
$obj->pl_notify = FALSE;
}
} else {
$obj->pl_notify = FALSE;
}
}
unset($obj);
return $messages;
}
/*
* \brief Save object in the tab
*
* \param boolean $ignore_account false
*/
function save()
{
/* Save all plugins */
foreach ($this->by_object as $key => &$obj) {
@DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $key, "Saving");
$obj->dn = $this->dn;
if (!$obj instanceof plugin && !$obj instanceOf management) {
trigger_error("Something went wrong while saving ".$obj->dn.". Object class '".get_class($obj)."'.");
} else {
if ($obj->is_account || $obj->ignore_account) {
if ($obj->save() == 1) {
return 1;
}
} else {
$obj->remove_from_parent();
}
}
}
unset($obj);
return 0;
}
/*!
* \brief Adapt from template
*
* \param string $dn The DN
*
* \param array $skip
*/
function adapt_from_template($attrs, $skip = array())
{
foreach ($this->by_object as $key => &$obj) {
@DEBUG (DEBUG_TRACE, __LINE__, __FUNCTION__, __FILE__, $key, "Adapting");
$obj->parent = &$this;
$obj->adapt_from_template($attrs, $skip);
}
unset($obj);
}
/*!
* \brief Add special Tabs
*/
function addSpecialTabs()
{
$data = $this->config->data['TABS']['SPECIALTABS'];
$baseobject = $this->getBaseObject();
foreach ($data as &$tab) {
if (!plugin_available($tab['CLASS'])) {
continue;
}
$this->by_name[$tab['CLASS']] = $tab['NAME'];
$this->by_object[$tab['CLASS']] = new $tab['CLASS']($this->config, $this->dn, $baseobject);
$this->by_object[$tab['CLASS']]->parent = &$this;
$this->by_object[$tab['CLASS']]->set_acl_category($this->acl_category);
}
unset($tab);
}
/*!
* \brief Set acl base
*
* \param string $base The new acl base
*/
function set_acl_base($base = "")
{
/* Update reference, transfer variables */
$first = ($base == "");
foreach ($this->by_object as &$obj) {
if ($first) {
$first = FALSE;
$base = $obj->acl_base;
} else {
$obj->set_acl_base($base);
}
}
unset($obj);
}
}
?>
|