- <?php
- * @file
- * Provides the basic object definitions used by plugins and handlers.
- */
-
- * Basic definition for many views objects.
- */
- class views_object {
-
- * Except for displays, options for the object will be held here.
- */
- var $options = array();
-
-
- * The top object of a view.
- *
- * @var view
- */
- var $view = NULL;
-
-
- * Handler's definition
- *
- * @var array
- */
- var $definition;
-
-
- * Information about options for all kinds of purposes will be held here.
- * @code
- * 'option_name' => array(
- * - 'default' => default value,
- * - 'translatable' => (optional) TRUE/FALSE,
- * - 'contains' => (optional) array of items this contains, with its own
- * defaults, etc. If contains is set, the default will be ignored and
- * assumed to be array().
- * - 'bool' => (optional) TRUE/FALSE Is the value a boolean value. This will
- * change the internal format to TRUE/FALSE instead of 1/0.
- * ),
- *
- * @return array
- * Returns the options of this handler/plugin.
- *
- * @see views_object::unpack_translatable()
- */
- function option_definition() { return array(); }
-
-
- * Views handlers use a special construct function so that we can more easily
- * construct them with variable arguments.
- */
- function construct() { $this->set_default_options(); }
-
-
- * Set default options on this object. Called by the constructor in a
- * complex chain to deal with backward compatibility.
- *
- * @deprecated since views2
- */
- function options(&$options) { }
-
-
- * Set default options.
- * For backward compatibility, it sends the options array; this is a
- * feature that will likely disappear at some point.
- */
- function set_default_options() {
- $this->_set_option_defaults($this->options, $this->option_definition());
-
-
- $this->options($this->options);
- }
-
- function _set_option_defaults(&$storage, $options, $level = 0) {
- foreach ($options as $option => $definition) {
- if (isset($definition['contains']) && is_array($definition['contains'])) {
- $storage[$option] = array();
- $this->_set_option_defaults($storage[$option], $definition['contains'], $level++);
- }
- elseif (!empty($definition['translatable']) && !empty($definition['default'])) {
- $storage[$option] = t($definition['default']);
- }
- else {
- $storage[$option] = isset($definition['default']) ? $definition['default'] : NULL;
- }
- }
- }
-
-
- * Unpack options over our existing defaults, drilling down into arrays
- * so that defaults don't get totally blown away.
- */
- function unpack_options(&$storage, $options, $definition = NULL, $all = TRUE, $check = TRUE, $localization_keys = array()) {
- if ($check && !is_array($options)) {
- return;
- }
-
- if (!isset($definition)) {
- $definition = $this->option_definition();
- }
-
- if (!empty($this->view)) {
-
- $this->view->init_localization();
-
-
- if (empty($localization_keys) && isset($this->localization_keys)) {
- $localization_keys = $this->localization_keys;
- }
-
- elseif (!empty($this->is_plugin) && empty($localization_keys)) {
- if ($this->plugin_type != 'display') {
- $localization_keys = array($this->view->current_display);
- $localization_keys[] = $this->plugin_type;
- }
- }
- }
-
- foreach ($options as $key => $value) {
- if (is_array($value)) {
-
- if (!$all && empty($definition[$key])) {
- continue;
- }
-
- if (!isset($storage[$key]) || !is_array($storage[$key])) {
- $storage[$key] = array();
- }
-
-
-
-
- if (!$all && isset($definition[$key]) && !isset($definition[$key]['contains'])) {
- $storage[$key] = $value;
- continue;
- }
-
- $this->unpack_options($storage[$key], $value, isset($definition[$key]['contains']) ? $definition[$key]['contains'] : array(), $all, FALSE, array_merge($localization_keys, array($key)));
- }
-
-
- elseif (empty($this->view->editing) && !empty($definition[$key]['translatable']) && !empty($value) || !empty($definition['contains'][$key]['translatable']) && !empty($value)) {
- if (!empty($this->view) && $this->view->is_translatable()) {
-
-
-
-
- $format = NULL;
- if (isset($definition[$key]['format_key']) && isset($options[$definition[$key]['format_key']])) {
- $format = $options[$definition[$key]['format_key']];
- }
- $translation_data = array(
- 'value' => $value,
- 'format' => $format,
- 'keys' => array_merge(array($this->view->name), $localization_keys, array($key)),
- );
- $storage[$key] = $this->view->localization_plugin->translate($translation_data);
- }
-
- else {
- $storage[$key] = t($value);
- }
- }
- elseif ($all || !empty($definition[$key])) {
- $storage[$key] = $value;
- }
- }
-
- }
-
-
- * Let the handler know what its full definition is.
- */
- function set_definition($definition) {
- $this->definition = $definition;
- if (isset($definition['field'])) {
- $this->real_field = $definition['field'];
- }
- }
-
- function destroy() {
- if (isset($this->view)) {
- unset($this->view);
- }
-
- if (isset($this->display)) {
- unset($this->display);
- }
-
- if (isset($this->query)) {
- unset($this->query);
- }
- }
-
-
- * Unpacks each handler to store translatable texts.
- */
- public function unpack_translatables(&$translatable, $parents = array()) {
- foreach ($this->option_definition() as $option => $definition) {
- $this->unpack_translatable($translatable, $this->options, $option, $definition, $parents, array());
- }
- }
-
-
- * Unpack a single option definition.
- *
- * This function run's through all suboptions recursive.
- *
- * @param array $translatable
- * Stores all available translatable items.
- * @param array $storage
- * @param string $option
- * @param string $definition
- * @param array $parents
- * @param array $keys
- */
- public function unpack_translatable(&$translatable, $storage, $option, $definition, $parents, $keys = array()) {
-
- if (!isset($storage[$option])) {
- return;
- }
-
-
- if (isset($definition['unpack_translatable']) && method_exists($this, $definition['unpack_translatable'])) {
- return $this->{$definition['unpack_translatable']}($translatable, $storage, $option, $definition, $parents, $keys);
- }
-
- if (isset($definition['translatable'])) {
- if ($definition['translatable'] === FALSE) {
- return;
- }
- }
-
- $parents[] = $option;
-
-
- if (isset($definition['contains'])) {
- foreach ($definition['contains'] as $sub_option => $sub_definition) {
- $translation_keys = array_merge($keys, array($sub_option));
- $this->unpack_translatable($translatable, $storage[$option], $sub_option, $sub_definition, $parents, $translation_keys);
- }
- }
- $options = $storage[$option];
- if (is_array($options)) {
- foreach ($options as $key => $value) {
- $translation_keys = array_merge($keys, array($key));
- if (is_array($value)) {
- $this->unpack_translatable($translatable, $options, $key, $definition, $parents, $translation_keys);
- }
- elseif (!empty($definition[$key]['translatable']) && !empty($value)) {
-
- $format = NULL;
- if (isset($definition['format_key']) && isset($options[$definition['format_key']])) {
- $format = $options[$definition['format_key']];
- }
- $translatable[] = array(
- 'value' => $value,
- 'keys' => $translation_keys,
- 'format' => $format,
- );
- }
- }
- }
- elseif (!empty($definition['translatable']) && !empty($options)) {
- $value = $options;
-
- $format = NULL;
- if (isset($definition['format_key']) && isset($storage[$definition['format_key']])) {
- $format = $storage[$definition['format_key']];
- }
- $translatable[] = array(
- 'value' => $value,
- 'keys' => isset($translation_keys) ? $translation_keys : $parents,
- 'format' => $format,
- );
- }
- }
-
- }