2021-09-10 19:06:49 +00:00
|
|
|
<?php
|
2021-09-10 19:18:51 +00:00
|
|
|
/**
|
|
|
|
* @brief postWidgetText, a plugin for Dotclear 2
|
2021-11-06 15:11:19 +00:00
|
|
|
*
|
2021-09-10 19:18:51 +00:00
|
|
|
* @package Dotclear
|
|
|
|
* @subpackage Plugin
|
2021-11-06 15:11:19 +00:00
|
|
|
*
|
2021-09-10 19:18:51 +00:00
|
|
|
* @author Jean-Christian Denis and Contributors
|
2021-11-06 15:11:19 +00:00
|
|
|
*
|
2021-09-10 19:18:51 +00:00
|
|
|
* @copyright Jean-Christian Denis
|
|
|
|
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
|
|
|
*/
|
2021-09-10 19:06:49 +00:00
|
|
|
if (!defined('DC_RC_PATH')) {
|
2021-09-10 19:18:51 +00:00
|
|
|
return null;
|
2021-09-10 19:06:49 +00:00
|
|
|
}
|
|
|
|
|
2021-10-29 23:12:43 +00:00
|
|
|
$d = dirname(__FILE__) . '/inc/';
|
|
|
|
|
2021-10-30 08:30:01 +00:00
|
|
|
$__autoload['postWidgetText'] = $d . 'class.postwidgettext.php';
|
|
|
|
$__autoload['adminPostWidgetText'] = $d . 'lib.pwt.admin.php';
|
2021-11-06 15:11:19 +00:00
|
|
|
$__autoload['listPostWidgetText'] = $d . 'lib.pwt.list.php';
|