コード例 #1
0
ファイル: PathLinks.php プロジェクト: gingerP/shop
 private function buildPathLink($data)
 {
     $links = [];
     $zIndex = 10;
     $pathIndex = 0;
     $arrow = new Div();
     $arrow->addStyleClass("path_link_item_arrow_right");
     for ($index = 0; $index < count($data); $index++) {
         $node = new Div();
         $node->addAttributes(["xmlns:v" => "http://rdf.data-vocabulary.org/#", "typeof" => "v:Breadcrumb"]);
         $node->addAttribute("style", "z-index: " . $zIndex--);
         $node->addStyleClass("level" . ($index + 1));
         if (count($data[$index]) > 1 && strlen(trim($data[$index][1])) > 0) {
             $pathNode = new A();
             $pathNode->addAttributes(["rel" => "v:url", "property" => "v:title"]);
             $pathNode->addAttribute("href", $data[$index][1]);
         } else {
             $pathNode = new Div();
         }
         $trimText = Utils::trimStr($data[$index][0], Constants::DEFAULT_TEXT_LENGTH_FOR_CATALOG_PATH_LINK);
         $pathNode->addChild($trimText);
         $pathNode->addStyleClasses(["path_link_item_text", $index > 0 ? "not_level_first_level" : ""]);
         array_push($links, $node->addChildList([$pathNode]));
     }
     return $links;
 }
コード例 #2
0
ファイル: Item.php プロジェクト: gingerP/shop
 public static function getCompactItemView($name, $images, $itemId, $pageNumber, $num, $key, $valueToSearch, $type, $trimName, $isHighLightElement)
 {
     $blackOut = new Div();
     $blackOut->addStyleClasses(["blackout", "catalog_item_button_container"]);
     $blackOut->addAttributes(["itemscope" => "", "itemtype" => "http://data-vocabulary.org/Product"]);
     $mainDiv = new Div();
     $blackOut->addChild($mainDiv);
     TagUtils::createShadow($mainDiv);
     $mainDiv->addStyleClasses(["simple_item_compact", $isHighLightElement ? Constants::HIGH_LIGHT_ELEMENT : ""]);
     $imagesContainer = new Div();
     $imagesContainer->addStyleClass("catalog_img_container");
     $mainDiv->addChild($imagesContainer);
     $index = 0;
     foreach ($images as $image) {
         if ($index == 1) {
             break;
         }
         $imgView = new Img();
         $imgView->addAttributes(array("src" => addslashes($image), "alt" => $name, TagLabels::ON_CLICK => "openSimpleImg(arguments[0])"));
         $imagesContainer->addChild($imgView);
         $index++;
     }
     if ($type == 'HARD') {
         $url = URLBuilder::getCatalogLinkForSingleItem($pageNumber, $num, $itemId, array(UrlParameters::KEY => $key, UrlParameters::SEARCH_VALUE => $valueToSearch));
         $mainDiv->addStyleClass("cursor_pointer");
         $link = TagUtils::createNote($trimName, "");
         $blackOut->addChild($link);
         $blackOut->addChild(self::getItemButton($url));
     } elseif ($type == 'SIMPLE') {
         $text = TagUtils::createNote($trimName, "");
         $blackOut->addChild($text);
     }
     return $blackOut;
 }