Friday 30 November 2007 8:31:56 am
Hello, What do you mean by match['module']? Is it a specific module/view extension or is it for overriding a node number of nodes?
If you are in an extension, you don't need to use the override.ini file since you will specify the template you wish to use in you view script by using the following line. $Result['content'] =& $tpl->fetch( 'design:eurofxref/overview.tpl' );
This is explained in the following page: http://ez.no/ezpublish/documentation/development/extensions/building_an_ez_publish_module
If you are trying to override a node then you can use any of the conditions which are specified in the override.ini documentation: http://ez.no/doc/ez_publish/technical_manual/3_10/reference/template_override_conditions You can maybe play with the match['parent'] or match['section'] or match['url_alias'] insted.
If this doesn't work, you can maybe try the urltranslator feature which is in the administrative interface: ->administration -> urltranslator
Check this out as well: it explains the url system: http://ez.no/doc/ez_publish/technical_manual/3_6/concepts_and_basics/url_translation
|