diff options
author | vincent-peugnet <v.peugnet@free.fr> | 2018-12-09 12:10:16 +0100 |
---|---|---|
committer | vincent-peugnet <v.peugnet@free.fr> | 2018-12-09 12:10:16 +0100 |
commit | ae0693d074a63412e7ab9587520096cb60a48e64 (patch) | |
tree | 269cbfb204858f8a6b47f061abdc0101878de2d8 /app/view/templates/editleftbar.php | |
parent | 0cdf3e007ee05880ed290865ecd911bbf508d565 (diff) | |
download | wcms-ae0693d074a63412e7ab9587520096cb60a48e64.tar.gz wcms-ae0693d074a63412e7ab9587520096cb60a48e64.zip |
media parser
Diffstat (limited to 'app/view/templates/editleftbar.php')
-rw-r--r-- | app/view/templates/editleftbar.php | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/app/view/templates/editleftbar.php b/app/view/templates/editleftbar.php index 09c13f9..ff08bfc 100644 --- a/app/view/templates/editleftbar.php +++ b/app/view/templates/editleftbar.php @@ -56,20 +56,20 @@ if(!empty($art->templatecss())) { ?> <div class="subtemplate"> - <input type="checkbox" name="ireccursivecss" id="ireccursivecss" <?= $art->template()['cssreccursive'] === true ? 'checked' : '' ?>> - <label for="ireccursivecss">Reccursive template</label> + <input type="checkbox" name="templateoptions['reccursivecss']" id="oreccursivecss" <?= $art->template()['cssreccursive'] === true ? 'checked' : '' ?>> + <label for="oreccursivecss">Reccursive template</label> </div> <div class="subtemplate"> - <input type="checkbox" name="iquickcss" id="iquickcss" <?= $art->template()['cssquickcss'] === true ? 'checked' : '' ?>> - <label for="iquickcss">Quickcss</label> + <input type="checkbox" name="templateoptions['quickcss']" id="oquickcss" <?= $art->template()['cssquickcss'] === true ? 'checked' : '' ?>> + <label for="oquickcss">Quickcss</label> </div> <div class="subtemplate"> - <input type="checkbox" name="iexternalcss" id="iexternalcss" <?= $art->template()['externalcss'] === true ? 'checked' : '' ?>> - <label for="iexternalcss">External CSS</label> + <input type="checkbox" name="templateoptions['externalcss']" id="oexternalcss" <?= $art->template()['externalcss'] === true ? 'checked' : '' ?>> + <label for="pexternalcss">External CSS</label> </div> <div class="subtemplate"> - <input type="checkbox" name="ifavicon" id="ifavicon" <?= $art->template()['cssfavicon'] === true ? 'checked' : '' ?>> - <label for="ifavicon">Favicon</label> + <input type="checkbox" name="templateoptions['favicon']" id="ofavicon" <?= $art->template()['cssfavicon'] === true ? 'checked' : '' ?>> + <label for="ofavicon">Favicon</label> </div> <?php } |