Праздничные выходные: 31 декабря - 3 января и 7 - 9 января
Вторник - Пятница: 9:00-17:00, Суббота, Воскресенье, Понедельник - выходные
Продукция
$vid = 1; // id словаря
$arg_pos = 2; // номер позиции аргумента, в нашем случает 1
$cols = 3; // кол-во столбцов для отображения
//if (is_numeric(arg($arg_pos))) {
//$current = taxonomy_term_load(arg(2));
print '
';
// $tid = arg($arg_pos);
$terms = taxonomy_get_children($tid, $vid);
// print_r($terms);
if (!empty($terms)) {
$total = count($terms);
foreach ($terms as $tid => $term) {
print '
$image = field_get_items('taxonomy_term', $term, 'field_images');
if($image){
$output = field_view_value('taxonomy_term', $term, 'field_images', $image[0], array('type' => "image", "settings" => array( "image_style" => "thumbnail", "image_link" => "content",)));
print '
';
}
$term_uri = taxonomy_term_uri($term); // get array with path
$term_path = $term_uri['path'];
$taxonomy_path_alias = drupal_lookup_path('alias', $term_path);
print l($term->name, $taxonomy_path_alias)."
";
}
}
//}
?>