Files
Joomla-3.x-OctoPart-Shortcodes/shortcode.php

35 lines
433 B
PHP
Raw Permalink Normal View History

2017-08-14 15:09:47 +00:00
<?php
defined('_JEXEC') or die;
class PlgContentShortcode extends JPlugin {
protected $autoloadLanguage = true;
function onContentPrepare ($context, $article, $params, $limitstart )
{
$article->text = str_replace('[[::', '<a href="https://octopart.com/search?q=', $article->text);
$article->text = str_replace('::]]','" target="_blank"> &neArr; OctoPart.com</a>', $article->text);
return true;
}
}
?>