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,60 +1,66 @@
<?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 Template:Calendar
*/
function list_calender_add($field, $default, $css)
{
# set the date to current date if 'now' is set as $default
if($default == 'now')
{
$default = date(UNIX_DATE_FORMAT, time());
}
/**
* The main AgileBill Template Calendar Method
*
* @package AgileBill
* @subpackage Template:Calendar
*/
function list_calender_add($field,$default,$css,$fid) {
# Set the date to current date if 'now' is set as $default
if ($default == 'now')
$default = date(UNIX_DATE_FORMAT,time());
$id = rand(9,999);
$ret = '
<input type="text" id="data_'.$field.'_'.$id.'" name="'.$field.'" class="'.$css.'" size="10" value="'.$default.'" />&nbsp;
<input type="button" id="trigger_'.$field.'_'.$id.'" value="+">
<script type="text/javascript">
Calendar.setup(
{
inputField : "data_'.$field.'_'.$id.'",
ifFormat : "'.DEFAULT_DATE_FORMAT.'",
button : "trigger_'.$field.'_'.$id.'"
}
);
</script>
';
$ret = '';
if ($fid)
$ret .= sprintf('<input type="text" id="data_%s_%s_%s" name="%s[%s]" class="%s" size="10" value="%s"/>&nbsp;',$field,$fid,$id,$field,$fid,$css,$default);
else
$ret .= sprintf('<input type="text" id="data_%s_%s_%s" name="%s" class="%s" size="10" value="%s"/>&nbsp;',$field,$fid,$id,$field,$css,$default);
$ret .= sprintf('<input type="button" id="trigger_%s_%s_%s" value="+"/>',$field,$fid,$id);
$ret .= '<script type="text/javascript">Calendar.setup({';
$ret .= sprintf('inputField : "data_%s_%s_%s",',$field,$fid,$id);
$ret .= sprintf('ifFormat : "%s",',DEFAULT_DATE_FORMAT);
$ret .= sprintf('button : "trigger_%s_%s_%s"',$field,$fid,$id);
$ret .= '});</script>';
return $ret;
}
}
# @todo Remove?
function list_calender_add_static($field,$default,$css) {
return list_calender_add($field,$default,$css,'');
function list_calender_add_static($field, $default, $css)
{
# set the date to current date if 'now' is set as $default
if($default == 'now')
{
$default = date(UNIX_DATE_FORMAT);
}
# Set the date to current date if 'now' is set as $default
if ($default == 'now')
$default = date(UNIX_DATE_FORMAT);
$id = rand(9,999);
$ret = '
<input type="text" id="data_'.$field.'_'.$id.'" name="'.$field.'" class="'.$css.'" size="10" value="'.$default.'" />&nbsp;
<input type="text" id="data_'.$field.'_'.$id.'" name="'.$field.'" class="'.$css.'" size="10" value="'.$default.'" />&nbsp;
<input type="button" id="trigger_'.$field.'_'.$id.'" value="+">
<script type="text/javascript">
Calendar.setup(
@@ -68,4 +74,4 @@ function list_calender_add_static($field, $default, $css)
';
return $ret;
}
?>
?>