0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
core
/
Tiki
/
Editable
/
[
Home
]
File: Value.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: Value.php 53803 2015-02-06 00:42:50Z jyhem $ class Tiki_Editable_Value { private $inner; private $layout = 'inline'; private $fieldFetchUrl; private $objectStoreUrl; function __construct($html, array $parameters) { $this->inner = $html; if (! empty($parameters['layout']) && in_array($parameters['layout'], array('inline', 'block'))) { $this->layout = $parameters['layout']; } if (empty($parameters['field_fetch_url'])) { throw new Exception(tr('Internal error: mandatory parameter field_fetch_url is missing')); } if (empty($parameters['object_store_url'])) { throw new Exception(tr('Internal error: mandatory parameter object_store_url is missing')); } $this->fieldFetchUrl = $parameters['field_fetch_url']; $this->objectStoreUrl = $parameters['object_store_url']; } function __toString() { global $prefs; if ($prefs['ajax_inline_edit'] != 'y') { return $this->inner; } $tag = ($this->layout == 'block') ? 'div' : 'span'; $fieldFetch = htmlspecialchars($this->fieldFetchUrl); $objectStore = htmlspecialchars($this->objectStoreUrl); $value = $this->inner; if (trim(strip_tags($value)) == '') { // When the value is empty, make sure it becomes visible/clickable $value .= ' '; } return "<$tag class=\"editable-inline\" data-field-fetch-url=\"$fieldFetch\" data-object-store-url=\"$objectStore\">$value</$tag>"; } }
© 2017 -
ZeroByte.ID
.