MyBB.de Forum
Edit Button - Druckversion

+- MyBB.de Forum (https://www.mybb.de/forum)
+-- Forum: Anpassungen (https://www.mybb.de/forum/forum-47.html)
+--- Forum: Theme-Diskussionen (https://www.mybb.de/forum/forum-84.html)
+--- Thema: Edit Button (/thread-7681.html)



Edit Button - Dave - 14.11.2007

Hi, ich habe mich jetzt durch sämtliche Templates gesucht, aber ich finde es nicht. In welchem Template steht der Code für den Edit Button?
MfG
Dave


RE: Edit Button - linwinman - 14.11.2007

Hallo Dave,

suchst und meinst du vllt. den Code im Template "postbit_edit"?
Code:
<a href="editpost.php?pid={$post['pid']}" id="edit_post_{$post['pid']}"><img src="{$theme['imglangdir']}/postbit_edit.gif" alt="{$lang->postbit_edit}" title="{$lang->postbit_edit}" /></a>
<script type="text/javascript">
    document.write('<div id="edit_post_{$post['pid']}_popup" class="popup_menu" style="display: none;"><div class="popup_item_container"><a href="javascript:;" onclick="Thread.quickEdit({$post['pid']});" class="popup_item">{$lang->postbit_quick_edit}<\/a><\/div><div class="popup_item_container"><a href="editpost.php?pid={$post['pid']}" class="popup_item">{$lang->postbit_full_edit}<\/a><\/div><\/div>');
    new PopupMenu("edit_post_{$post['pid']}");
</script>



RE: Edit Button - Dave - 14.11.2007

Perfekt, danke