document.write("
, - HTML- “” .
, , - ;-) - FAQ, .
, , - .
“”, -
(/themes/_/theme.php XOOPS/RunCMS, )
function theme_show_context($data) {
if (!isset($data['type'])) {
$data['type'] = 'horizontal';
}
if (!isset($data['limit'])) {
$data['limit'] = 3;
}
if (!isset($data['stat_id'])) {
$data['stat_id'] = 100;
}
$id = md5(serialize($data));
$html = "";
$GLOBALS['yandex_direct'][$id] = $html;
return '<'.'div class="yandex_direct_place" id="'.$id.'">
';
}
// calling yandex-direct
foreach ($GLOBALS['yandex_direct'] as $id => $html) {
echo $html;
}
theme_show_context(array('stat_id' => 10, 'limit' => 2));
Source: https://habr.com/ru/post/77347/
All Articles