Herkes düzenleme modunda olup olmadığını kontrol etmek php kodunu biliyor mu? Ben düzenleme modunda yüzden veya değilim eğer çalışmak gerektiğinde benim tema nasıl göründüğünü düzenlemek istiyorum.
Ayrıca bu işlemek için bir sayfa şablonu yapabilirsiniz. Bu kontrol http://drupal.org/node/190815:
The list of suggested template files in order of specificity based on internal paths. One suggestion is made for every element of the current path, though numeric elements are not carried to subsequent suggestions. For example, "http://www.example.com/node/1/edit" would result in the following suggestions:
- sayfa-düğüm-edit.tpl.php
- sayfa-düğüm-1.tpl.php
- sayfa-node.tpl.php
- page.tpl.php
Gösterildiği gibi url argümanlar kontrol edebilirsiniz here.
if(arg(0) == 'node' && arg(2) == 'edit'){ /*...*/}