2016-08-07 01:06:14 +03:00
|
|
|
<?php
|
2016-08-07 13:51:09 +03:00
|
|
|
|
2016-08-07 14:26:30 +03:00
|
|
|
define('WIKIPEDIA_SUBJECT_TFA', 0); // Today's featured article
|
2016-08-07 13:51:09 +03:00
|
|
|
define('WIKIPEDIA_SUBJECT_DYK', 1); // Did you know...
|
|
|
|
|
2016-09-10 20:11:09 +03:00
|
|
|
class WikipediaBridge extends BridgeAbstract
|
|
|
|
{
|
2016-08-30 12:23:55 +03:00
|
|
|
const MAINTAINER = 'logmanoriginal';
|
|
|
|
const NAME = 'Wikipedia bridge for many languages';
|
|
|
|
const URI = 'https://www.wikipedia.org/';
|
|
|
|
const DESCRIPTION = 'Returns articles for a language of your choice';
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-30 12:23:55 +03:00
|
|
|
const PARAMETERS = [ [
|
2017-02-11 18:16:56 +03:00
|
|
|
'language' => [
|
|
|
|
'name' => 'Language',
|
|
|
|
'type' => 'list',
|
|
|
|
'title' => 'Select your language',
|
|
|
|
'exampleValue' => 'English',
|
|
|
|
'values' => [
|
|
|
|
'English' => 'en',
|
2022-03-25 02:02:38 +03:00
|
|
|
'Русский' => 'ru',
|
2017-02-11 18:16:56 +03:00
|
|
|
'Dutch' => 'nl',
|
|
|
|
'Esperanto' => 'eo',
|
|
|
|
'French' => 'fr',
|
|
|
|
'German' => 'de',
|
2022-07-01 16:10:30 +03:00
|
|
|
]
|
2016-08-27 22:03:26 +03:00
|
|
|
],
|
2017-02-11 18:16:56 +03:00
|
|
|
'subject' => [
|
|
|
|
'name' => 'Subject',
|
|
|
|
'type' => 'list',
|
|
|
|
'title' => 'What subject are you interested in?',
|
|
|
|
'exampleValue' => 'Today\'s featured article',
|
|
|
|
'values' => [
|
|
|
|
'Today\'s featured article' => 'tfa',
|
|
|
|
'Did you know…' => 'dyk'
|
2022-07-01 16:10:30 +03:00
|
|
|
]
|
2016-08-27 22:03:26 +03:00
|
|
|
],
|
2017-02-11 18:16:56 +03:00
|
|
|
'fullarticle' => [
|
|
|
|
'name' => 'Load full article',
|
|
|
|
'type' => 'checkbox',
|
|
|
|
'title' => 'Activate to always load the full article'
|
2022-07-01 16:10:30 +03:00
|
|
|
]
|
2016-08-27 22:03:26 +03:00
|
|
|
]];
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-27 22:03:26 +03:00
|
|
|
public function getURI()
|
|
|
|
{
|
2017-07-29 20:28:00 +03:00
|
|
|
if (!is_null($this->getInput('language'))) {
|
2017-02-15 00:36:33 +03:00
|
|
|
return 'https://'
|
|
|
|
. strtolower($this->getInput('language'))
|
|
|
|
. '.wikipedia.org';
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2017-02-15 00:36:33 +03:00
|
|
|
return parent::getURI();
|
2017-02-11 18:16:56 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-27 22:03:26 +03:00
|
|
|
public function getName()
|
|
|
|
{
|
2017-07-29 20:28:00 +03:00
|
|
|
switch ($this->getInput('subject')) {
|
2016-08-07 13:51:09 +03:00
|
|
|
case 'tfa':
|
|
|
|
$subject = WIKIPEDIA_SUBJECT_TFA;
|
|
|
|
break;
|
|
|
|
case 'dyk':
|
|
|
|
$subject = WIKIPEDIA_SUBJECT_DYK;
|
|
|
|
break;
|
2017-02-15 00:20:55 +03:00
|
|
|
default:
|
|
|
|
return parent::getName();
|
2016-08-07 13:51:09 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2017-07-29 20:28:00 +03:00
|
|
|
switch ($subject) {
|
2016-08-07 13:51:09 +03:00
|
|
|
case WIKIPEDIA_SUBJECT_TFA:
|
2017-02-11 18:16:56 +03:00
|
|
|
$name = 'Today\'s featured article from '
|
|
|
|
. strtolower($this->getInput('language'))
|
|
|
|
. '.wikipedia.org';
|
2016-08-07 13:51:09 +03:00
|
|
|
break;
|
|
|
|
case WIKIPEDIA_SUBJECT_DYK:
|
2017-02-11 18:16:56 +03:00
|
|
|
$name = 'Did you know? - articles from '
|
|
|
|
. strtolower($this->getInput('language'))
|
|
|
|
. '.wikipedia.org';
|
2016-08-07 13:51:09 +03:00
|
|
|
break;
|
|
|
|
default:
|
2017-02-11 18:16:56 +03:00
|
|
|
$name = 'Articles from '
|
|
|
|
. strtolower($this->getInput('language'))
|
|
|
|
. '.wikipedia.org';
|
2016-08-07 13:51:09 +03:00
|
|
|
break;
|
|
|
|
}
|
2017-02-11 18:16:56 +03:00
|
|
|
return $name;
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-25 02:24:53 +03:00
|
|
|
public function collectData()
|
|
|
|
{
|
2017-07-29 20:28:00 +03:00
|
|
|
switch ($this->getInput('subject')) {
|
2016-08-07 13:51:09 +03:00
|
|
|
case 'tfa':
|
|
|
|
$subject = WIKIPEDIA_SUBJECT_TFA;
|
|
|
|
break;
|
|
|
|
case 'dyk':
|
|
|
|
$subject = WIKIPEDIA_SUBJECT_DYK;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$subject = WIKIPEDIA_SUBJECT_TFA;
|
|
|
|
break;
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-28 02:25:33 +03:00
|
|
|
$fullArticle = $this->getInput('fullarticle');
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
// This will automatically send us to the correct main page in any language (try it!)
|
2016-09-26 00:22:33 +03:00
|
|
|
$html = getSimpleHTMLDOM($this->getURI() . '/wiki');
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
if (!$html) {
|
2016-09-26 00:22:33 +03:00
|
|
|
returnServerError('Could not load site: ' . $this->getURI() . '!');
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2016-08-22 02:25:56 +03:00
|
|
|
/*
|
2016-08-07 01:06:14 +03:00
|
|
|
* Now read content depending on the language (make sure to create one function per language!)
|
|
|
|
* We build the function name automatically, just make sure you create a private function ending
|
2017-02-11 18:16:56 +03:00
|
|
|
* with your desired language code, where the language code is upper case! (en -> getContentsEN).
|
2016-08-07 01:06:14 +03:00
|
|
|
*/
|
2017-02-11 18:16:56 +03:00
|
|
|
$function = 'getContents' . ucfirst(strtolower($this->getInput('language')));
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
if (!method_exists($this, $function)) {
|
2016-09-26 00:22:33 +03:00
|
|
|
returnServerError('A function to get the contents for your language is missing (\'' . $function . '\')!');
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
/*
|
|
|
|
* The method takes care of creating all items.
|
|
|
|
*/
|
2016-08-07 13:51:09 +03:00
|
|
|
$this->$function($html, $subject, $fullArticle);
|
2016-08-07 01:06:14 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 13:51:09 +03:00
|
|
|
/**
|
|
|
|
* Replaces all relative URIs with absolute ones
|
|
|
|
* @param $element A simplehtmldom element
|
|
|
|
* @return The $element->innertext with all URIs replaced
|
|
|
|
*/
|
2017-02-11 18:16:56 +03:00
|
|
|
private function replaceUriInHtmlElement($element)
|
|
|
|
{
|
2016-08-27 19:39:57 +03:00
|
|
|
return str_replace('href="/', 'href="' . $this->getURI() . '/', $element->innertext);
|
2016-08-07 13:51:09 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
/*
|
2017-02-11 18:16:56 +03:00
|
|
|
* Adds a new item to $items using a generic operation (should work for most
|
|
|
|
* (all?) wikis) $anchorText can be specified if the wiki in question doesn't
|
|
|
|
* use '...' (like Dutch, French and Italian) $anchorFallbackIndex can be
|
|
|
|
* used to specify a different fallback link than the first
|
|
|
|
* (e.g., -1 for the last)
|
2016-08-07 01:06:14 +03:00
|
|
|
*/
|
2017-02-14 19:28:07 +03:00
|
|
|
private function addTodaysFeaturedArticleGeneric(
|
|
|
|
$element,
|
|
|
|
$fullArticle,
|
|
|
|
$anchorText = '...',
|
|
|
|
$anchorFallbackIndex = 0
|
|
|
|
) {
|
2016-08-07 01:06:14 +03:00
|
|
|
// Clean the bottom of the featured article
|
2021-06-20 13:23:29 +03:00
|
|
|
if ($element->find('ul', -1)) {
|
|
|
|
$element->find('ul', -1)->outertext = '';
|
|
|
|
} elseif ($element->find('div', -1)) {
|
2019-06-02 14:03:26 +03:00
|
|
|
$element->find('div', -1)->outertext = '';
|
2021-06-20 13:23:29 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2017-02-11 18:16:56 +03:00
|
|
|
// The title and URI of the article can be found in an anchor containing
|
|
|
|
// the string '...' in most wikis ('full article ...')
|
2021-06-20 13:23:29 +03:00
|
|
|
$target = $element->find('p a', $anchorFallbackIndex);
|
2017-07-29 20:28:00 +03:00
|
|
|
foreach ($element->find('//a') as $anchor) {
|
|
|
|
if (strpos($anchor->innertext, $anchorText) !== false) {
|
2016-08-07 12:26:45 +03:00
|
|
|
$target = $anchor;
|
|
|
|
break;
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
2016-08-22 02:25:56 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-22 19:55:59 +03:00
|
|
|
$item = [];
|
2016-08-27 19:39:57 +03:00
|
|
|
$item['uri'] = $this->getURI() . $target->href;
|
2016-08-22 19:55:59 +03:00
|
|
|
$item['title'] = $target->title;
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
if (!$fullArticle) {
|
2017-02-11 18:16:56 +03:00
|
|
|
$item['content'] = strip_tags($this->replaceUriInHtmlElement($element), '<a><p><br><img>');
|
2016-08-22 02:25:56 +03:00
|
|
|
} else {
|
2017-02-11 18:16:56 +03:00
|
|
|
$item['content'] = $this->loadFullArticle($item['uri']);
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
$this->items[] = $item;
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 13:51:09 +03:00
|
|
|
/*
|
|
|
|
* Adds a new item to $items using a generic operation (should work for most (all?) wikis)
|
|
|
|
*/
|
2017-02-11 18:16:56 +03:00
|
|
|
private function addDidYouKnowGeneric($element, $fullArticle)
|
|
|
|
{
|
2017-07-29 20:28:00 +03:00
|
|
|
foreach ($element->find('ul', 0)->find('li') as $entry) {
|
2016-08-22 19:55:59 +03:00
|
|
|
$item = [];
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 14:02:10 +03:00
|
|
|
// We can only use the first anchor, there is no way of finding the 'correct' one if there are multiple
|
2016-08-27 19:39:57 +03:00
|
|
|
$item['uri'] = $this->getURI() . $entry->find('a', 0)->href;
|
2016-08-22 19:55:59 +03:00
|
|
|
$item['title'] = strip_tags($entry->innertext);
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 13:51:09 +03:00
|
|
|
if (!$fullArticle) {
|
2017-02-11 18:16:56 +03:00
|
|
|
$item['content'] = $this->replaceUriInHtmlElement($entry);
|
2016-08-22 02:25:56 +03:00
|
|
|
} else {
|
2017-02-11 18:16:56 +03:00
|
|
|
$item['content'] = $this->loadFullArticle($item['uri']);
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2016-08-07 13:51:09 +03:00
|
|
|
$this->items[] = $item;
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
2016-08-07 13:51:09 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
/**
|
|
|
|
* Loads the full article from a given URI
|
|
|
|
*/
|
2017-02-11 18:16:56 +03:00
|
|
|
private function loadFullArticle($uri)
|
|
|
|
{
|
2016-09-26 00:22:33 +03:00
|
|
|
$content_html = getSimpleHTMLDOMCached($uri);
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
if (!$content_html) {
|
2016-09-26 00:22:33 +03:00
|
|
|
returnServerError('Could not load site: ' . $uri . '!');
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
$content = $content_html->find('#mw-content-text', 0);
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
if (!$content) {
|
2016-09-26 00:22:33 +03:00
|
|
|
returnServerError('Could not find content in page: ' . $uri . '!');
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
// Let's remove a couple of things from the article
|
2016-08-07 13:51:09 +03:00
|
|
|
$table = $content->find('#toc', 0); // Table of contents
|
|
|
|
if (!$table === false) {
|
2019-06-02 14:03:26 +03:00
|
|
|
$table->outertext = '';
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
foreach ($content->find('ol.references') as $reference) { // References
|
2019-06-02 14:03:26 +03:00
|
|
|
$reference->outertext = '';
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2016-08-27 19:39:57 +03:00
|
|
|
return str_replace('href="/', 'href="' . $this->getURI() . '/', $content->innertext);
|
2016-08-07 01:06:14 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
/**
|
|
|
|
* Implementation for de.wikipedia.org
|
|
|
|
*/
|
2017-02-11 18:16:56 +03:00
|
|
|
private function getContentsDe($html, $subject, $fullArticle)
|
|
|
|
{
|
2017-07-29 20:28:00 +03:00
|
|
|
switch ($subject) {
|
2016-08-22 02:25:56 +03:00
|
|
|
case WIKIPEDIA_SUBJECT_TFA:
|
2021-06-20 13:23:29 +03:00
|
|
|
$element = $html->find('div[id=artikel] div.hauptseite-box-content', 0);
|
2017-02-11 18:16:56 +03:00
|
|
|
$this->addTodaysFeaturedArticleGeneric($element, $fullArticle);
|
2016-08-07 13:51:09 +03:00
|
|
|
break;
|
|
|
|
case WIKIPEDIA_SUBJECT_DYK:
|
2021-06-20 13:23:29 +03:00
|
|
|
$element = $html->find('div[id=wissenswertes]', 0);
|
2017-02-11 18:16:56 +03:00
|
|
|
$this->addDidYouKnowGeneric($element, $fullArticle);
|
2016-08-07 13:51:09 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2016-08-07 01:06:14 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
/**
|
|
|
|
* Implementation for fr.wikipedia.org
|
|
|
|
*/
|
2017-02-11 18:16:56 +03:00
|
|
|
private function getContentsFr($html, $subject, $fullArticle)
|
|
|
|
{
|
2017-07-29 20:28:00 +03:00
|
|
|
switch ($subject) {
|
2016-08-22 02:25:56 +03:00
|
|
|
case WIKIPEDIA_SUBJECT_TFA:
|
2017-04-28 20:15:23 +03:00
|
|
|
$element = $html->find('div[class=accueil_2017_cadre]', 0);
|
2017-02-11 18:16:56 +03:00
|
|
|
$this->addTodaysFeaturedArticleGeneric($element, $fullArticle, 'Lire la suite');
|
2016-08-07 13:51:09 +03:00
|
|
|
break;
|
|
|
|
case WIKIPEDIA_SUBJECT_DYK:
|
2017-04-28 20:15:23 +03:00
|
|
|
$element = $html->find('div[class=accueil_2017_cadre]', 2);
|
2017-02-11 18:16:56 +03:00
|
|
|
$this->addDidYouKnowGeneric($element, $fullArticle);
|
2016-08-07 13:51:09 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2016-08-07 01:06:14 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
/**
|
|
|
|
* Implementation for en.wikipedia.org
|
|
|
|
*/
|
2017-02-11 18:16:56 +03:00
|
|
|
private function getContentsEn($html, $subject, $fullArticle)
|
|
|
|
{
|
2017-07-29 20:28:00 +03:00
|
|
|
switch ($subject) {
|
2016-08-22 02:25:56 +03:00
|
|
|
case WIKIPEDIA_SUBJECT_TFA:
|
2016-08-07 13:51:09 +03:00
|
|
|
$element = $html->find('div[id=mp-tfa]', 0);
|
2022-11-15 02:30:51 +03:00
|
|
|
$this->addTodaysFeaturedArticleGeneric($element, $fullArticle, '...', -1);
|
2016-08-07 13:51:09 +03:00
|
|
|
break;
|
|
|
|
case WIKIPEDIA_SUBJECT_DYK:
|
|
|
|
$element = $html->find('div[id=mp-dyk]', 0);
|
2017-02-11 18:16:56 +03:00
|
|
|
$this->addDidYouKnowGeneric($element, $fullArticle);
|
2016-08-07 13:51:09 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2016-08-07 01:06:14 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2022-03-25 02:02:38 +03:00
|
|
|
/**
|
|
|
|
* Implementation for ru.wikipedia.org
|
|
|
|
*/
|
|
|
|
private function getContentsRu($html, $subject, $fullArticle)
|
|
|
|
{
|
|
|
|
switch ($subject) {
|
|
|
|
case WIKIPEDIA_SUBJECT_TFA:
|
|
|
|
$element = $html->find('div[id=main-tfa]', 0);
|
2022-11-15 02:30:51 +03:00
|
|
|
$this->addTodaysFeaturedArticleGeneric($element, $fullArticle, '...', -1);
|
2022-03-25 02:02:38 +03:00
|
|
|
break;
|
|
|
|
case WIKIPEDIA_SUBJECT_DYK:
|
|
|
|
$element = $html->find('div[id=main-dyk]', 0);
|
|
|
|
$this->addDidYouKnowGeneric($element, $fullArticle);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
}
|
|
|
|
|
2016-08-07 01:06:14 +03:00
|
|
|
/**
|
|
|
|
* Implementation for eo.wikipedia.org
|
|
|
|
*/
|
2017-02-11 18:16:56 +03:00
|
|
|
private function getContentsEo($html, $subject, $fullArticle)
|
|
|
|
{
|
2017-07-29 20:28:00 +03:00
|
|
|
switch ($subject) {
|
2016-08-22 02:25:56 +03:00
|
|
|
case WIKIPEDIA_SUBJECT_TFA:
|
2021-06-20 13:23:29 +03:00
|
|
|
$element = $html->find('div[id=mf-artikolo-de-la-monato]', 0);
|
|
|
|
$element->find('div', -2)->outertext = '';
|
2017-02-11 18:16:56 +03:00
|
|
|
$this->addTodaysFeaturedArticleGeneric($element, $fullArticle);
|
2016-08-07 13:51:09 +03:00
|
|
|
break;
|
|
|
|
case WIKIPEDIA_SUBJECT_DYK:
|
2021-06-20 13:23:29 +03:00
|
|
|
$element = $html->find('div.hp', 1)->find('table', 4)->find('td', -1);
|
2017-02-11 18:16:56 +03:00
|
|
|
$this->addDidYouKnowGeneric($element, $fullArticle);
|
2016-08-07 13:51:09 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2016-08-07 01:06:14 +03:00
|
|
|
}
|
2022-07-01 16:10:30 +03:00
|
|
|
|
2016-08-28 12:22:37 +03:00
|
|
|
/**
|
|
|
|
* Implementation for nl.wikipedia.org
|
|
|
|
*/
|
2017-02-11 18:16:56 +03:00
|
|
|
private function getContentsNl($html, $subject, $fullArticle)
|
|
|
|
{
|
2017-07-29 20:28:00 +03:00
|
|
|
switch ($subject) {
|
2016-08-28 12:22:37 +03:00
|
|
|
case WIKIPEDIA_SUBJECT_TFA:
|
2021-06-20 13:23:29 +03:00
|
|
|
$element = $html->find('td[id=segment-Uitgelicht] div', 0);
|
|
|
|
$element->find('p', 1)->outertext = '';
|
|
|
|
$this->addTodaysFeaturedArticleGeneric($element, $fullArticle, 'Lees verder');
|
2016-08-28 12:22:37 +03:00
|
|
|
break;
|
|
|
|
case WIKIPEDIA_SUBJECT_DYK:
|
2021-06-20 13:23:29 +03:00
|
|
|
$element = $html->find('td[id=segment-Wist_je_dat] div', 0);
|
2017-02-11 18:16:56 +03:00
|
|
|
$this->addDidYouKnowGeneric($element, $fullArticle);
|
2016-08-28 12:22:37 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-08-07 01:06:14 +03:00
|
|
|
}
|