| Current Path : /proc/1908984/root/proc/1908984/root/home/digilove/www/41423/ |
| Current File : //proc/1908984/root/proc/1908984/root/home/digilove/www/41423/contentplugin.tar |
contentplugin.xml 0000644 00000002577 15235313254 0010175 0 ustar 00 <?xml version="1.0" encoding="utf-8"?>
<extension type="plugin" version="2.5" method="upgrade" group="acymailing">
<name>AcyMailing : trigger Joomla Content plugins</name>
<creationDate>November 2009</creationDate>
<version>3.7.0</version>
<author>Acyba</author>
<authorEmail>dev@acyba.com</authorEmail>
<authorUrl>http://www.acyba.com</authorUrl>
<copyright>Copyright (C) 2009-2016 ACYBA SAS - All rights reserved..</copyright>
<license>GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html</license>
<description>This plugin enables you to trigger the content plugin system on AcyMailing. The Joomla Content plugin system has not been developed to be triggered from the backend and so you may have some non compatible plugins, that's why this plugin is not enabled by default</description>
<files>
<filename plugin="contentplugin">contentplugin.php</filename>
</files>
<params addpath="/components/com_acymailing/params">
<param name="help" type="help" label="Help" description="Click on the help button to get some help" default="plugin-contentplugin"/>
</params>
<config>
<fields name="params" addfieldpath="/components/com_acymailing/params">
<fieldset name="basic">
<field name="help" type="help" label="Help" description="Click on the help button to get some help" default="plugin-contentplugin"/>
</fieldset>
</fields>
</config>
</extension>
contentplugin.php 0000644 00000006425 15235313254 0010160 0 ustar 00 <?php
/**
* @package AcyMailing for Joomla!
* @version 5.5.0
* @author acyba.com
* @copyright (C) 2009-2016 ACYBA S.A.R.L. All rights reserved.
* @license GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
*/
defined('_JEXEC') or die('Restricted access');
?><?php
class plgAcymailingContentplugin extends JPlugin
{
function __construct(&$subject, $config){
parent::__construct($subject, $config);
if(!isset($this->params)){
$plugin = JPluginHelper::getPlugin('acymailing', 'contentplugin');
$this->params = new acyParameter( $plugin->params );
}
$this->paramsContent = JComponentHelper::getParams('com_content');
JPluginHelper::importPlugin('content');
$this->dispatcherContent = JDispatcher::getInstance();
$excludedHandlers = array('plgContentEmailCloak','pluginImageShow');
$excludedNames = array('system' => array('SEOGenerator','SEOSimple'), 'content' => array('webeecomment','highslide','smartresizer','phocagallery'));
$excludedType = array_keys($excludedNames);
if(!ACYMAILING_J16){
foreach ($this->dispatcherContent->_observers as $id => $observer){
if (is_array($observer) AND in_array($observer['handler'],$excludedHandlers)){
$this->dispatcherContent->_observers[$id]['event'] = '';
}elseif(is_object($observer)){
if(in_array($observer->_type,$excludedType) AND in_array($observer->_name,$excludedNames[$observer->_type])){
$this->dispatcherContent->_observers[$id] = null;
}
}
}
}
if(!class_exists('JSite')) include_once(ACYMAILING_ROOT.'includes'.DS.'application.php');
}
function acymailing_replacetags(&$email,$send = true){
$art = new stdClass();
$art->title = $email->subject;
$art->introtext = $email->body;
$art->fulltext = $email->body;
$art->attribs = '';
$art->state=1;
$art->created_by=@$email->userid;
$art->images = '';
$art->id = 0;
$art->section = 0;
$art->catid = 0;
$context = 'com_acymailing';
try{
if(!empty($email->body)){
$art->text = $email->body;
if(!ACYMAILING_J16){
$resultsPlugin = $this->dispatcherContent->trigger('onPrepareContent', array (&$art, &$this->paramsContent, 0 ));
}else{
if($send) $art->text .= '{emailcloak=off}';
$resultsPlugin = $this->dispatcherContent->trigger('onContentPrepare', array ($context,&$art, &$this->paramsContent, 0 ));
if($send) $art->text = str_replace(array('{emailcloak=off}','{* emailcloak=off}'),'',$art->text);
}
$email->body = $art->text;
}
if(!empty($email->altbody)){
$art->text = $email->altbody;
if(!ACYMAILING_J16){
$resultsPlugin = $this->dispatcherContent->trigger('onPrepareContent', array (&$art, &$this->paramsContent, 0 ));
}else{
if($send) $art->text .= '{emailcloak=off}';
$resultsPlugin = $this->dispatcherContent->trigger('onContentPrepare', array ($context,&$art, &$this->paramsContent, 0 ));
if($send) $art->text = str_replace(array('{emailcloak=off}','{* emailcloak=off}'),'',$art->text);
}
$email->altbody = $art->text;
}
}catch(Exception $e){
acymailing_display(array('An error occured with the AcyMailing contentplugin plugin, you may want to disable it from the AcyMailing configuration page',$e->getMessage()),'error');
}
}
}//endclass
index.html 0000644 00000000054 15235313254 0006543 0 ustar 00 <html><body bgcolor="#FFFFFF"></body></html>