Gunirs
Проверенные
- Сообщения
- 94
- Реакции
- 88
- Баллы
- 730
Привет всем, нужна помощь.
Чтобы я не делал, ошибка одна:
Could not execute callback Example_index::getHtml() - Not callable.
В шаблон sidebar_visitor_panel пихал это:
<xen:callback class="Example_Index" method="getHtml"></xen:callback>
Также, создал в папке library папку Example. В папке самой файл index.php
Содержимое index.php:
Чтобы я не делал, ошибка одна:
Could not execute callback Example_index::getHtml() - Not callable.
В шаблон sidebar_visitor_panel пихал это:
<xen:callback class="Example_Index" method="getHtml"></xen:callback>
Также, создал в папке library папку Example. В папке самой файл index.php
Содержимое index.php:
PHP:
<?php
class Example_Index
{
public static function getHtml()
{
$text = '12345';
return $text;
}
}
?>