mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
72 lines
1.4 KiB
PHP
72 lines
1.4 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2009 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
* Sitelinks configuration module - gsitemap
|
|
*
|
|
* $Source: /cvs_backup/e107_0.8/e107_plugins/faqs/e_sitelink.php,v $
|
|
* $Revision$
|
|
* $Date$
|
|
* $Author$
|
|
*
|
|
*/
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
/*if(!e107::isInstalled('gsitemap'))
|
|
{
|
|
return;
|
|
}*/
|
|
|
|
|
|
class faqs_sitelink // include plugin-folder in the name.
|
|
{
|
|
function config()
|
|
{
|
|
global $pref;
|
|
|
|
$links = array();
|
|
|
|
$links[] = array(
|
|
'name' => LAN_PLUGIN_FAQS_FUNCTIONNAME, // "FAQ Categories",
|
|
'function' => "faqCategories"
|
|
);
|
|
|
|
|
|
return $links;
|
|
}
|
|
|
|
|
|
|
|
function faqCategories()
|
|
{
|
|
$sql = e107::getDb();
|
|
$tp = e107::getParser();
|
|
$sublinks = array();
|
|
|
|
$sql->select("faqs_info","*","faq_info_id != '' ORDER BY faq_info_order");
|
|
|
|
while($row = $sql->fetch())
|
|
{
|
|
$sublinks[] = array(
|
|
'link_name' => $tp->toHTML($row['faq_info_title'],'','TITLE'),
|
|
'link_url' => e107::url('faqs', 'category', $row),
|
|
'link_description' => $row['faq_info_about'],
|
|
'link_button' => $row['faq_info_icon'],
|
|
'link_category' => '',
|
|
'link_order' => '',
|
|
'link_parent' => '',
|
|
'link_open' => '',
|
|
'link_class' => intval($row['faq_info_class'])
|
|
);
|
|
}
|
|
|
|
return $sublinks;
|
|
|
|
}
|
|
|
|
}
|