Changeset 5562
- Timestamp:
- 03/21/07 16:26:29 (2 years ago)
- Files:
-
- trunk/src/de.linkm.sitemap/config/manifest.inc (modified) (1 diff)
- trunk/src/de.linkm.sitemap/handler/sitemap.php (modified) (2 diffs)
- trunk/src/de.linkm.sitemap/midcom/interfaces.php (modified) (2 diffs)
- trunk/src/de.linkm.sitemap/style/xml-item.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/de.linkm.sitemap/config/manifest.inc
r4369 r5562 1 1 'name' => 'de.linkm.sitemap', 2 'version' => '1.1.1', 2 'description' => 'Automatic sitemap', 3 'purecode' => false, 4 'version' => '1.1.2', 3 5 'state' => 'stable', 4 6 'package.xml' => Array trunk/src/de.linkm.sitemap/handler/sitemap.php
r4371 r5562 1 1 <?php 2 /** 3 * @package de.linkm.sitemap 4 * @author The Midgard Project, http://www.midgard-project.org 5 * @version $Id: viewer.php 3975 2006-09-06 17:36:03Z bergie $ 6 * @copyright The Midgard Project, http://www.midgard-project.org 7 * @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License 8 */ 9 10 /** 11 * Sitemap handler class 12 * 13 * @package de.linkm.sitemap 14 */ 2 15 class de_linkm_sitemap_handler_sitemap extends midcom_baseclasses_components_handler 3 16 { … … 173 186 { 174 187 $this->_request_data['item'] = $this->_nap->get_leaf($element[MIDCOM_NAV_ID]); 188 } 189 190 if (!$element[MIDCOM_NAV_NAME]) 191 { 192 continue; 175 193 } 176 194 trunk/src/de.linkm.sitemap/midcom/interfaces.php
r695 r5562 1 1 <?php 2 3 2 /** 4 3 * @package de.linkm.sitemap … … 27 26 28 27 $this->_component = 'de.linkm.sitemap'; 29 $this->_autoload_files = Array('viewer.php', 'admin.php', 'navigation.php'); 28 $this->_autoload_files = array 29 ( 30 'viewer.php', 31 'admin.php', 32 'navigation.php' 33 ); 30 34 } 31 35 } trunk/src/de.linkm.sitemap/style/xml-item.php
r5048 r5562 1 1 <?php 2 // $data =& $_MIDCOM->get_custom_context_data('request_data');2 // $data =& $_MIDCOM->get_custom_context_data('request_data'); 3 3 $item = $data['item']; 4 4 ?>
