Caution: This documentation is for eZ Publish legacy, from version 3.x to 6.x.
For 5.x documentation covering Platform see eZ Documentation Center, for difference between legacy and Platform see 5.x Architecture overview.

DesignExtensions

Summary

Sets which extensions that have designs.

Usage

 

DesignExtensions[]= extension1
DesignExtensions[]= extension2
...

Description

By default eZ Publish will only look for designs in the "/design" directory. If your extensions provide designs you must tell eZ Publish by providing the extension name in the DesignExtensions setting.

eZ Publish will look for designs in the directory "/extension/ extension_name/design/"

This setting is typically overriden in the design.ini.append in extensions.

Examples

DesignExtensions[]=myextension

eZ Publish will now search for designs in "/extension/myextension/design".

Frederik Holljen (04/04/2005 9:58 am)

Frederik Holljen (04/04/2005 11:00 am)


Comments

  • How to make it work on loading an extension

    I searched quite some time to find that, wondering why the templates in my new extension wern't foud!

    "This setting is typically overriden in the design.ini.append in extensions."

    Means you can add it to extension/extension_name/settings/design.ini.append.php so it works when ever the extension is loaded
    • Re: How to make it work on loading an extension

      This is really make sense.Now I got it.