diff options
Diffstat (limited to 'mod/pages/views/default/input')
-rw-r--r-- | mod/pages/views/default/input/parent.php | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/mod/pages/views/default/input/parent.php b/mod/pages/views/default/input/parent.php deleted file mode 100644 index f354129fe..000000000 --- a/mod/pages/views/default/input/parent.php +++ /dev/null @@ -1,37 +0,0 @@ -<?php -/** - * Parent picker - * - * @uses $vars['value'] The current value, if any - * @uses $vars['options_values'] - * @uses $vars['name'] The name of the input field - * @uses $vars['entity'] Optional. The child entity (uses container_guid) - */ - -elgg_load_library('elgg:pages'); - -if (empty($vars['entity'])) { - $container = elgg_get_page_owner_entity(); -} else { - $container = $vars['entity']->getContainerEntity(); -} - -$pages = pages_get_navigation_tree($container); -$options = array(); - -foreach ($pages as $page) { - $spacing = ""; - for ($i = 0; $i < $page['depth']; $i++) { - $spacing .= "--"; - } - $options[$page['guid']] = "$spacing " . $page['title']; -} - -$defaults = array( - 'class' => 'elgg-input-parent-picker', - 'options_values' => $options, -); - -$vars = array_merge($defaults, $vars); - -echo elgg_view('input/dropdown', $vars); |