-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
27 changed files
with
814 additions
and
426 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.zip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,91 +1,44 @@ | ||
<form method='POST' action='index.php' enctype='multipart/form-data'> | ||
<input type='hidden' name='module' value='seven'/> | ||
<input type='hidden' name='action' value='account'/> | ||
|
||
<span class='error'>{$error.main}</span> | ||
|
||
<table> | ||
<tr> | ||
<td>{$MOD.LBL_SEVEN_ACTIVE}</td> | ||
|
||
<td> | ||
{if empty($config.seven_account_active)} | ||
{assign var='seven_account_active' value=$seven_config.seven_account_active.default} | ||
{else} | ||
{assign var='seven_account_active' value=$config.seven_account_active} | ||
{/if} | ||
|
||
<label for='seven_account_active_yes'>{$MOD.LBL_SEVEN_YES}</label> | ||
<input | ||
id='seven_account_active_yes' | ||
name='seven_account_active' | ||
type='radio' | ||
value='yes' | ||
{if $seven_account_active =='yes'}checked{/if} | ||
/> | ||
|
||
<label for='seven_account_active_no'>{$MOD.LBL_SEVEN_NO}</label> | ||
<input | ||
id='seven_account_active_no' | ||
name='seven_account_active' | ||
type='radio' | ||
value='no' | ||
{if $seven_account_active =='no'}checked{/if} | ||
/> | ||
</td> | ||
</tr> | ||
|
||
<tr> | ||
<td><label for='description'>{$MOD.LBL_SEVEN_TEXT}</label></td> | ||
<td> | ||
{if empty($config.seven_account_body)} | ||
{assign var='seven_account_body' value=$seven_config.seven_account_body.default} | ||
{else} | ||
{assign var='seven_account_body' value=$config.seven_account_body} | ||
{/if} | ||
|
||
<textarea | ||
cols='80' | ||
id='description' | ||
name='seven_account_body' | ||
rows='10' | ||
style='height: 1.6.em; overflow-y:auto; font-family:sans-serif,monospace; font-size:inherit;' | ||
tabindex='0' | ||
>{$seven_account_body}</textarea> | ||
</td> | ||
</tr> | ||
</table> | ||
|
||
<p> | ||
<span class='text-danger'>{$MOD.LBL_SEVEN_NOTICE}: </span> | ||
{$MOD.LBL_SEVEN_SMS_ON_CREATION} | ||
</p> | ||
|
||
<p> | ||
<span class='text-danger'>{$MOD.LBL_SEVEN_PROPERTY_PLACEHOLDERS}:</span> | ||
<br/> | ||
{$placeholders} | ||
</p> | ||
|
||
<div> | ||
<input | ||
class='button' | ||
title='{$APP.LBL_SAVE_BUTTON_TITLE}' | ||
type='submit' | ||
value='{$APP.LBL_SAVE_BUTTON_LABEL}' | ||
name='save' | ||
/> | ||
|
||
<input | ||
class='button' | ||
name='cancel' | ||
onclick='document.location.href="index.php?module=Administration&action=index"' | ||
title='{$MOD.LBL_CANCEL_BUTTON_TITLE}' | ||
type='button' | ||
value='{$APP.LBL_CANCEL_BUTTON_LABEL}' | ||
/> | ||
</div> | ||
</form> | ||
|
||
{extends file='modules/seven/base_form.tpl'} | ||
{block name=action}account{/block} | ||
{block name=table} | ||
<tr> | ||
<td>{$MOD.LBL_SEVEN_ACTIVE}</td> | ||
|
||
<td> | ||
{if empty($config.seven_account_active)} | ||
{assign var='seven_account_active' value=$seven_config.seven_account_active.default} | ||
{else} | ||
{assign var='seven_account_active' value=$config.seven_account_active} | ||
{/if} | ||
|
||
<label for='seven_account_active_yes'>{$MOD.LBL_SEVEN_YES}</label> | ||
<input | ||
id='seven_account_active_yes' | ||
name='seven_account_active' | ||
type='radio' | ||
value='yes' | ||
{if $seven_account_active =='yes'}checked{/if} | ||
/> | ||
|
||
<label for='seven_account_active_no'>{$MOD.LBL_SEVEN_NO}</label> | ||
<input | ||
id='seven_account_active_no' | ||
name='seven_account_active' | ||
type='radio' | ||
value='no' | ||
{if $seven_account_active =='no'}checked{/if} | ||
/> | ||
</td> | ||
</tr> | ||
{/block} | ||
{block name=text_var} | ||
{if empty($config.seven_account_body)} | ||
{assign var='seven_text_content' value=$seven_config.seven_account_body.default} | ||
{else} | ||
{assign var='seven_text_content' value=$config.seven_account_body} | ||
{/if} | ||
|
||
{assign var='seven_text_name' value='seven_text_content'} | ||
{/block} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{include file='modules/seven/tpls/message_templates.tpl'} | ||
|
||
<form action='index.php' enctype='multipart/form-data' method='POST'> | ||
<input type='hidden' name='module' value='seven'/> | ||
<input type='hidden' name='action' value='{block name=action}{/block}'/> | ||
|
||
<span class='error'>{$error.main}</span> | ||
|
||
<table> | ||
{block name=table}{/block} | ||
<tr> | ||
<td><label for='seven_text'>{$MOD.LBL_SEVEN_TEXT}</label></td> | ||
<td> | ||
{block name=text_var}{/block} | ||
|
||
<textarea | ||
cols='80' | ||
id='seven_text' | ||
name='{$seven_text_name}' | ||
rows='10' | ||
tabindex='0' | ||
>{$seven_text_content}</textarea> | ||
</td> | ||
</tr> | ||
</table> | ||
|
||
<p> | ||
<span class='text-danger'>{$MOD.LBL_SEVEN_NOTICE}: </span> | ||
{$MOD.LBL_SEVEN_SMS_ON_CREATION} | ||
</p> | ||
|
||
<p> | ||
<span class='text-danger'>{$MOD.LBL_SEVEN_PROPERTY_PLACEHOLDERS}:</span> | ||
<br/> | ||
{$placeholders} | ||
</p> | ||
|
||
<div> | ||
<input | ||
class='button' | ||
name='save' | ||
title='{$APP.LBL_SAVE_BUTTON_TITLE}' | ||
type='submit' | ||
value='{$APP.LBL_SAVE_BUTTON_LABEL}' | ||
/> | ||
|
||
<input | ||
class='button' | ||
name='cancel' | ||
onclick='document.location.href="index.php?module=Administration&action=index"' | ||
title='{$MOD.LBL_CANCEL_BUTTON_TITLE}' | ||
type='button' | ||
value='{$APP.LBL_CANCEL_BUTTON_LABEL}' | ||
/> | ||
</div> | ||
</form> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{extends file='modules/seven/base_form.tpl'} | ||
{block name=action}contact{/block} | ||
{block name=table} | ||
<tr> | ||
<td>{$MOD.LBL_SEVEN_ACTIVE}</td> | ||
<td> | ||
{if empty($config.seven_contact_active)} | ||
{assign var='seven_contact_active' value=$seven_config.seven_contact_active.default} | ||
{else} | ||
{assign var='seven_contact_active' value=$config.seven_contact_active} | ||
{/if} | ||
|
||
<label for='seven_contact_active_yes'>Yes</label> | ||
<input | ||
id='seven_contact_active_yes' | ||
type='radio' | ||
value='yes' | ||
name='seven_contact_active' | ||
{if $seven_contact_active =='yes'}checked{/if} | ||
/> | ||
|
||
<label for='seven_contact_active_no'>No</label> | ||
<input | ||
id='seven_contact_active_no' | ||
type='radio' | ||
name='seven_contact_active' | ||
value='no' | ||
{if $seven_contact_active =='no'}checked{/if} | ||
/> | ||
</td> | ||
</tr> | ||
{/block} | ||
{block name=text_var} | ||
{if empty($config.seven_contact_body)} | ||
{assign var='seven_text_content' value=$seven_config.seven_contact_body.default} | ||
{else} | ||
{assign var='seven_text_content' value=$config.seven_contact_body} | ||
{/if} | ||
|
||
{assign var='seven_text_name' value='seven_text_content'} | ||
{/block} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.