function initialize($config, $content) { // tables which will be used in generated content $output = array('arts' => array(), 'list' => array()); // Generating content $counter = 0; // for ($i = 0; $i < count($content); $i++) { if ($i < $config['news_column'] * $config['news_rows'] * $config['news_full_pages']) { // GENERATING NEWS CONTENT if ($config['use_own_article_format'] == 1) { $generated_content = NSP_GK5_Article_Format::generateLayout($config, $content[$i]); } else { // GENERATING HEADER $news_header = NSP_GK5_xml_file_View::header($config, $content[$i]); // GENERATING IMAGE $news_image = NSP_GK5_xml_file_View::image($config, $content[$i]); // GENERATING READMORE $news_readmore = NSP_GK5_xml_file_View::readMore($config, $content[$i]); // GENERATING TEXT $news_text = NSP_GK5_xml_file_View::text($config, $content[$i], $news_readmore); // GENERATE NEWS INFO $news_info = NSP_GK5_xml_file_View::info($config, $content[$i]); // GENERATE NEWS INFO2 $news_info2 = NSP_GK5_xml_file_View::info($config, $content[$i], 2); // GENERATE CONTENT FOR TAB $generated_content = ''; // initialize variable // for ($j = 1; $j < 10; $j++) { // if ($config['wrap_content'] == 1 && $config['news_image_order'] == 1) { if ($j == 2) { $generated_content .= '<div class="gkArtContentWrap">'; } } // if ($config['news_header_order'] == $j) { $generated_content .= $news_header; } if ($config['news_image_order'] == $j) { $generated_content .= $news_image; } if ($config['news_text_order'] == $j) { $generated_content .= $news_text; } if ($config['news_info_order'] == $j) { $generated_content .= $news_info; } if ($config['news_info2_order'] == $j) { $generated_content .= $news_info2; } } // if ($config['news_content_readmore_pos'] != 'after') { $generated_content .= $news_readmore; } // if ($config['wrap_content'] == 1 && $config['news_image_order'] == 1) { $generated_content .= '</div>'; } } // creating table with news content array_push($output['arts'], $generated_content); } else { array_push($output['list'], NSP_GK5_xml_file_View::lists($config, $content[$i], $counter)); // $counter++; } } // return the results array return $output; }
static function lists($config, $item, $num) { $odd = $num % 2; if ($config['news_short_pages'] > 0) { $text = ''; $title = ''; $image = ''; $readmore = ''; $link = $item['url']; if ($config['list_text_limit'] > 0) { $text = NSP_GK5_Utils::cutText(strip_tags(preg_replace("/\\{.+?\\}/", "", $item['text'])), $config, 'list_text_limit', '…'); $text = preg_replace("/\\{.+?\\}/", "", $text); if (JString::strlen($text) > 0) { $text = '<p>' . $text . '</p>'; } } if ($config['list_title_limit'] > 0) { $title = htmlspecialchars($item['title']); $title = NSP_GK5_Utils::cutText($title, $config, 'list_title_limit', '…'); $title = str_replace('"', """, $title); if (JString::strlen($title) > 0) { $title = '<h4><a href="' . $link . '" title="' . htmlspecialchars($item['title']) . '">' . $title . '</a></h4>'; } } if ($config['links_image'] == 1) { $image = NSP_GK5_xml_file_View::image($config, $item, false, false, true); } if ($config['links_readmore'] == 1) { $readmore = '<a class="readon" href="' . $link . '">' . (trim($config['readmore_text']) != '' ? $config['readmore_text'] : JText::_('MOD_NEWS_PRO_GK5_NSP_READMORE')) . '</a>'; } // creating rest news list return '<li class="' . ($odd == 1 ? 'odd' : 'even') . '">' . $image . ($image != '' ? '<div>' . $title . $text . $readmore . '</div>' : $title . $text . $readmore) . '</li>'; } else { return ''; } }