blob: 109c9b7228f0c05aa58439cd1172b6084aad1b68 [file] [log] [blame]
<?php
// Initialize $variables.
$variables = array();
$links = array();
$links[] = array(
'icon' => 'fa-download', // Required
'url' => '/downloads/', // Required
'title' => 'Download', // Required
//'target' => '_blank', // Optional
'text' => 'Eclipse Distribution, Update Site, Dropins' // Optional
);
$links[] = array(
'icon' => 'fa-users', // Required
'url' => '/users/', // Required
'title' => 'Geting Involved', // Required
//'target' => '_blank', // Optional
'text' => 'CVS, Workspace Setup, Wiki, Committers' // Optional
);
$links[] = array(
'icon' => 'fa-book', // Required
'url' => 'http://help.eclipse.org/luna/index.jsp', // Required
'title' => 'Documentation', // Required
//'target' => '_blank', // Optional
'text' => 'Tutorials, Examples, Videos, Online Reference' // Optional
);
$links[] = array(
'icon' => 'fa-support', // Required
'url' => '/forums/', // Required
'title' => 'Support', // Required
//'target' => '_blank', // Optional
'text' => 'Bug Tracker, Newsgroup Professional Support' // Optional
);
$variables = array(
'links' => $links, // Required
'logo' => array( // Required
'src' => '/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png', // Required
'alt' => 'The Eclipse Foundation', // Optional
'url' => 'http://www.eclipse.org', // Optional
//'target' => '_blank' // Optional
),
);
?>
<?php ob_start(); ?>
<?php $Theme->setThemeVariables(array('header_nav' => $variables));?>
<?php print $Theme->getHeaderNav();?>
<?php $html = ob_end_flush();?>
<h3 id="section-headernav">Header Nav</h3>
<p>Custom header navigation for project pages.</p><p><strong>For more information:</strong><br/> <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=436108">Bug 436108</a> - Update navigation buttons for Documentation, Download, Getting Involved and Support for project pages.</p>
<?php print $html;?>
<h4>PHP Code</h4>
<div class="editor" data-editor-lang="html" data-editor-no-focus="true">
&lt;?php
// Initialize $variables.
$variables = array();
$links = array();
$links[] = array(
'icon' => 'fa-download', // Required
'url' => '/downloads/', // Required
'title' => 'Download', // Required
//'target' => '_blank', // Optional
'text' => 'Eclipse Distribution, Update Site, Dropins' // Optional
);
$links[] = array(
'icon' => 'fa-users', // Required
'url' => '/users/', // Required
'title' => 'Geting Involved', // Required
//'target' => '_blank', // Optional
'text' => 'CVS, Workspace Setup, Wiki, Committers' // Optional
);
$links[] = array(
'icon' => 'fa-book', // Required
'url' => 'http://help.eclipse.org/luna/index.jsp', // Required
'title' => 'Documentation', // Required
//'target' => '_blank', // Optional
'text' => 'Tutorials, Examples, Videos, Online Reference' // Optional
);
$links[] = array(
'icon' => 'fa-support', // Required
'url' => '/forums/', // Required
'title' => 'Support', // Required
//'target' => '_blank', // Optional
'text' => 'Bug Tracker, Newsgroup Professional Support' // Optional
);
$variables['header_nav'] = array(
'links' => $links, // Required
'logo' => array( // Required
'src' => '/eclipse.org-common/themes/solstice/public/images/logo/eclipse-800x188.png', // Required
'alt' => 'The Eclipse Foundation', // Optional
'url' => 'http://www.eclipse.org', // Optional
//'target' => '_blank' // Optional
),
);
// Set Solstice theme variables (Array)
$App->setThemeVariables($variables);
</div>
<h4>HTML Output</h4>
<div class="editor" data-editor-lang="html" data-editor-no-focus="true"><?php print htmlentities($html); ?></div>