Changes to AgileBill

This commit is contained in:
Deon George
2009-08-03 14:10:16 +10:00
parent 0a22cfe22c
commit 27aee719b0
1051 changed files with 219109 additions and 117219 deletions

View File

@@ -1,55 +1,34 @@
<?php
/**
* AgileBill - Open Billing Software
*
* This body of work is free software; you can redistribute it and/or
* modify it under the terms of the Open AgileBill License
* License as published at http://www.agileco.com/agilebill/license1-4.txt
*
* For questions, help, comments, discussion, etc., please join the
* Agileco community forums at http://forum.agileco.com/
*
* Originally authored by Tony Landis, AgileBill LLC
*
* Recent modifications by Deon George
*
* @author Deon George <deonATleenooksDOTnet>
* @copyright 2009 Deon George
* @link http://osb.leenooks.net
*
* @link http://www.agileco.com/
* @copyright 2004-2008 Agileco, LLC.
* @license http://www.agileco.com/agilebill/license1-4.txt
* @author Tony Landis <tony@agileco.com>
* @author Tony Landis <tony@agileco.com>
* @package AgileBill
* @version 1.4.93
* @subpackage Module:FAQ
*/
class faq
{
# Open the constructor for this mod
function faq()
{
# name of this module:
$this->module = "faq";
$this->version = "1.0.0a";
if(!defined('AJAX'))
{
# location of the construct XML file:
$this->xml_construct = PATH_MODULES . "" . $this->module . "/" . $this->module . "_construct.xml";
# open the construct file for parsing
$C_xml = new CORE_xml;
$construct = $C_xml->xml_to_array($this->xml_construct);
$this->method = $construct["construct"]["method"];
$this->trigger = $construct["construct"]["trigger"];
$this->field = $construct["construct"]["field"];
$this->table = $construct["construct"]["table"];
$this->module = $construct["construct"]["module"];
$this->cache = $construct["construct"]["cache"];
$this->order_by = $construct["construct"]["order_by"];
$this->limit = $construct["construct"]["limit"];
}
}
/**
* The main AgileBill FAQ Class
*
* @package AgileBill
* @subpackage Module:FAQ
*/
class faq extends OSB_module {
### autofill for admin 'canned messages' in ticket reply
function autofill($VAR)
{
@@ -198,61 +177,33 @@ class faq
$smarty->assign('faq_category_list', @$smart);
}
/**
* Add a entry to the database
*/
public function add($VAR) {
global $VAR;
if (empty($VAR['faq_translate_question']))
return false;
$q = $VAR['faq_translate_question'];
unset($VAR['faq_translate_question']);
$a = '';
if (isset($VAR['faq_translate_answer'])) {
$a = $VAR['faq_translate_answer'];
unset($VAR['faq_translate_answer']);
}
##############################
## ADD ##
##############################
function add($VAR)
{
$type = "add";
$this->method["$type"] = explode(",", $this->method["$type"]);
$db = new CORE_database;
$id = $db->add($VAR, $this, $type);
$id = parent::add($VAR);
if($id && !empty($VAR['faq_question']))
{
# Insert translation
# Insert translation
if ($id) {
$db = &DB();
$idx = $db->GenID(AGILE_DB_PREFIX. 'faq_translate_id');
$sql = "INSERT INTO ".AGILE_DB_PREFIX."faq_translate
SET
site_id = ".DEFAULT_SITE.",
id = $idx,
faq_id = $id,
date_orig = ".time().",
date_last = ".time().",
language_id = '".DEFAULT_LANGUAGE."',
answer = ".$db->qstr( @$VAR['faq_answer'] ).",
question = ".$db->qstr( @$VAR['faq_question']);
$db->Execute($sql);
$db->Execute(sqlInsert($db,'faq_translate',array('faq_id'=>$id,'date_orig'=>time(),'date_last'=>time(),'language_id'=>DEFAULT_LANGUAGE,'question'=>$q,'answer'=>$a)));
}
}
##############################
## VIEW ##
##############################
function view($VAR)
{
$type = "view";
$this->method["$type"] = explode(",", $this->method["$type"]);
$db = new CORE_database;
$db->view($VAR, $this, $type);
}
##############################
## UPDATE ##
##############################
function update($VAR)
{
$type = "update";
$this->method["$type"] = explode(",", $this->method["$type"]);
$db = new CORE_database;
$db->update($VAR, $this, $type);
}
##############################
## DELETE ##
##############################
@@ -268,40 +219,6 @@ class faq
$db->mass_delete($VAR, $this, "");
}
##############################
## SEARCH FORM ##
##############################
function search_form($VAR)
{
$type = "search";
$this->method["$type"] = explode(",", $this->method["$type"]);
$db = new CORE_database;
$db->search_form($VAR, $this, $type);
}
##############################
## SEARCH ##
##############################
function search($VAR)
{
$type = "search";
$this->method["$type"] = explode(",", $this->method["$type"]);
$db = new CORE_database;
$db->search($VAR, $this, $type);
}
##############################
## SEARCH SHOW ##
##############################
function search_show($VAR)
{
$type = "search";
$this->method["$type"] = explode(",", $this->method["$type"]);
$db = new CORE_database;
$db->search_show($VAR, $this, $type);
}
function linkalize($text)
{
$text = preg_replace("/([^\w\/])(www\.[a-z0-9\-]+\.[a-z0-9\-]+)/i", "$1http://$2", $text);