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
|
<?php
/**
* Copyright 2004-2016 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL-2). If you
* did not receive this file, see http://www.horde.org/licenses/lgpl.
*
* @author Chuck Hagenbuch <chuck@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/lgpl LGPL-2
* @package Horde
*/
require_once __DIR__ . '/../../lib/Application.php';
Horde_Registry::appInit('horde');
$vars = $injector->getInstance('Horde_Variables');
$path = $vars->path;
if (empty($path)) {
$list = array();
$apps = $registry->listApps(null, false, Horde_Perms::READ);
foreach ($apps as $app) {
if ($registry->hasMethod('browse', $app)) {
$list[$app] = array('name' => $registry->get('name', $app),
'icon' => $registry->get('icon', $app),
'browseable' => true);
}
}
} else {
$pieces = explode('/', $path);
$list = $registry->callByPackage($pieces[0], 'browse', array('path' => $path));
}
if (!count($list)) {
$notification->push(_("Nothing to browse, go back."), 'horde.warning');
}
$rows = array();
foreach ($list as $path => $values) {
$row = array();
// Set the icon.
if (!empty($values['icon'])) {
$row['icon'] = Horde_Themes_Image::tag($values['icon'], array(
'alt' => $values['name']
));
} elseif (!empty($values['browseable'])) {
$row['icon'] = Horde_Themes_Image::tag('tree/folder.png');
} else {
$row['icon'] = Horde_Themes_Image::tag('tree/leaf.png');
}
// Set the name/link.
$name = $values['name'] ?: basename($path);
if (!empty($values['browseable'])) {
$url = Horde::url('services/obrowser', false, array('app' => 'horde'))->add('path', $path);
$row['name'] = $url->link() . htmlspecialchars($name) . '</a>';
} else {
$js = "return chooseObject('" . addslashes($path) . "');";
$row['name'] = Horde::link('#', sprintf(_("Choose %s"), $name), '', '', $js) . htmlspecialchars($name) . '</a>';
}
$rows[] = $row;
}
$view = new Horde_View(array(
'templatePath' => HORDE_TEMPLATES . '/services'
));
$view->addHelper('Horde_Core_View_Helper_Image');
$view->rows = $rows;
$page_output->addScriptFile('obrowser.js', 'horde');
$page_output->addScriptFile('stripe.js', 'horde');
$page_output->topbar = $page_output->sidebar = false;
$page_output->header();
$notification->notify(array('listeners' => 'status'));
echo $view->render('obrowser');
$page_output->footer();
|