Code
אחד הלקוחות ביקש שנוריד את הטיפים של הפורמט בהזנה של תגובות
אז מצאתי את זה http://drupal.org/node/35122
בקיצור על מנת לחסוך לכם יש 2 Theme function שניתן לדרוס אותם :
הראשונה לטיפים והשניה לקישור למידע נוסף
<?php
/*
* Override filter.module's theme_filter_tips() function to disable tips display.
*/
function phptemplate_filter_tips($tips, $long = FALSE, $extra = '') {
return '';
}
function phptemplate_filter_tips_more_info () {
return '';
במידה ואתם רוצים לעצב את הרשימה של הקבצים המצורפים כמו זה

אתם יכולים לבצע Override ל upload_attachments
יצרו מחיצה icons תחת ה theme, פתחו את ה tar המצורף לשם, הוסיפו icons נוספים לפי הצורך
הוסיפו את קטע הקוד הבא ל template.php
function phptemplate_upload_attachments($files) {
$header = array(t('Attachment'), t('לחץ להורדה'));
$rows = array();
foreach ($files as $file) {
מצאתי כאןדוגמת קוד שימושית המאפשרת לראות את כל הפונקציות (לא רק של ה core) הניתנות לדריסה
all themeable functions of a Drupal Installation. (Core functions and the themeable functions of enabled modules on your server).
<?php
print '<ol>';
$functions = get_defined_functions();
foreach($functions['user'] as $function) {
if(substr($function,0,6)== 'theme_')
print "<li>$function</li>";
}
print '</ol>';
?>

