├── README.markdown ├── content ├── content.templates.php └── templates │ ├── class.tpl │ ├── viewEdit.xsl │ ├── viewIndex.xsl │ ├── xsl-html.tpl │ └── xsl-plain.tpl ├── extension.driver.php ├── extension.meta.xml ├── lang └── lang.de.php ├── lib ├── class.emailtemplate.php ├── class.emailtemplatemanager.php └── class.extensionpage.php └── license.txt /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/README.markdown -------------------------------------------------------------------------------- /content/content.templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/content/content.templates.php -------------------------------------------------------------------------------- /content/templates/class.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/content/templates/class.tpl -------------------------------------------------------------------------------- /content/templates/viewEdit.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/content/templates/viewEdit.xsl -------------------------------------------------------------------------------- /content/templates/viewIndex.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/content/templates/viewIndex.xsl -------------------------------------------------------------------------------- /content/templates/xsl-html.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/content/templates/xsl-html.tpl -------------------------------------------------------------------------------- /content/templates/xsl-plain.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/content/templates/xsl-plain.tpl -------------------------------------------------------------------------------- /extension.driver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/extension.driver.php -------------------------------------------------------------------------------- /extension.meta.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/extension.meta.xml -------------------------------------------------------------------------------- /lang/lang.de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/lang/lang.de.php -------------------------------------------------------------------------------- /lib/class.emailtemplate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/lib/class.emailtemplate.php -------------------------------------------------------------------------------- /lib/class.emailtemplatemanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/lib/class.emailtemplatemanager.php -------------------------------------------------------------------------------- /lib/class.extensionpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/lib/class.extensionpage.php -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michael-e/email_template_manager/HEAD/license.txt --------------------------------------------------------------------------------