Skip to Content.
Sympa Menu

comanage-dev - [comanage-dev] r655 - registry/trunk/app/View/Elements

Subject: COmanage Developers List

List archive

[comanage-dev] r655 - registry/trunk/app/View/Elements


Chronological Thread 
  • From:
  • To:
  • Subject: [comanage-dev] r655 - registry/trunk/app/View/Elements
  • Date: Sun, 5 Jan 2014 16:34:52 -0500

Author: benno
Date: 2014-01-05 16:34:51 -0500 (Sun, 05 Jan 2014)
New Revision: 655

Modified:
registry/trunk/app/View/Elements/links.ctp
Log:
Toss default nav links (CO-759)

Modified: registry/trunk/app/View/Elements/links.ctp
===================================================================
--- registry/trunk/app/View/Elements/links.ctp 2014-01-01 00:55:27 UTC (rev
654)
+++ registry/trunk/app/View/Elements/links.ctp 2014-01-05 21:34:51 UTC (rev
655)
@@ -3,11 +3,8 @@
* COmanage Registry Link List
* Displayed above all pages when logged in
*
- * Version: $Revision$
- * Date: $Date$
+ * Copyright (C) 2012-13 University Corporation for Advanced Internet
Development, Inc.
*
- * Copyright (C) 2012 University Corporation for Advanced Internet
Development, Inc.
- *
* Licensed under the Apache License, Version 2.0 (the "License"); you may
not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
@@ -18,30 +15,32 @@
* KIND, either express or implied. See the License for the specific
language governing
* permissions and limitations under the License.
*
+ * @copyright Copyright (C) 2012-13 University Corporation for Advanced
Internet Development, Inc.
+ * @link http://www.internet2.edu/comanage COmanage Project
+ * @package registry
+ * @since COmanage Registry v0.1
+ * @license Apache License, Version 2.0
(http://www.apache.org/licenses/LICENSE-2.0)
+ * @version $Id$
*/
?>

<div id="links">
<ul>
- <li><a href="#">News</a></li>
- <li><a href="#">Support</a></li>
- <li><a href="/directory">Directory</a></li>
- <li><a href="#">Help</a></li>
-
<?php
+ // Emit dynamically configured (via Navigation Links) links
+
if(isset($vv_NavLinks)) {
foreach($vv_NavLinks as $l){
print '<li><a href="' . $l['NavigationLink']['url'] . '">' .
$l['NavigationLink']['title'] . '</a>';
}
}
-
+
if(isset($vv_CoNavLinks)) {
foreach($vv_CoNavLinks as $l){
print '<li><a href="' . $l['CoNavigationLink']['url'] . '">' .
$l['CoNavigationLink']['title'] . '</a>';
}
}
?>
-
</ul>
</div>




  • [comanage-dev] r655 - registry/trunk/app/View/Elements, svnlog, 01/05/2014

Archive powered by MHonArc 2.6.16.

Top of Page