diff options
author | Kevin Chabowski <kevin@kch42.de> | 2012-05-20 13:00:31 +0200 |
---|---|---|
committer | Kevin Chabowski <kevin@kch42.de> | 2012-05-20 13:00:31 +0200 |
commit | 793b0e31beb22fe33402c8a9ceebf47a5a950635 (patch) | |
tree | e85697db943d0aa4b32821125324fbd1ba557616 /ratatoeskr/templates/src/systemtemplates | |
parent | 1bfb9653d6e9139445ca9cde5808228c3b16399e (diff) | |
download | ratatoeskr-cms-feature-plugin-articledata.tar.gz ratatoeskr-cms-feature-plugin-articledata.tar.bz2 ratatoeskr-cms-feature-plugin-articledata.zip |
Plugins can now hook into the Article editor.feature-plugin-articledata
* Plugins can display additional fields in the article editor.
* Plugins can perform actions when saving an article and even veto the
saving.
* Plugins can get their ArticleExtradata objects.
Diffstat (limited to 'ratatoeskr/templates/src/systemtemplates')
-rw-r--r-- | ratatoeskr/templates/src/systemtemplates/content_write.html | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/ratatoeskr/templates/src/systemtemplates/content_write.html b/ratatoeskr/templates/src/systemtemplates/content_write.html index 82c86c4..3d63c61 100644 --- a/ratatoeskr/templates/src/systemtemplates/content_write.html +++ b/ratatoeskr/templates/src/systemtemplates/content_write.html @@ -49,6 +49,11 @@ </select> </p> <p><ste:get_translation for="allow_comments" />: <input type="checkbox" name="allow_comments" value="yes" ?{$allow_comments|checked="checked" |}/></p> + + <ste:foreach array="displayed_plugins" value="plugin"> + <h2><ste:escape>$plugin[label]</ste:escape></h2> + <ste:load name="$plugin[template]" /> + </ste:foreach> </div> <div class="column_main"> |