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 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659
|
<?php
/**
* FusionForge navigation
*
* Copyright 2009 - 2010, Olaf Lenz
* Copyright 2011-2012, Franck Villaume - TrivialDev
* Copyright 2014, Stéphane-Eymeric Bredthauer
*
* This file is part of FusionForge. FusionForge is free software;
* you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software
* Foundation; either version 2 of the Licence, or (at your option)
* any later version.
*
* FusionForge is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with FusionForge; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
require_once $gfwww.'search/include/SearchManager.class.php';
/**
* This class provides all the navigational elements to be used by the themes,
* like the site menu, the project menus, and the user links.
* Some of the methods return HTML code, some return abstract data
* structures, and some methods give you the choice. The HTML code
* always tries to be as generic as possible so that it can easily be
* styled via CSS.
*/
class Navigation extends Error {
/**
* Associative array of data for the project menus.
*
* @var array $project_menu_data.
*/
var $project_menu_data;
/**
* Constructor
*/
function Navigation() {
$this->Error();
return true;
}
/**
* getTitle - Get the HTML code of the title of the page.
* If the array $params contains a value for the key 'title',
* this title is appended to the title generated here.
* If $asHTML is set to false, it will return only the title
* in plain text.
*
* @param array $params
* @param bool $asHTML html or not
* @return string text or html code
*/
function getTitle($params, $asHTML = true) {
if (!$asHTML) {
// get the title
if (!isset($params['title'])) {
return forge_get_config('forge_name');
} else {
return forge_get_config('forge_name') . _(': ') . $params['title'];
}
} else {
// return HTML code otherwise
return '<title>' . $this->getTitle($params, false) . '</title>';
}
}
/**
* Get the HTML code for the favicon links of the site (to be
* put into the <head>. If $asHTML is false, it will return
* the URL of the favicon.
*
* @todo: Make favicon configurable
*/
function getFavIcon($asHTML = true) {
if (!$asHTML) {
return util_make_url('/images/icon.png');
} else {
return '<link rel="icon" type="image/png" href="'
. $this->getFavIcon(false) .'" />'
. '<link rel="shortcut icon" type="image/png" href="'
. $this->getFavIcon(false) .'" />';
}
}
/**
* Get the HTML code for the RSS feeds of the site (to be put
* into the <head>. If $asHTML is false, it will return an
* array with the following structure: $result['titles']:
* list of titles of the feeds; $result['urls'] list of urls
* of the feeds.
*/
function getRSS($asHTML = true) {
if (!$asHTML) {
$res = array();
$res['titles'] = array();
$res['urls'] = array();
$res['titles'][] = forge_get_config ('forge_name').' - Project News Highlights RSS';
$res['urls'][] = util_make_url('/export/rss_sfnews.php');
$res['titles'][] = forge_get_config ('forge_name').' - Project News Highlights RSS 2.0';
$res['urls'][] = util_make_url('/export/rss20_news.php');
$res['titles'][] = forge_get_config ('forge_name').' - New Projects RSS';
$res['urls'][] = util_make_url('/export/rss_sfprojects.php');
if (isset($GLOBALS['group_id'])) {
$res['titles'][] = forge_get_config ('forge_name') . ' - New Activity RSS';
$res['urls'][] = util_make_url('/export/rss20_activity.php?group_id='.$GLOBALS['group_id']);
}
return $res;
} else {
$feeds = $this->getRSS(false);
for ($j = 0; $j < count($feeds['urls']); $j++) {
echo '
<link rel="alternate" title="' .
util_html_secure($feeds['titles'][$j]) .
'" href="' . $feeds['urls'][$j] .
'" type="application/rss+xml"/>';
}
}
}
/**
* Get the searchBox HTML code.
*/
function getSearchBox() {
global $words, $forum_id, $group_id, $group_project_id, $atid, $exact, $type_of_search;
$res = "";
if (get_magic_quotes_gpc()) {
$defaultWords = stripslashes($words);
} else {
$defaultWords = $words;
}
$defaultWords = htmlspecialchars($defaultWords);
// if there is no search currently, set the default
if (!isset($type_of_search) ) {
$exact = 1;
}
$res .= '<form id="searchBox" action="'.util_make_uri('/search/').'" method="get">
<div>';
$parameters = array(
SEARCH__PARAMETER_GROUP_ID => $group_id,
SEARCH__PARAMETER_ARTIFACT_ID => $atid,
SEARCH__PARAMETER_FORUM_ID => $forum_id,
SEARCH__PARAMETER_GROUP_PROJECT_ID => $group_project_id
);
$searchManager =& getSearchManager();
$searchManager->setParametersValues($parameters);
$searchEngines =& $searchManager->getAvailableSearchEngines();
$res .= '<select name="type_of_search">';
for($i = 0, $max = count($searchEngines); $i < $max; $i++) {
$searchEngine =& $searchEngines[$i];
$res .= '<option value="' . $searchEngine->getType() . '"'
. ( $type_of_search == $searchEngine->getType() ? ' selected="selected"' : '' )
. '>' . $searchEngine->getLabel($parameters) . '</option>' . "\n";
}
$res .= '</select>';
$parameters = $searchManager->getParameters();
foreach($parameters AS $name => $value) {
$res .= '<input type="hidden" value="'.$value.'" name="'.$name.'" />' . "\n";
}
$res .= '<input type="text" size="12" id="searchBox-words" name="words" value="'
. $defaultWords . '" required="required" />' . "\n";
$res .= '<input type="submit" name="Search" value="'._('Search').'" />' . "\n";
if (isset($group_id) && $group_id) {
$res .= util_make_link('/search/advanced_search.php?group_id=' .
$group_id, _('Advanced search'));
}
$res .= '</div>';
$res .= '</form>';
return $res;
}
/**
* Get an array of the user links (Login/Logout/My Account/Register) with the following structure:
* $result['titles']: list of the titles. $result['urls']: list of the urls.
*/
function getUserLinks() {
$res = array();
if (session_loggedin()) {
$u = user_get_object(user_getid());
$res['titles'][] = sprintf("%s (%s)", _('Log Out'), $u->getRealName());
$res['urls'][] = util_make_uri('/account/logout.php');
$res['titles'][] = _('My Account');
$res['urls'][] = util_make_uri('/account/');
} else {
$url = '/account/login.php';
if(getStringFromServer('REQUEST_METHOD') != 'POST') {
$url .= '?return_to=';
$url .= urlencode(getStringFromServer('REQUEST_URI'));
}
$res['titles'][] = _('Log In');
$res['urls'][] = util_make_uri($url);
if (!forge_get_config ('user_registration_restricted')) {
$res['titles'][] = _('New Account');
$res['urls'][] = util_make_uri('/account/register.php');
}
}
return $res;
}
/**
* Get an array of the menu of the site with the following structure:
* $result['titles']: list of titles of the links.
* $result['urls']: list of urls.
* $result['tooltips']: list of tooltips (html title).
* $result['selected']: number of the selected menu entry.
*/
function getSiteMenu() {
$request_uri = getStringFromServer('REQUEST_URI');
$menu = array();
$menu['titles'] = array();
$menu['urls'] = array();
$menu['tooltips'] = array();
$selected = 0;
// Home
$menu['titles'][] = _('Home');
$menu['urls'][] = util_make_uri('/');
$menu['tooltips'][] = _('Main Page');
// My Page
$menu['titles'][] = _('My Page');
$menu['urls'][] = util_make_uri('/my/');
$menu['tooltips'][] = _('Your Page, widgets selected by you to follow your items.');
if (strstr($request_uri, util_make_uri('/my/'))
|| strstr($request_uri, util_make_uri('/account/'))
|| strstr($request_uri, util_make_uri('/register/'))
|| strstr($request_uri, util_make_uri('/themes/'))
)
{
$selected = count($menu['urls'])-1;
}
if (forge_get_config('use_trove') || forge_get_config('use_project_tags') || forge_get_config('use_project_full_list')) {
$menu['titles'][] = _('Projects');
$menu['urls'][] = util_make_uri('/softwaremap/');
$menu['tooltips'][] = _('Map of projects, by categories or types.');
if (strstr($request_uri, util_make_uri('/softwaremap/'))) {
$selected = count($menu['urls'])-1;
}
}
if (forge_get_config('use_snippet')) {
$menu['titles'][] = _('Code Snippets');
$menu['urls'][] = util_make_uri('/snippet/');
$menu['tooltips'][] = _('Tooling library. Small coding tips.');
if (strstr($request_uri, util_make_uri('/snippet/'))) {
$selected = count($menu['urls'])-1;
}
}
if (forge_get_config('use_people')) {
$menu['titles'][] = _('Project Openings');
$menu['urls'][] = util_make_uri('/people/');
$menu['tooltips'][] = _('Hiring Market Place.');
if (strstr($request_uri, util_make_uri('/people/'))) {
$selected=count($menu['urls'])-1;
}
}
// Outermenu hook
$before = count($menu['urls']);
$hookParams['DIRS'] = &$menu['urls'];
$hookParams['TITLES'] = &$menu['titles'];
$hookParams['TOOLTIPS'] = &$menu['tooltips'];
plugin_hook("outermenu", $hookParams);
// try to find selected entry
for ($j = $before; $j < count($menu['urls']); $j++) {
$url = $menu['urls'][$j];
if (strstr($request_uri, $url)) {
$selected = $j;
break;
}
}
// Admin and Reporting
if (forge_check_global_perm('forge_admin')) {
$menu['titles'][] = _('Site Admin');
$menu['urls'][] = util_make_uri('/admin/');
$menu['tooltips'][] = _('Administration Submenu to handle global configuration, users & projects.');
if (strstr($request_uri, util_make_uri('/admin/')) || strstr($request_uri, 'globaladmin')) {
$selected = count($menu['urls'])-1;
}
}
if (forge_check_global_perm('forge_stats', 'read')) {
$menu['titles'][] = _('Reporting');
$menu['urls'][] = util_make_uri('/reporting/');
$menu['tooltips'][] = _('Statistics about visits, users & projects in time frame.');
if (strstr($request_uri, util_make_uri('/reporting/'))) {
$selected = count($menu['urls'])-1;
}
}
// Project
if (isset($GLOBALS['group_id'])) {
// get group info using the common result set
$project = group_get_object($GLOBALS['group_id']);
if (is_int($project) && $project == 0) {
if (preg_match('/root=/',$request_uri)) {
$project_name = preg_replace('/.*?root=/', '', $request_uri);
$project = group_get_object_by_name($project_name);
}
}
if ($project && is_object($project)) {
if ($project->isError()) {
} elseif (!$project->isProject()) {
} else {
$menu['titles'][] = $project->getPublicName();
$menu['tooltips'][] = _('Project home page, widgets selected to follow specific items.');
if (isset ($GLOBALS['sys_noforcetype']) && $GLOBALS['sys_noforcetype']) {
$menu['urls'][]=util_make_uri('/project/?group_id') .$project->getId();
} else {
$menu['urls'][]=util_make_uri('/projects/') .$project->getUnixName().'/';
}
$selected=count($menu['urls'])-1;
}
}
}
$menu['selected'] = $selected;
return $menu;
}
/**
* Get a reference to an array of the projects menu for the project with the id $group_id with the following structure:
* $result['starturl']: URL of the projects starting page;
* $result['name']: public name of the project;
* $result['titles']: list of titles of the menu entries;
* $result['tooltips']: list of tooltips (html title) of the menu entries;
* $result['urls']: list of urls of the menu entries;
* $result['adminurls']: list of urls to the admin pages of the menu entries.
* If the user has no admin permissions, the correpsonding adminurl is false.
* $result['selected']: number of the menu entry that is currently selected.
*/
function getProjectMenu($group_id, $toptab = "") {
// rebuild menu if it has never been built before, or
// if the toptab was set differently
if (!isset($this->project_menu_data[$group_id])
|| ($toptab != "")) {
// get the group and permission objects
$group = group_get_object($group_id);
if (!$group || !is_object($group)) {
return null;
}
if ($group->isError()) {
//wasn't found or some other problem
return null;
}
if (!$group->isProject()) {
return;
}
$selected = 0;
$menu =& $this->project_menu_data[$group_id];
$menu['titles'] = array();
$menu['tooltips'] = array();
$menu['urls'] = array();
$menu['adminurls'] = array();
$menu['name'] = $group->getPublicName();
// Summary
$menu['titles'][] = _('Summary');
$menu['tooltips'][] = _('Project Homepage. Widgets oriented');
if (isset($GLOBALS['sys_noforcetype']) && $GLOBALS['sys_noforcetype']) {
$url = util_make_uri('/project/?group_id=' . $group_id);
} else {
$url = util_make_uri('/projects/' . $group->getUnixName() .'/');
}
$menu['urls'][] = $url;
$menu['adminurls'][] = false;
if ($toptab == "home") {
$selected = (count($menu['urls'])-1);
}
// setting these allows to change the initial project page
$menu['starturl'] = $url;
// Project Admin
if (forge_check_perm ('project_admin', $group_id)) {
$menu['titles'][] = _('Admin');
$menu['tooltips'][] = _('Project Admin');
$menu['urls'][] = util_make_uri('/project/admin/?group_id=' . $group_id);
$menu['adminurls'][] = false;
if ($toptab == "admin") {
$selected = (count($menu['urls'])-1);
}
}
/* Homepage
// check for use_home_tab?
$TABS_DIRS[]='http://'. $this->getHomePage();
$TABS_TITLES[]=_('Home Page');
*/
// Project Activity
if ($group->usesActivity()) {
$menu['titles'][] = _('Activity');
$menu['tooltips'][] = _('Last activities per category.');
$menu['urls'][] = util_make_uri('/activity/?group_id=' . $group_id);
$menu['adminurls'][] = false;
if ($toptab == "activity") {
$selected = (count($menu['urls'])-1);
}
}
// Forums
if ($group->usesForum()) {
$menu['titles'][] = _('Forums');
$menu['tooltips'][] = _('Tech & help forums.');
$menu['urls'][] = util_make_uri('/forum/?group_id=' . $group_id);
if (forge_check_perm ('forum_admin', $group_id)) {
$menu['adminurls'][] = util_make_uri('/forum/admin/?group_id='.$group_id);
} else {
$menu['adminurls'][] = false;
}
if ($toptab == "forums") {
$selected = (count($menu['urls'])-1);
}
}
// Artifact Tracking
if ($group->usesTracker()) {
$menu['titles'][] = _('Tracker');
$menu['tooltips'][] = _('Issues, tickets, bugs.');
$menu['urls'][] = util_make_uri('/tracker/?group_id=' . $group_id);
if (forge_check_perm ('tracker_admin', $group_id)) {
$menu['adminurls'][] = util_make_uri('/tracker/admin/?group_id='.$group_id);
} else {
$menu['adminurls'][] = false;
}
if ($toptab == "tracker" ||
$toptab == "bugs" ||
$toptab == "support" ||
$toptab == "patch") {
$selected = (count($menu['urls'])-1);
}
}
// Mailing Lists
if ($group->usesMail()) {
$menu['titles'][] = _('Lists');
$menu['tooltips'][] = _('Mailing Lists');
$menu['urls'][] = util_make_uri('/mail/?group_id=' . $group_id);
if (forge_check_perm ('project_admin', $group_id)) {
$menu['adminurls'][] = util_make_uri('/mail/admin/?group_id='.$group_id);
} else {
$menu['adminurls'][] = false;
}
if ($toptab == "mail") {
$selected = (count($menu['urls'])-1);
}
}
// Project/Task Manager
if ($group->usesPm()) {
$menu['titles'][] = _('Tasks');
$menu['tooltips'][] = _('Project Management.');
$menu['urls'][] = util_make_uri('/pm/?group_id=' . $group_id);
if (forge_check_perm ('pm_admin', $group_id)) {
$menu['adminurls'][] = util_make_uri('/pm/admin/?group_id='.$group_id);
} else {
$menu['adminurls'][] = false;
}
if ($toptab == "pm") {
$selected = (count($menu['urls'])-1);
}
}
// Doc Manager
if ($group->usesDocman()) {
$menu['titles'][] = _('Docs');
$menu['tooltips'][] = _('Document Management.');
$menu['urls'][] = util_make_uri('/docman/?group_id=' . $group_id);
if (forge_check_perm ('docman', $group_id, 'admin')) {
$menu['adminurls'][] = util_make_uri('/docman/?group_id='.$group_id.'&view=admin');
} else {
$menu['adminurls'][] = false;
}
if ($toptab == "docman") {
$selected = (count($menu['urls'])-1);
}
}
// Surveys
if ($group->usesSurvey()) {
$menu['titles'][] = _('Surveys');
$menu['tooltips'][] = _('Online surveys, project needs your point of view.');
$menu['urls'][] = util_make_uri('/survey/?group_id=' . $group_id);
if (forge_check_perm ('project_admin', $group_id)) {
$menu['adminurls'][] = util_make_uri('/survey/admin/?group_id='.$group_id);
} else {
$menu['adminurls'][] = false;
}
if ($toptab == "surveys") {
$selected = (count($menu['urls'])-1);
}
}
// News
if ($group->usesNews()) {
$menu['titles'][] = _('News');
$menu['tooltips'][] = _('Flash head line from the project.');
$menu['urls'][] = util_make_uri('/news/?group_id=' . $group_id);
if (forge_check_perm ('project_admin', $group_id)) {
$menu['adminurls'][] = util_make_uri('/news/admin/?group_id='.$group_id);
} else {
$menu['adminurls'][] = false;
}
if ($toptab == "news") {
$selected = (count($menu['urls'])-1);
}
}
// SCM systems
if ($group->usesSCM()) {
$menu['titles'][] = _('SCM');
$menu['tooltips'][] = _('Source Content Management, peer-review and source discovery.');
$menu['urls'][] = util_make_uri('/scm/?group_id=' . $group_id);
// eval cvs_flags?
if (forge_check_perm ('project_admin', $group_id)) {
$menu['adminurls'][] = util_make_uri('/scm/admin/?group_id='.$group_id);
} else {
$menu['adminurls'][] = false;
}
if ($toptab == "scm") {
$selected = (count($menu['urls'])-1);
}
}
// groupmenu_after_scm hook
$hookParams = array();
$hookParams['group_id'] = $group_id ;
$hookParams['DIRS'] =& $menu['urls'];
$hookParams['ADMIN'] =& $menu['adminurls'];
$hookParams['TITLES'] =& $menu['titles'];
$hookParams['TOOLTIPS'] =& $menu['tooltips'];
$hookParams['toptab'] =& $toptab;
$hookParams['selected'] =& $selected;
plugin_hook ("groupmenu_scm", $hookParams);
// fill up adminurls
for ($i = 0; $i < count($menu['urls']) - count($menu['adminurls']); $i++) {
$menu['adminurls'][] = false;
}
// Downloads
if ($group->usesFRS()) {
$menu['titles'][] = _('Files');
$menu['tooltips'][] = _('All published files organized per version.');
$menu['urls'][] = util_make_uri('/frs/?group_id=' . $group_id);
if (forge_check_perm ('frs', $group_id, 'write')) {
$menu['adminurls'][] = util_make_uri('/frs/admin/?group_id='.$group_id);
} else {
$menu['adminurls'][] = false;
}
if ($toptab == "frs") {
$selected = (count($menu['urls'])-1);
}
}
// groupmenu hook
$hookParams = array();
$hookParams['group'] = $group_id;
$hookParams['DIRS'] =& $menu['urls'];
$hookParams['ADMIN'] =& $menu['adminurls'];
$hookParams['TITLES'] =& $menu['titles'];
$hookParams['TOOLTIPS'] =& $menu['tooltips'];
$hookParams['toptab'] =& $toptab;
$hookParams['selected'] =& $selected;
plugin_hook("groupmenu", $hookParams);
// fill up adminurls
for ($i = 0; $i < count($menu['urls']) - count($menu['adminurls']); $i++) {
$menu['adminurls'][] = false;
}
// store selected menu item (if any)
$menu['selected'] = $selected;
}
return $this->project_menu_data[$group_id];
}
/**
* Create the HTML code for the banner "Powered By
* FusionForge". If $asHTML is set to false, it will return an
* array with the following structure: $result['url']: URL for
* the link on the banner; $result['image']: URL of the banner
* image; $result['title']: HTML code that outputs the banner;
* $result['html']: HTML code that creates the banner and the link.
*/
function getPoweredBy($asHTML=true) {
$res['url'] = 'http://fusionforge.org/';
$res['image'] = util_make_uri('/images/pow-fusionforge.png');
$res['title'] = '<img src="'
. $res['image']
. '" alt="Powered By FusionForge" />';
$res['html'] = util_make_link($res['url'], $res['title'], array(), true);
if ($asHTML) {
return $res['html'];
} else {
return $res;
}
}
/** Create the HTML code for the "Show Source" link if
* forge_get_config('show_source') is set, otherwise "". If $asHTML is set
* to false, it returns NULL when forge_get_config('show_source') is not
* set, otherwise an array with the following structure:
* $result['url']: URL of the link to the source code viewer;
* $result['title']: Title of the link.
*/
function getShowSource($asHTML=true) {
if (forge_get_config('show_source')) {
$res['url'] = util_make_uri('/source.php?file='.getStringFromServer('SCRIPT_NAME'));
$res['title'] = _('Show source');
} else {
return ($asHTML ? "" : NULL);
}
if (!$asHTML) {
return $res;
} else {
return util_make_link($res['url'], $res['title'],
array('class' => 'showsource'),
true);
}
}
}
// Local Variables:
// mode: php
// c-file-style: "bsd"
// End:
|