Initial Commit of AgileBill Open Source

This commit is contained in:
unknown
2008-11-26 14:50:40 -08:00
parent ae5a0fc25e
commit 02306ccc47
2954 changed files with 410976 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
{ $block->display("core:top_clean") }
<!-- Display the form validation -->
{if $form_validation}
{ $block->display("core:alert_fields") }
{/if}
<!-- Display the form to collect the input values -->
<form id="product_img_add" name="product_img_add" method="post" action="" enctype="multipart/form-data">
<table width=100% border="0" cellspacing="0" cellpadding="0" class="table_background">
<tr>
<td>
<table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr valign="top">
<td width="65%" class="row1">
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
<tr valign="top">
<td width="65%" height="23">
{translate module=product_img}
upload
{/translate}
</td>
</tr>
<tr valign="top">
<td width="65%">
<input type="file" name="upload_file1" size="50" >
</td>
</tr>
<tr valign="top">
<td width="65%">&nbsp; </td>
</tr>
<tr valign="top">
<td width="65%">
{translate module=product_img}
url
{/translate}
</td>
</tr>
<tr valign="top">
<td width="65%">
<input type="text" name="img_url" {if $product_img_url == true}class="form_field_error"{/if} size="80">
</td>
</tr>
<tr valign="top">
<td width="65%" align="right">
<input type="submit" name="Submit" value="{translate}submit{/translate}" class="form_button">
<input type="hidden" name="_page" value="product_img:view">
<input type="hidden" name="_page_current" value="product_img:add">
<input type="hidden" name="do[]" value="product_img:add">
<input type="hidden" name="product_img_product_id" value="{$VAR.product_img_product_id}">
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>

View File

@@ -0,0 +1,105 @@
{ $block->display("core:top_clean") }
{$method->exe("product_img","search_show")}
{if ($method->result == FALSE)}
{$block->display("core:method_error")}
{else}
{literal}
<script language="JavaScript">
<!-- START
var module = 'product_img';
{/literal}
{if $VAR._print == TRUE}
var p = '&_escape=y&_print=y';
{else}
var p = '';
{/if}{literal}
var IMAGE = '{/literal}{$NONSSL_IMAGE}{literal}';
var order = '{/literal}{$order}{literal}';
var sort1 = '{/literal}{$sort}{literal}';
var search_id = '{/literal}{$search_id}{literal}';
var page = {/literal}{$page}{literal};
var pages = '{/literal}{$pages}{literal}';
var results = '{/literal}{$results}{literal}';
var limit = '{/literal}{$limit}{literal}';
record_arr = new Array ({/literal}{$limit}{literal});
var i = 0;
// END -->
</script>
<SCRIPT SRC="themes/{/literal}{$THEME_NAME}{literal}/search.js"></SCRIPT>
{/literal}
<!-- SHOW THE SEARCH NAVIGATION MENU -->
<center><script language="JavaScript">document.write(search_nav_top());</script></center>
<!-- BEGIN THE RESULTS CONTENT AREA -->
<div id="search_results" onKeyPress="key_handler(event);">
<table id="main1" width="100%" border="0" cellspacing="0" cellpadding="0" class="table_background">
<form id="form1" name="form1" method="post" action="">
<tr>
<td>
<table id="main2" width="100%" border="0" cellspacing="1" cellpadding="2">
<!-- DISPLAY THE SEARCH HEADING -->
<!-- LOOP THROUGH EACH RECORD -->
{foreach from=$product_img item=record}
<tr id="row{$record.id}" onClick="row_sel('{$record.id}',1);" onDblClick="window.location='?_page=product_img:view&id={$record.id}&_escape=1&_escape_next=1,';" onMouseOver="row_mouseover('{$record.id}', 'row_mouse_over_select', 'row_mouse_over');" onMouseOut="row_mouseout('{$record.id}', '{$record._C}', 'row_select');" class="{$record._C}">
<td align="center" width="48">
<input type="checkbox" name="record{$record.id}" value="{$record.id}" onClick="row_sel('{$record.id}',1,'{$record._C}');">
</td>
<td width="799">&nbsp;
{$record.name}
</td>
<td width="216">&nbsp;
{if $record.type == "0"}
{translate module=product_img}
local
{/translate}
{else}
{translate module=product_img}
remote
{/translate}
{/if}
</td>
</tr>
{literal}
<script language="JavaScript">row_sel('{/literal}{$record.id}{literal}', 0, '{/literal}{$record._C}{literal}'); record_arr[i] = '{/literal}{$record.id}{literal}'; i++; </script>
{/literal}
{/foreach}
<!-- END OF RESULT LOOP -->
</table>
</td>
</tr>
</form>
</table>
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="body">
<tr>
<td width="28%">
<div align="center"><a href="?_page=product_img:add&product_img_product_id={$product_img.product_id}&_escape=1&_escape_next=1"><br>
{translate module=product_img}
title_add
{/translate}
</a></div>
</td>
</tr>
</table>
<br>
<center>
<input type="submit" name="Submit" value="{translate}view_edit{/translate}" onClick="mass_do('', module+':view&_escape=1&_escape_next=1', limit, module);" class="form_button">
<input type="submit" name="Submit" value="{translate}delete{/translate}" onClick="mass_do('delete', module+':search_show&search_id={$search_id}&page={$page}&order_by={$order}&{$sort}&_escape=1&_escape_next=1', limit, module);" class="form_button">
<input type="submit" name="Submit" value="{translate}select_all{/translate}" onClick="all_select(record_arr);" class="form_button">
<input type="submit" name="Submit" value="{translate}deselect_all{/translate}" onClick="all_deselect(record_arr);" class="form_button">
<input type="submit" name="Submit" value="{translate}range_select{/translate}" onClick="all_range_select(record_arr,limit);" class="form_button">
<br>
</center>
{/if}
</div>

View File

@@ -0,0 +1,62 @@
{ $block->display("core:top_clean") }
{ $method->exe("product_img","view") } { if ($method->result == FALSE) } { $block->display("core:method_error") } {else}
<!-- Loop through each record -->
{foreach from=$product_img item=product_img}
<a name="{$product_img.id}"></a>
<!-- Display the field validation -->
{if $form_validation}
{ $block->display("core:alert_fields") }
{/if}
<!-- Display each record -->
<form name="product_img_view" method="post" action="" enctype="multipart/form-data">
<table width=100% border="0" cellspacing="0" cellpadding="0" class="table_background">
<tr>
<td>
<table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr valign="top">
<td width="65%" class="row1">
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
<tr class="row1" valign="middle" align="left">
<td width="65%" align="right">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="row1">
<tr>
<td width="28%"><a href="?_page=product_img:add&product_img_product_id={$product_img.product_id}&_escape=1&_escape_next=1">
{translate module=product_img}
title_add
{/translate}
</a></td>
<td width="35%" align="right"> <a href="?_page=core:search_iframe&module=product_img&product_img_product_id={$product_img.product_id}&_next_page_none=add&name_id1=product_img_product_id&val_id1={$product_img.product_id}&_escape=1&_escape_next=1&do[]=product_img:delete&id={$product_img.id}">
{translate module=product_img}
title_delete
{/translate}
</a> </td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<div align="center"><br>
{if $product_img.type == "0" }
<img src="{$URL}{$smarty.const.URL_IMAGES}prod_img_{$product_img.id}.{$product_img.url}">
{else}
<img src="{$product_img.url}">
{/if}
<input type="hidden" name="_page" value="product_img:view">
<input type="hidden" name="product_img_id" value="{$product_img.id}">
<input type="hidden" name="do[]" value="product_img:update">
<input type="hidden" name="id" value="{$VAR.id}">
</div>
</form>
{/foreach}
{/if}