в форме комментариях ниже teaxarea вывводится вот такой текст: но инфа выводится. посему я полагаю, что оно где то в другом месте формируется..
* Адрес веб-страницы и E-mail адреса преобразуются в ссылки автоматически.
* Разрешённые HTML тэги:
* Разбивка строк и параграфов выполняется автоматически.
хочу вырубить это!
темизирую эту форму, удаляю из стека unset($form['comment_filter']['format'][1]["#description"])
Как вырубить отображение информации о форматировании
Главные вкладки
<ul> <ol> <li> <dl> <dt> <dd>
Комментарии
Не надо полагать, как говорится вся правда в коде
Удаляете где?
В каком хуке в каком модуле и т.д.
Хм ... я щас пытаюсь хакнуть filter.modul
Этим убирается ссыль на подсказки
/** return '
'. l(t('More information about formatting options'), 'filter/tips') .'
'; */}
Двумя следующими килятся все друпаловские подсказки по тегам
$items['filter/tips'] = array(
'title' => 'Compose tips',
'page callback' => 'filter_tips_long',
'access callback' => TRUE,
'type' => MENU_SUGGESTED_ITEM,
'file' => 'filter.pages.inc',
);
*/
function filter_filter_tips($delta, $format, $long = FALSE) {
global $base_url;-
-
- ')) {
switch ($delta) {
case 0:
if (variable_get("filter_html_$format", FILTER_HTML_STRIP) == FILTER_HTML_STRIP) {
if ($allowed_html = variable_get("allowed_html_$format", '
switch ($long) {
case 0:
return t('Allowed HTML tags: tags', array('tags' => $allowed_html));
case 1:
$output = '
'. t('Allowed HTML tags: tags', array('tags' => $allowed_html)) .'
';if (!variable_get("filter_html_help_$format", 1)) {
return $output;
}
$output .= t('
This site allows HTML content. While learning all of HTML may feel intimidating, learning how to use a very small number of the most basic HTML "tags" is very easy. This table provides examples for each tag that is enabled on this site.
For more information see W3C\'s HTML">http://www.w3.org/TR/html/">HTML Specifications or use your favorite search engine to find other sites that explain HTML.
');$tips = array(
'a' => array( t('Anchors are used to make links to other pages.'), ''. variable_get('site_name', 'Drupal') .''),
'br' => array( t('By default line break tags are automatically added, so use this tag to add additional ones. Use of this tag is different because it is not used with an open/close pair like all the others. Use the extra " /" inside the tag to maintain XHTML 1.0 compatibility'), t('Text with
line break')),
'p' => array( t('By default paragraph tags are automatically added, so use this tag to add additional ones.'), '
'. t('Paragraph one.') .'
'. t('Paragraph two.') .'
'),'strong' => array( t('Strong'), ''. t('Strong') .''),
'em' => array( t('Emphasized'), ''. t('Emphasized') .''),
'cite' => array( t('Cited'), ''. t('Cited') .''),
'code' => array( t('Coded text used to show programming source code'), ''. t('Coded') .'
'),
'b' => array( t('Bolded'), ''. t('Bolded') .''),
'u' => array( t('Underlined'), ''. t('Underlined') .''),
'i' => array( t('Italicized'), ''. t('Italicized') .''),
'sup' => array( t('Superscripted'), t('Superscripted')),
'sub' => array( t('Subscripted'), t('Subscripted')),
'pre' => array( t('Preformatted'), '
'),
'abbr' => array( t('Abbreviation'), t('Abbrev.')),
'acronym' => array( t('Acronym'), t('TLA')),
'blockquote' => array( t('Block quoted'), '
'),
'q' => array( t('Quoted inline'), ''. t('Quoted inline') .''),
'table' => array( t('Table'), '
'),
'tr' => NULL, 'td' => NULL, 'th' => NULL,
'del' => array( t('Deleted'), '
'. t('Deleted') .''),'ins' => array( t('Inserted'), ''. t('Inserted') .''),
'ol' => array( t('Ordered list - use the
'),
'ul' => array( t('Unordered list - use the
'),
'li' => NULL,
'dl' => array( t('Definition lists are similar to other HTML lists.
begins the definition list,- begins the definition term and
- begins the definition description.'), '
- '. t('First term') .'
- '. t('First definition') .'
- '. t('Second term') .'
- '. t('Second definition') .'
'),
'dt' => NULL, 'dd' => NULL,
'h1' => array( t('Header'), ''. t('Title') .''),
'h2' => array( t('Header'), '
'. t('Subtitle') .'
'),
'h3' => array( t('Header'), '
'. t('Subtitle three') .'
'),
'h4' => array( t('Header'), '
'. t('Subtitle four') .'
'),
'h5' => array( t('Header'), '
'. t('Subtitle five') .'
'),
'h6' => array( t('Header'), ''. t('Subtitle six') .'')
);
$header = array(t('Tag Description'), t('You Type'), t('You Get'));
preg_match_all('/<([a-z0-9]+)[^a-z0-9]/i', $allowed_html, $out);
foreach ($out[1] as $tag) {
if (array_key_exists($tag, $tips)) {
if ($tips[$tag]) {
$rows[] = array(
array('data' => $tips[$tag][0], 'class' => 'description'),
array('data' => ''. check_plain($tips[$tag][1]) .'', 'class' => 'type'),
array('data' => $tips[$tag][1], 'class' => 'get')
);
}
}
else {
$rows[] = array(
array('data' => t('No help provided for tag %tag.', array('%tag' => $tag)), 'class' => 'description', 'colspan' => 3),
);
}
}
$output .= theme('table', $header, $rows);
$output .= t('
Most unusual characters can be directly entered without any problems.
If you do encounter problems, try using HTML character entities. A common example looks like & for an ampersand & character. For a full list of entities see HTML\'s entities page. Some of the available characters include:');
$entities = array(
array( t('Ampersand'), '&'),
array( t('Greater than'), '>'),
array( t('Less than'), '<'),
array( t('Quotation mark'), '"'),
);
$header = array(t('Character Description'), t('You Type'), t('You Get'));
unset($rows);
foreach ($entities as $entity) {
$rows[] = array(
array('data' => $entity[0], 'class' => 'description'),
array('data' => ''. check_plain($entity[1]) .'', 'class' => 'type'),
array('data' => $entity[1], 'class' => 'get')
);
}
$output .= theme('table', $header, $rows);
return $output;
}
}
else {
return t('No HTML tags allowed');
}
}
break;
case 1:
switch ($long) {
case 0:
return t('Lines and paragraphs break automatically.');
case 1:
return t('Lines and paragraphs are automatically recognized. The
line break,
paragraph and
close paragraph tags are inserted automatically. If paragraphs are not recognized simply add a couple blank lines.');}
break;
case 2:
return t('Web page addresses and e-mail addresses turn into links automatically.');
}
}
*/
Проблема в том, что другие модули всё равно прописывают свои подсказки в filter/tips, например smiles и geshi filter
По все видимости лучше этого не делать, либо править каждый модуль.
в который раз better_formats
Хе-хе ))) Почти победа....
Я так понимаю, саму ноду и её виртуальное адресное пространство лучше не трогать... Так по идее безопаснее на будущее
так....
в template.php
function ideal38_theme() {
return array(
'comment_form' => array(
'arguments' => array('form' => NULL),
),
);
}
function ideal38_comment_form($form) {
unset($form['comment_filter']['format']);
unset($form["comment_filter"]['comment']["#suffix"]);
$output .= drupal_render($form);
return $output;
}
приблизительно так...
есть данные которые удалились из стека.
Продолжим диалог
Вам надо удалить полностью филдсет с форматами ввода и описаниями, или только описания?
И заодно уже уточните для всех пользователей включая админа или для определенных.
1)надо убрать описание
2)если можно, то оставим для админа.(пожалуй этого можно добиться проверкой на роль)
тогда свой модуль и на hook_form_alter unset элементу формы, только своему модулю вес поставьте "100"
ок, попробуем.