Seditio Source
Root |
./othercms/PHPFusion 9.10.20/widgets/featurebox/featurebox_widget.php
<?php
/*-------------------------------------------------------+
| PHPFusion Content Management System
| Copyright (C) PHP Fusion Inc
| https://phpfusion.com/
+--------------------------------------------------------+
| Filename: featurebox_widget.php
| Author: Frederick MC Chan (Chan)
+--------------------------------------------------------+
| This program is released as free software under the
| Affero GPL license. You can redistribute it and/or
| modify it under the terms of this license which you
| can read by viewing the included agpl.txt or online
| at www.gnu.org/licenses/agpl.html. Removal of this
| copyright header is strictly prohibited without
| written permission from the original author(s).
+--------------------------------------------------------*/
// Path Definitions
$lang = file_exists(WIDGETS."featurebox/locale/".LANGUAGE.".php") ? WIDGETS."featurebox/locale/".LANGUAGE.".php" : WIDGETS."featurebox/locale/English.php";
$widget_locale = fusion_get_locale('', $lang);

$widget_title = $widget_locale['FBW_0100'];
$widget_icon = 'featurebox.svg';
$widget_description = $widget_locale['FBW_0101'];
$widget_admin_file = "featurebox_admin.php";
$widget_display_file = "featurebox.php";
$widget_admin_callback = "featureboxWidgetAdmin";
$widget_display_callback = "featureboxWidget";