2015-04-25 19:25:03 +00:00
|
|
|
<?php
|
2021-09-11 09:56:57 +00:00
|
|
|
/**
|
|
|
|
* @brief zoneclearFeedServer, a plugin for Dotclear 2
|
|
|
|
*
|
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
|
|
|
*
|
|
|
|
* @author Jean-Christian Denis, BG, Pierre Van Glabeke
|
|
|
|
*
|
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2015-04-25 19:25:03 +00:00
|
|
|
|
|
|
|
if (!defined('DC_RC_PATH')) {
|
|
|
|
|
2021-09-11 09:56:57 +00:00
|
|
|
return null;
|
2015-04-25 19:25:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ($core->getVersion('zoneclearFeedServer') !=
|
|
|
|
$core->plugins->moduleInfo('zoneclearFeedServer', 'version')) {
|
|
|
|
|
2021-09-11 09:56:57 +00:00
|
|
|
return null;
|
2015-04-25 19:25:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
$d = dirname(__FILE__).'/inc/';
|
|
|
|
|
|
|
|
$__autoload['zoneclearFeedServer'] = $d.'class.zoneclear.feed.server.php';
|
|
|
|
$__autoload['zcfsFeedsList'] = $d.'lib.zcfs.list.php';
|
|
|
|
$__autoload['zcfsEntriesList'] = $d.'lib.zcfs.list.php';
|
|
|
|
$__autoload['zcfsFeedsActionsPage'] = $d.'class.zcfs.feedsactions.php';
|
|
|
|
$__autoload['zcfsDefaultFeedsActions'] = $d.'class.zcfs.feedsactions.php';
|
|
|
|
|
|
|
|
# public url for page of description of the flux
|
|
|
|
$core->url->register(
|
2021-09-11 09:56:57 +00:00
|
|
|
'zoneclearFeedsPage',
|
|
|
|
'zcfeeds',
|
|
|
|
'^zcfeeds(.*?)$',
|
|
|
|
array('zcfsUrlHandler', 'zcFeedsPage')
|
2015-04-25 19:25:03 +00:00
|
|
|
);
|
2021-09-11 09:56:57 +00:00
|
|
|
/*
|
2015-04-25 19:25:03 +00:00
|
|
|
# Add to plugn soCialMe (writer part)
|
|
|
|
$__autoload['zcfsSoCialMeWriter'] = $d.'lib.zcfs.socialmewriter.php';
|
|
|
|
$core->addBehavior(
|
2021-09-11 09:56:57 +00:00
|
|
|
'soCialMeWriterMarker',
|
|
|
|
array('zcfsSoCialMeWriter', 'soCialMeWriterMarker')
|
2015-04-25 19:25:03 +00:00
|
|
|
);
|
|
|
|
$core->addBehavior(
|
2021-09-11 09:56:57 +00:00
|
|
|
'zoneclearFeedServerAfterFeedUpdate',
|
|
|
|
array('zcfsSoCialMeWriter', 'zoneclearFeedServerAfterFeedUpdate')
|
2015-04-25 19:25:03 +00:00
|
|
|
);
|
2021-09-11 09:56:57 +00:00
|
|
|
//*/
|
2015-04-25 19:25:03 +00:00
|
|
|
# Add to report on plugin activityReport
|
|
|
|
if (defined('ACTIVITY_REPORT')) {
|
2021-09-11 09:56:57 +00:00
|
|
|
require_once $d.'lib.zcfs.activityreport.php';
|
2015-04-25 19:25:03 +00:00
|
|
|
}
|