mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
172 lines
6.4 KiB
PHP
172 lines
6.4 KiB
PHP
<?php
|
|
/*
|
|
+ ----------------------------------------------------------------------------+
|
|
| e107 website system
|
|
|
|
|
| Copyright (C) 2008-2009 e107 Inc (e107.org)
|
|
| http://e107.org
|
|
|
|
|
|
|
|
| Released under the terms and conditions of the
|
|
| GNU General Public License (http://gnu.org).
|
|
|
|
|
| $Source: /cvs_backup/e107_0.8/e107_plugins/featurebox/admin_config.php,v $
|
|
| $Revision: 1.9 $
|
|
| $Date: 2009-11-24 14:48:31 $
|
|
| $Author: e107coders $
|
|
+----------------------------------------------------------------------------+
|
|
*/
|
|
require_once("../../class2.php");
|
|
if (!getperms("P") || !plugInstalled('featurebox'))
|
|
{
|
|
header("location:".e_BASE."index.php");
|
|
exit;
|
|
}
|
|
|
|
include_lan(e_PLUGIN."featurebox/languages/".e_LANGUAGE."_admin_featurebox.php");
|
|
|
|
class fb_admin extends e_admin_dispatcher
|
|
{
|
|
|
|
protected $modes = array(
|
|
'main' => array(
|
|
'controller' => 'fb_main_ui',
|
|
'path' => null,
|
|
'ui' => 'fb_admin_form_ui',
|
|
'uipath' => null
|
|
),
|
|
'cat' => array(
|
|
'controller' => 'fb_cat_ui',
|
|
'path' => null,
|
|
'ui' => 'fb_cat_form_ui',
|
|
'uipath' => null
|
|
)
|
|
);
|
|
|
|
protected $adminMenu = array(
|
|
'main/list' => array('caption'=> 'Featurebox List', 'perm' => 'P'),
|
|
'main/create' => array('caption'=> 'Create Featurebox Entry', 'perm' => 'P'),
|
|
'cat/list' => array('caption'=> 'Categories', 'perm' => 'P'),
|
|
'cat/create' => array('caption'=> "Create Category", 'perm' => 'P'),
|
|
// 'main/prefs' => array('caption'=> LAN_PREFS, 'perm' => '0'),
|
|
// 'main/custom' => array('caption'=> 'Custom Page', 'perm' => '0')
|
|
);
|
|
|
|
protected $adminMenuAliases = array(
|
|
'main/edit' => 'main/list'
|
|
);
|
|
|
|
protected $menuTitle = 'featurebox';
|
|
}
|
|
|
|
class fb_cat_ui extends e_admin_ui
|
|
{
|
|
protected $pluginTitle = 'Featurebox';
|
|
protected $pluginName = 'plugin';
|
|
protected $table = "featurebox_cat";
|
|
protected $pid = "fb_cat_id";
|
|
protected $perPage = 0; //no limit
|
|
|
|
protected $fields = array(
|
|
'checkboxes' => array('title'=> '', 'type' => null, 'width' =>'5%', 'forced'=> TRUE, 'thclass'=>'center', 'class'=>'center'),
|
|
'fb_cat_id' => array('title'=> LAN_ID, 'type' => 'number', 'width' =>'5%', 'forced'=> TRUE),
|
|
'fb_cat_title' => array('title'=> LAN_TITLE, 'type' => 'text', 'width' => 'auto', 'thclass' => 'left'),
|
|
'fb_cat_class' => array('title'=> LAN_VISIBILITY, 'type' => 'userclass', 'width' => 'auto', 'data' => 'int'),
|
|
'fb_cat_order' => array('title'=> LAN_ORDER, 'type' => 'text', 'width' => '5%', 'thclass' => 'left' ),
|
|
'options' => array('title'=> LAN_OPTIONS, 'type' => null, 'width' => '10%', 'forced'=>TRUE, 'thclass' => 'center last', 'class' => 'center')
|
|
);
|
|
}
|
|
|
|
/*class fb_cat_form_ui extends e_admin_form_ui
|
|
{
|
|
}*/
|
|
|
|
class fb_main_ui extends e_admin_ui
|
|
{
|
|
//TODO Move to Class above.
|
|
protected $pluginTitle = 'featurebox';
|
|
protected $pluginName = 'featurebox';
|
|
protected $table = "featurebox";
|
|
protected $pid = "fb_id";
|
|
protected $perPage = 10;
|
|
protected $batchDelete = true;
|
|
|
|
protected $fields = array(
|
|
'checkboxes' => array('title'=> '', 'type' => null, 'width' =>'5%', 'forced'=> TRUE, 'thclass'=>'center', 'class'=>'center'),
|
|
'fb_id' => array('title'=> LAN_ID, 'type' => 'int', 'width' =>'5%', 'forced'=> TRUE),
|
|
'fb_title' => array('title'=> LAN_TITLE, 'type' => 'text', 'width' => 'auto', 'thclass' => 'left first'),
|
|
'fb_text' => array('title'=> "Message Text", 'type' => 'bbarea', 'width' => '30%', 'readParms' => 'expand=...&truncate=50&bb=1'), // Display name
|
|
'fb_image' => array('title'=> "Image", 'type' => 'image', 'width' => 'auto', 'thclass' => 'left first'),
|
|
'fb_imageurl' => array('title'=> "Image Link", 'type' => 'text', 'width' => 'auto', 'thclass' => 'left first'),
|
|
'fb_mode' => array('title'=> FBLAN_12, 'type' => 'dropdown', 'data'=> 'int', 'width' => '5%', 'filter'=>TRUE, 'batch'=>TRUE),
|
|
'fb_class' => array('title'=> LAN_VISIBILITY, 'type' => 'userclass', 'data' => 'int', 'width' => 'auto'), // User id
|
|
'fb_rendertype' => array('title'=> FBLAN_22, 'type' => 'dropdown', 'data'=> 'int', 'width' => 'auto', 'noedit' => TRUE),
|
|
'fb_template' => array('title'=> FBLAN_25, 'type' => 'dropdown', 'data'=> 'str', 'width' => 'auto', 'thclass' => 'center', 'class'=>'center', 'writeParms' => '', 'filter' => true, 'batch' => true), // Photo
|
|
'fb_category' => array('title'=> LAN_CATEGORY, 'type' => 'dropdown', 'data'=> 'int', 'width' => '5%', 'filter'=>TRUE, 'batch'=>TRUE),
|
|
'fb_order' => array('title'=> LAN_ORDER, 'type' => 'number', 'data'=> 'int','width' => '5%', 'thclass' => 'center' ),
|
|
|
|
'options' => array('title'=> LAN_OPTIONS, 'type' => null, 'forced'=>TRUE, 'width' => '10%', 'thclass' => 'center last', 'class' => 'center')
|
|
);
|
|
|
|
// protected $fieldpref = array('checkboxes', 'comment_id', 'comment_item_id', 'comment_author_id', 'comment_author_name', 'comment_subject', 'comment_comment', 'comment_type', 'options');
|
|
|
|
protected $prefs = array(
|
|
'fb_active' => array('title'=> 'Allow submitting of fbs by:', 'type'=>'userclass'),
|
|
'submit_question' => array('title'=> 'Allow submitting of Questions by:', 'type'=>'userclass'),
|
|
'classic_look' => array('title'=> 'Use Classic Layout', 'type'=>'boolean')
|
|
);
|
|
|
|
|
|
|
|
function init()
|
|
{
|
|
|
|
$templates = array();
|
|
$categories = array();
|
|
|
|
$tmp = e107::getTemplate('featurebox', 'featurebox');
|
|
|
|
foreach($tmp as $key=>$val)
|
|
{
|
|
$templates[$key] = $key; //TODO add LANS?
|
|
}
|
|
|
|
|
|
if(e107::getDb()->db_Select('featurebox_cat'))
|
|
{
|
|
while ($row = e107::getDb()->db_Fetch())
|
|
{
|
|
$id = $row['fb_cat_id'];
|
|
$categories[$id] = $row['fb_cat_title'];
|
|
}
|
|
}
|
|
|
|
$this->fields['fb_category']['writeParms'] = $categories;
|
|
$this->fields['fb_template']['writeParms'] = $templates;
|
|
$this->fields['fb_rendertype']['writeParms'] = array(FBLAN_23,FBLAN_24);
|
|
$this->fields['fb_mode']['writeParms'] = array(FBLAN_13,FBLAN_14);
|
|
|
|
$this->fields['fb_category']['readParms'] = $categories;
|
|
$this->fields['fb_template']['readParms'] = $templates;
|
|
$this->fields['fb_rendertype']['readParms'] = array(FBLAN_23,FBLAN_24);
|
|
$this->fields['fb_mode']['readParms'] = array(FBLAN_13,FBLAN_14);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
class fb_admin_form_ui extends e_admin_form_ui
|
|
{
|
|
|
|
|
|
}
|
|
|
|
new fb_admin();
|
|
|
|
require_once(e_ADMIN."auth.php");
|
|
e107::getAdminUI()->runPage();
|
|
|
|
require_once(e_ADMIN."footer.php");
|
|
exit;
|
|
|
|
?>
|