Created
February 1, 2013 08:16
-
-
Save raramuridesign/4690066 to your computer and use it in GitHub Desktop.
Snippet to change the option for adding a logo module into the T3 Framework. Extend the option by override the parameter logotype defined in plugins/system/t3/base/params/template.xml. Example, add following into part of templateDetails.xml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<fieldset name="theme_params" label="T3_THEME_LABEL" description="T3_THEME_DESC"> | |
<field name="logotype" type="list" default="text" | |
label="T3_THEME_LOGOTYPE_LABEL" | |
description="T3_THEME_LOGOTYPE_DESC" > | |
<option value="text">T3_THEME_LOGOTYPE_TEXT</option> | |
<option value="image">T3_THEME_LOGOTYPE_IMAGE</option> | |
<option value="image">T3_THEME_LOGOTYPE_MODULE</option> | |
</field> | |
</fieldset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment