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

@@ -166,12 +166,12 @@ class CORE_static_var
{
### SMALL TEXT FIELD
$this_html = '<input type="text" size="8" name="'.$static_relation.
'" value="'.$static_value.'">';
'" value="'.$static_value.'"/>';
}
elseif($display == 'search')
{
$this_html = '<input type="text" size="8" name="'.$static_relation.
'" value="'.$static_value.'">' .
'" value="'.$static_value.'"/>' .
$C_translate->translate('search_partial', 'CORE', SESS_LANGUAGE);
}
else
@@ -187,12 +187,12 @@ class CORE_static_var
{
### MEDIUM TEXT FIELD
$this_html = '<input type="text" size="32" name="'.$static_relation.
'" value="'.$static_value.'">';
'" value="'.$static_value.'"/>';
}
elseif($display == 'search')
{
$this_html = '<input type="text" size="32" name="'.$static_relation.
'" value="'.$static_value.'">' .
'" value="'.$static_value.'"/>' .
$C_translate->translate('search_partial', 'CORE', SESS_LANGUAGE);
}
else
@@ -213,7 +213,7 @@ class CORE_static_var
elseif($display == 'search')
{
$this_html = '<input type="text" size="32" name="'.$static_relation.
'" value="'.$static_value.'">' .
'" value="'.$static_value.'"/>' .
$C_translate->translate('search_partial', 'CORE', SESS_LANGUAGE);
}
else
@@ -289,7 +289,7 @@ class CORE_static_var
$id = rand(9,999);
$this_html = '
<input type="text" id="data_'.$field.'_'.$id.'" name="'.$static_relation.'"/>&nbsp;
<input type="button" id="trigger_'.$field.'_'.$id.'" value="+">
<input type="button" id="trigger_'.$field.'_'.$id.'" value="+"/>
<script type="text/javascript">
Calendar.setup(
{
@@ -350,9 +350,9 @@ class CORE_static_var
{
### CHECKBOX
if($static_value == '1')
$this_html = '<input type="checkbox" name="'.$static_relation.'" value="1" checked>';
$this_html = '<input type="checkbox" name="'.$static_relation.'" value="1" checked />';
else
$this_html = '<input type="checkbox" name="'.$static_relation.'" value="1">';
$this_html = '<input type="checkbox" name="'.$static_relation.'" value="1" />';
}
elseif($display == 'search')
{
@@ -369,7 +369,7 @@ class CORE_static_var
else if ($format == 'hidden')
{
### HIDDEN FIELD
$this_html = '<input type="hidden" name="'.$static_relation.'" value="'.$static_value.'">';
$this_html = '<input type="hidden" name="'.$static_relation.'" value="'.$static_value.'"/>';
}
@@ -1445,4 +1445,4 @@ class CORE_static_var
}
}
}
?>
?>