Парсер Мое видео.mail.ru [РЕШЕНО]
Открываем в редакторе:
/engine/modules/text/Text.class.php
Находим:
Вставляем ниже:
/engine/modules/text/Text.class.php
Находим:
public function VideoParser($sText) {
Вставляем ниже:
/** * mail.ru */ $sText = preg_replace('/<video>http:\/\/(?:www\.|)my\.mail\.ru\/([a-zA-Z0-9_\-\.]+)\/([a-zA-Z0-9_\-]+)\/video\/([a-zA-Z0-9_\-]+)\/(\d+)\.html.*<\/video>/Ui', '<iframe src="https://videoapi.my.mail.ru/videos/embed/$1/$2/$3/$4.html" width="626" height="367" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>', $sText);