diff options
author | Brett Profitt <brett.profitt@gmail.com> | 2012-12-15 14:10:04 -0500 |
---|---|---|
committer | Brett Profitt <brett.profitt@gmail.com> | 2012-12-15 14:10:04 -0500 |
commit | 4d360c11d14768c8a0229b8b2b1f02622f17c48a (patch) | |
tree | ae7f01685a08c16a49b551925631c7401dbb79d0 /mod/pages/views/default/input | |
parent | cd3839cfec814c191ff664faeaf9e9360118d6bf (diff) | |
parent | 21eb7616a11906a19260a081070a6b1c51820fa3 (diff) | |
download | elgg-4d360c11d14768c8a0229b8b2b1f02622f17c48a.tar.gz elgg-4d360c11d14768c8a0229b8b2b1f02622f17c48a.tar.bz2 |
Merge branch 'pr-316' into 1.8
Diffstat (limited to 'mod/pages/views/default/input')
-rw-r--r-- | mod/pages/views/default/input/parent.php | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/mod/pages/views/default/input/parent.php b/mod/pages/views/default/input/parent.php new file mode 100644 index 000000000..f354129fe --- /dev/null +++ b/mod/pages/views/default/input/parent.php @@ -0,0 +1,37 @@ +<?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); |