Здраствуйте!
Сабж??
Пробувал так в page.tpl.php:
drupal_get_form('comment_form');
Видайот ошибку:
Fatal error: Unsupported operand types in /var/www/sites/dev.jacob/modules/comment/comment.module on line 1253
Если есть время помогити розабратса в чом дело, или подскажете другое ришения.
Комментарии
Вы говорите также как пишете?
Нет, родной язык украинский, русский понимаю полностью, а вот с грамматикой ужас.
Попробивал через templete.php передать форму, к сожелению не работает, но код кину может ктота подскажет как довести до ума.
template.php
<?php
function %theme_name%_theme(){
return array(
'comment_form' => array(
'arguments' => array('form' => NULL),
),
);
}
function %
theme_name%_comment_form($form) {// темизация работает
$output = drupal_render($form);
return $output;
}
$output = %theme_name%_comment_form($form);
function result(){
global $output;
return $output;
}?>
page.tpl.php
<?php print result(); ?>
Вивел наконецто:)
<?php print drupal_get_form('comment_form', array('nid' => $node->nid)); ?>