Log in

View Full Version : Admin Delete Template Link


Slynderdale
08-27-2004, 10:00 PM
I noticed one thing, that there was no delete link for the templates in the template list. This got annoying when I added templates and wanted to delete them later, so I made a fix.

Note:
When you click delete, it will ask you if you want to revert the template, if you choose yes, it will delete it and you can't get it back.

in includes/adminfunctions_templates.php find:

case $styleid: // template is customized for this specific style
return "$indent<li class=\"col-c\">$template[title]" .
construct_link_code($vbphrase['edit'], "template.php?$session[sessionurl]do=edit&amp;templateid=$template[templateid]&amp;dostyleid=$template[styleid]$LINKEXTRA").
construct_link_code($vbphrase['revert'], "template.php?$session[sessionurl]do=delete&amp;templateid=$template[templateid]&amp;dostyleid=$template[styleid]$LINKEXTRA").
construct_link_code($vbphrase['view_original'], "template.php?$session[sessionurl]do=view&amp;title=" . urlencode($template['title']), 1).
"</li>\n";


and replace it with:

case $styleid: // template is customized for this specific style
return "$indent<li class=\"col-c\">$template[title]" .
construct_link_code($vbphrase['edit'], "template.php?$session[sessionurl]do=edit&amp;templateid=$template[templateid]&amp;dostyleid=$template[styleid]$LINKEXTRA").
construct_link_code($vbphrase['revert'], "template.php?$session[sessionurl]do=delete&amp;templateid=$template[templateid]&amp;dostyleid=$template[styleid]$LINKEXTRA").
construct_link_code($vbphrase['delete'], "template.php?$session[sessionurl]do=delete&amp;templateid=$template[templateid]&amp;dostyleid=$template[styleid]$LINKEXTRA").
construct_link_code($vbphrase['view_original'], "template.php?$session[sessionurl]do=view&amp;title=" . urlencode($template['title']), 1).
"</li>\n";



Thats all.

MrNase
08-28-2004, 04:42 PM
Why don't just use the revert Template Link?! It does exactly the same :)

nexialys
08-28-2004, 06:17 PM
because you may need to delete the original... when you're not in debug mode, you don't have access to the original..

integra99
08-28-2004, 06:35 PM
because you may need to delete the original... when you're not in debug mode, you don't have access to the original..
Uhh, the original? If you add a template, you click the revert button and it deleted the template... I'm confused.

kall
08-28-2004, 10:08 PM
because you may need to delete the original... when you're not in debug mode, you don't have access to the original..
If you have added a template, and you're not in debug mode...you don't add it to the Master Style.

This hack is a little superflouous.