Extra Block Types (EBT) - New Layout Builder experience❗

Extra Block Types (EBT) - styled, customizable block types: Slideshows, Tabs, Cards, Accordions and many others. Built-in settings for background, DOM Box, javascript plugins. Experience the future of layout building today.

Demo EBT modules Download EBT modules

❗Extra Paragraph Types (EPT) - New Paragraphs experience

Extra Paragraph Types (EPT) - analogical paragraph based set of modules.

Demo EPT modules Download EPT modules

Scroll

Темизация каталога таксономии

Темизация каталога таксономии
, by

Добрый день, подскажите пжлста кто сталкивался с темизацией таксономии, имеется обычный катол продукции, по стандарту выводится Картинка раздела, далее название раздела, и вывод дочерних терминов. Мне необходимо поменять порядок... а именно, чтобы сначало выводилось название раздела, далее картинка и уже потом список терминов(подразделов)... во views использую код для вывода терминов:

 

<?php

$vid = 4;

$cols = 1;

$limit = 5000;

 

$tree = taxonomy_get_tree($vid, 0, -1, 1);

if (!empty($tree)) {

  $output = '<table class="catalog-root">';

  $count = 0;

  $total = count($tree);

  

  foreach ($tree as $tid => $term) {

    if ($count % $cols == 0) {

      $output .= '<tr>';

    }

 

$item = '<center>'.l(taxonomy_image_display($term->tid), taxonomy_term_path($term),array('html' => TRUE)).'</a></BR>';

$item .= '<strong><font style="font-size:25px; font-family: verdana;">'.l($term->name, taxonomy_term_path($term)).'</font></strong><BR>';

 

    $children_list = array();

    $children = taxonomy_get_children($term->tid, $vid);

    $i = 1;

    foreach (taxonomy_get_children($term->tid, $vid) as $child) {

      $children_list[] = l($child->name, taxonomy_term_path($child));

      if ($limit != 0 && $i >= $limit) break;

      $i++;

    }

    if (count($children) > $limit) {

      $children_list[] = l('...', taxonomy_term_path($term));

    }

    $count++;

    $item .= implode(' <br> ', $children_list);

    $output .= '<td align="center">'. $item .'</td>';

    if ($count % $cols == 0 || $count == $total) {

      $output .= '</tr>';

    }

  }

  $output .= '</table>';

  

  return $output;

}

?>

 

Вроде бы все просто, но видимо я слаб в пхп, для меня не понятно что означает '$item =' и '$item .=' что за точка такая непонимаю :) Заранее спасибо... 

1 answer
votes: 1006
Answer

Точка означает сложение строки, если перед знаком равно, то прибавление к переменной еще одной строчки. А чем не устраивает views? Через него не получается вывести?


Разъевали туман :) ну теперь ясно почему после того как я местами меняю $term = и $term .= ошибку выдает, ну щас попробую) ну через views я незнаю даже я такой код использую) 


НУ все, сроки местами поменял уже со знанием того что точка означает :)

$item = '<center><strong><font style="font-size:25px; font-family: verdana;">'.l($term->name, taxonomy_term_path($term)).'</font></strong></BR>';

$item .= '<center>'.l(taxonomy_image_display($term->tid), taxonomy_term_path($term),array('html' => TRUE)).'</a></BR>';