mirror of
https://github.com/Karaka-Management/oms-Admin.git
synced 2026-01-26 20:18:40 +00:00
File path fixes
This commit is contained in:
parent
3a4fdced2b
commit
ff106e04fc
|
|
@ -2,7 +2,7 @@
|
|||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.0
|
||||
* PHP Version 7.1
|
||||
*
|
||||
* @category TBD
|
||||
* @package TBD
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.0
|
||||
* PHP Version 7.1
|
||||
*
|
||||
* @category TBD
|
||||
* @package TBD
|
||||
|
|
@ -18,20 +18,20 @@ echo $this->getData('nav')->render(); ?>
|
|||
<section class="box w-66 floatLeft">
|
||||
<header><h1><?= $this->getText('Account') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/admin/account'); ?>" method="post">
|
||||
<form id="fAccount" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/admin/account'); ?>" method="put">
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><td><label for="iType"><?= $this->getText('Type') ?></label>
|
||||
<tr><td><select id="iType" name="type">
|
||||
<option><?= $this->getText('Person') ?>
|
||||
<option><?= $this->getText('Organization') ?>
|
||||
<option value="<?= \phpOMS\Account\AccountType::USER; ?>"><?= $this->getText('Person') ?>
|
||||
<option value="<?= \phpOMS\Account\AccountType::GROUP; ?>"><?= $this->getText('Organization') ?>
|
||||
</select>
|
||||
<tr><td><label for="iStatus"><?= $this->getText('Status') ?></label>
|
||||
<tr><td><select id="iStatus" name="status">
|
||||
<option><?= $this->getText('Active') ?>
|
||||
<option><?= $this->getText('Inactive') ?>
|
||||
<option><?= $this->getText('Timeout') ?>
|
||||
<option><?= $this->getText('Banned') ?>
|
||||
<option value="<?= \phpOMS\Account\AccountStatus::ACTIVE; ?>"><?= $this->getText('Active') ?>
|
||||
<option value="<?= \phpOMS\Account\AccountStatus::INACTIVE; ?>"><?= $this->getText('Inactive') ?>
|
||||
<option value="<?= \phpOMS\Account\AccountStatus::TIMEOUT; ?>"><?= $this->getText('Timeout') ?>
|
||||
<option value="<?= \phpOMS\Account\AccountStatus::BANNED; ?>"><?= $this->getText('Banned') ?>
|
||||
</select>
|
||||
<tr><td><label for="iUsername"><?= $this->getText('Username') ?></label>
|
||||
<tr><td><input id="iUsername" name="name" type="text" placeholder=" Fred">
|
||||
|
|
@ -44,7 +44,7 @@ echo $this->getData('nav')->render(); ?>
|
|||
<tr><td><label for="iEmail"><?= $this->getText('Email') ?></label>
|
||||
<tr><td><input id="iEmail" name="email" type="email" placeholder=" d.duck@duckburg.com">
|
||||
<tr><td><label for="iPassword"><?= $this->getText('Name3') ?></label>
|
||||
<tr><td><input id="iPassword" name="password" type="text" placeholder=" Pa55ssw0rd?">
|
||||
<tr><td><input id="iPassword" name="password" type="password" placeholder=" Pa55ssw0rd?">
|
||||
<tr><td><input type="submit" value="<?= $this->getText('Create', 0, 0); ?>">
|
||||
</table>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.0
|
||||
* PHP Version 7.1
|
||||
*
|
||||
* @category TBD
|
||||
* @package TBD
|
||||
|
|
@ -25,8 +25,12 @@ echo $this->getData('nav')->render(); ?>
|
|||
<form id="group-create" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/admin/group'); ?>" method="<?= \phpOMS\Message\Http\RequestMethod::PUT; ?>">
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><td colspan="2"><label for="iStatus"><?= $this->getText('Status') ?></label>
|
||||
<tr><td colspan="2"><select id="iStatus" name="status">
|
||||
<option value="<?= \phpOMS\Account\GroupStatus::ACTIVE; ?>" selected><?= $this->getText('Active') ?>
|
||||
<option value="<?= \phpOMS\Account\GroupStatus::INACTIVE; ?>"><?= $this->getText('Inactive') ?>
|
||||
<tr><td><label for="iGname"><?= $this->getText('Name') ?></label>
|
||||
<tr><td><input id="iGname" name="gname" type="text" placeholder=" Guest" required>
|
||||
<tr><td><input id="iGname" name="name" type="text" placeholder=" Guest" required>
|
||||
<tr><td><label for="iGroupDescription"><?= $this->getText('Description') ?></label>
|
||||
<tr><td><textarea id="iGroupDescription" name="description" placeholder=""></textarea>
|
||||
<tr><td><input type="submit" value="<?= $this->getText('Create', 0, 0); ?>">
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.0
|
||||
* PHP Version 7.1
|
||||
*
|
||||
* @category TBD
|
||||
* @package TBD
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.0
|
||||
* PHP Version 7.1
|
||||
*
|
||||
* @category TBD
|
||||
* @package TBD
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@
|
|||
/**
|
||||
* Orange Management
|
||||
*
|
||||
* PHP Version 7.0
|
||||
* PHP Version 7.1
|
||||
*
|
||||
* @category TBD
|
||||
* @package TBD
|
||||
|
|
@ -27,72 +27,245 @@ $_thousands_sep = $this->getData('thousands_sep') ?? '';
|
|||
$_password = $this->getData('password') ?? '';
|
||||
$_country = $this->getData('country') ?? '';
|
||||
|
||||
$countries = \phpOMS\Localization\ISO3166EnumArray::getConstants();
|
||||
$countries = \phpOMS\Localization\ISO3166NameEnum::getConstants();
|
||||
$timezones = \phpOMS\Localization\TimeZoneEnumArray::getConstants();
|
||||
$timeformats = \phpOMS\Localization\ISO8601EnumArray::getConstants();
|
||||
$languages = \phpOMS\Localization\ISO639EnumArray::getConstants();
|
||||
$currencies = \phpOMS\Localization\ISO4217EnumArray::getConstants();
|
||||
|
||||
$languages = \phpOMS\Localization\ISO639Enum::getConstants();
|
||||
$currencies = \phpOMS\Localization\ISO4217Enum::getConstants();
|
||||
?>
|
||||
<section class="box w-50 floatLeft">
|
||||
<header><h1><?= $this->getText('Settings') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/admin/settings/general'); ?>" method="post">
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><td><label for="iOname"><?= $this->getText('OrganizationName') ?></label>
|
||||
<tr><td><input id="iOname" name="oname" type="text" value="<?= $_oname; ?>" placeholder=" Money Bin" required>
|
||||
<tr><td><label for="iPassword"><?= $this->getText('PasswordRegex') ?></label>
|
||||
<tr><td><input id="iPassword" name="passpattern" type="text" value="<?= $_password; ?>" placeholder=" ^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&;:\(\)\[\]=\{\}\+\-])[A-Za-z\d$@$!%*?&;:\(\)\[\]=\{\}\+\-]{8,}">
|
||||
<tr><td><input type="submit" value="<?= $this->getText('Save') ?>">
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-50 floatLeft">
|
||||
<header><h1><?= $this->getText('Localization') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/admin/settings/localization'); ?>" method="post">
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><td colspan="2"><label for="iCountries"><?= $this->getText('Country') ?></label>
|
||||
<tr><td colspan="2"><select id="iCountries" name="country">
|
||||
<?php foreach($countries as $code => $country) : ?>
|
||||
<option value="<?= $code; ?>"<?= strtolower($code) == strtolower($_country) ? ' selected' : ''; ?>><?= $country; ?>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<tr><td colspan="2"><label for="iTimezones"><?= $this->getText('Timezone') ?></label>
|
||||
<tr><td colspan="2"><select id="iTimezones" name="timezone">
|
||||
<?php foreach($timezones as $code => $timezone) : ?>
|
||||
<option value="<?= $code; ?>"<?= $timezone == $_timezone ? ' selected' : ''; ?>><?= $timezone; ?>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<tr><td colspan="2"><label for="iTimeformats"><?= $this->getText('Timeformat') ?></label>
|
||||
<tr><td colspan="2"><select id="iTimeformats" name="timeformat">
|
||||
<?php foreach($timeformats as $code => $timeformat) : ?>
|
||||
<option value="<?= $code; ?>"<?= strtolower($timeformat) == strtolower($_timeformat) ? ' selected' : ''; ?>><?= $timeformat; ?>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<tr><td colspan="2"><label for="iLanguages"><?= $this->getText('Language') ?></label>
|
||||
<tr><td colspan="2"><select id="iLanguages" name="language">
|
||||
<?php foreach($languages as $code => $language) : ?>
|
||||
<option value="<?= $code; ?>"<?= strtolower($code) == strtolower($_language) ? ' selected' : ''; ?>><?= $language; ?>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<tr><td colspan="2"><label for="iCurrencies"><?= $this->getText('Currency') ?></label>
|
||||
<tr><td colspan="2"><select id="iCurrencies" name="currency">
|
||||
<?php foreach($currencies as $code => $currency) : ?>
|
||||
<option value="<?= $code; ?>"<?= strtolower($code) == strtolower($_currency) ? ' selected' : ''; ?>><?= $currency[0]; ?>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<tr><td colspan="2"><h2><?= $this->getText('Numberformat') ?></h2>
|
||||
<tr><td><label for="iDecimalPoint"><?= $this->getText('DecimalPoint') ?></label>
|
||||
<td><label for="iThousandSep"><?= $this->getText('ThousandsSeparator') ?></label>
|
||||
<tr><td><input id="iDecimalPoint" name="decimalpoint" type="text" value="<?= $_decimal_point; ?>" placeholder="." required>
|
||||
<td><input id="iThousandSep" name="thousandsep" type="text" value="<?= $_thousands_sep; ?>" placeholder="," required>
|
||||
<tr><td colspan="2"><input type="submit" value="<?= $this->getText('Save') ?>">
|
||||
</table>
|
||||
</form>
|
||||
<div class="tabular-2">
|
||||
<div class="box">
|
||||
<ul class="tab-links">
|
||||
<li><label for="c-tab-1"><?= $this->getText('General') ?></label></li>
|
||||
<li><label for="c-tab-2"><?= $this->getText('Localization') ?></label></li>
|
||||
</ul>
|
||||
</div>
|
||||
</section>
|
||||
<div class="tab-content">
|
||||
<input type="radio" id="c-tab-1" name="tabular-2" checked>
|
||||
<div class="tab">
|
||||
<section class="box w-50 floatLeft">
|
||||
<header><h1><?= $this->getText('Settings') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/admin/settings/general'); ?>" method="post">
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><td><label for="iOname"><?= $this->getText('OrganizationName') ?></label>
|
||||
<tr><td><input id="iOname" name="oname" type="text" value="<?= $_oname; ?>" placeholder=" Money Bin" required>
|
||||
<tr><td><label for="iPassword"><?= $this->getText('PasswordRegex') ?></label>
|
||||
<tr><td><input id="iPassword" name="passpattern" type="text" value="<?= $_password; ?>" placeholder=" ^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[$@$!%*?&;:\(\)\[\]=\{\}\+\-])[A-Za-z\d$@$!%*?&;:\(\)\[\]=\{\}\+\-]{8,}">
|
||||
<tr><td><input type="submit" value="<?= $this->getText('Save', 0) ?>">
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
<input type="radio" id="c-tab-2" name="tabular-2">
|
||||
<div class="tab">
|
||||
<section class="box w-33 floatLeft">
|
||||
<header><h1><?= $this->getText('Localization') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form id="fLocalization" action="<?= \phpOMS\Uri\UriFactory::build('/{/lang}/api/admin/settings/localization'); ?>" method="post">
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><td colspan="2"><label for="iCountries"><?= $this->getText('Country') ?></label>
|
||||
<tr><td colspan="2"><select id="iCountries" name="country">
|
||||
<?php foreach($countries as $code => $country) : ?>
|
||||
<option value="<?= $code; ?>"<?= strtolower($code) == strtolower($_country) ? ' selected' : ''; ?>><?= $country; ?>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<tr><td colspan="2"><label for="iTimezones"><?= $this->getText('Timezone') ?></label>
|
||||
<tr><td colspan="2"><select id="iTimezones" name="timezone">
|
||||
<?php foreach($timezones as $code => $timezone) : ?>
|
||||
<option value="<?= $code; ?>"<?= $timezone == $_timezone ? ' selected' : ''; ?>><?= $timezone; ?>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<tr><td colspan="2"><label for="iTimeformats"><?= $this->getText('Timeformat') ?></label>
|
||||
<tr><td colspan="2"><select id="iTimeformats" name="timeformat">
|
||||
<?php foreach($timeformats as $code => $timeformat) : ?>
|
||||
<option value="<?= $code; ?>"<?= strtolower($timeformat) == strtolower($_timeformat) ? ' selected' : ''; ?>><?= $timeformat; ?>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<tr><td colspan="2"><label for="iLanguages"><?= $this->getText('Language') ?></label>
|
||||
<tr><td colspan="2"><select id="iLanguages" name="language">
|
||||
<?php foreach($languages as $code => $language) : ?>
|
||||
<option value="<?= $code; ?>"<?= strtolower($code) == strtolower($_language) ? ' selected' : ''; ?>><?= $language; ?>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<tr><td colspan="2"><label for="iTemperature"><?= $this->getText('Temperature') ?></label>
|
||||
<tr><td colspan="2"><select id="iTemperature" name="temperature">
|
||||
</select>
|
||||
<tr><td colspan="2"><input type="submit" value="<?= $this->getText('Save', 0) ?>">
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-33 floatLeft">
|
||||
<header><h1><?= $this->getText('Numeric') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tr><td colspan="2"><label for="iCurrencies"><?= $this->getText('Currency') ?></label>
|
||||
<tr><td colspan="2"><select form="fLocalization" id="iCurrencies" name="currency">
|
||||
<?php foreach($currencies as $code => $currency) : ?>
|
||||
<option value="<?= $code; ?>"<?= strtolower($code) == strtolower($_currency) ? ' selected' : ''; ?>><?= $currency; ?>
|
||||
<?php endforeach; ?>
|
||||
</select>
|
||||
<tr><td colspan="2"><h2><?= $this->getText('Numberformat') ?></h2>
|
||||
<tr><td><label for="iDecimalPoint"><?= $this->getText('DecimalPoint') ?></label>
|
||||
<td><label for="iThousandSep"><?= $this->getText('ThousandsSeparator') ?></label>
|
||||
<tr><td><input form="fLocalization" id="iDecimalPoint" name="decimalpoint" type="text" value="<?= $_decimal_point; ?>" placeholder="." required>
|
||||
<td><input form="fLocalization" id="iThousandSep" name="thousandsep" type="text" value="<?= $_thousands_sep; ?>" placeholder="," required>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-33 floatLeft">
|
||||
<header><h1><?= $this->getText('Weight') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><label for="iVeryLight"><?= $this->getText('VeryLight') ?></label>
|
||||
<tr><select form="fLocalization" id="iVeryLight" name="very_light">
|
||||
</select>
|
||||
<tr><label for="iLight"><?= $this->getText('Light') ?></label>
|
||||
<tr><select form="fLocalization" id="iLight" name="light">
|
||||
</select>
|
||||
<tr><label for="iMedium"><?= $this->getText('Medium') ?></label>
|
||||
<tr><select form="fLocalization" id="iMedium" name="medium">
|
||||
</select>
|
||||
<tr><label for="iHeavy"><?= $this->getText('Heavy') ?></label>
|
||||
<tr><select form="fLocalization" id="iHeavy" name="heavy">
|
||||
</select>
|
||||
<tr><label for="iVeryHeavy"><?= $this->getText('VeryHeavy') ?></label>
|
||||
<tr><select form="fLocalization" id="iVeryHeavy" name="very_heavy">
|
||||
</select>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-33 floatLeft">
|
||||
<header><h1><?= $this->getText('Speed') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><label for="iVerySlow"><?= $this->getText('VerySlow') ?></label>
|
||||
<tr><select form="fLocalization" id="iVerySlow" name="very_slow">
|
||||
</select>
|
||||
<tr><label for="iSlow"><?= $this->getText('Slow') ?></label>
|
||||
<tr><select form="fLocalization" id="iSlow" name="slow">
|
||||
</select>
|
||||
<tr><label for="iMedium"><?= $this->getText('Medium') ?></label>
|
||||
<tr><select form="fLocalization" id="iMedium" name="medium">
|
||||
</select>
|
||||
<tr><label for="iFast"><?= $this->getText('Fast') ?></label>
|
||||
<tr><select form="fLocalization" id="iFast" name="fast">
|
||||
</select>
|
||||
<tr><label for="iVeryFast"><?= $this->getText('VeryFast') ?></label>
|
||||
<tr><select form="fLocalization" id="iVeryFast" name="very_fast">
|
||||
</select>
|
||||
<tr><label for="iSeaSpeed"><?= $this->getText('Sea') ?></label>
|
||||
<tr><select form="fLocalization" id="iSeaSpeed" name="sea_speed">
|
||||
</select>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-33 floatLeft">
|
||||
<header><h1><?= $this->getText('Length') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><label for="iVeryShort"><?= $this->getText('VeryShort') ?></label>
|
||||
<tr><select form="fLocalization" id="iVeryShort" name="very_short">
|
||||
</select>
|
||||
<tr><label for="iShort"><?= $this->getText('Short') ?></label>
|
||||
<tr><select form="fLocalization" id="iShort" name="short">
|
||||
</select>
|
||||
<tr><label for="iMedium"><?= $this->getText('Medium') ?></label>
|
||||
<tr><select form="fLocalization" id="iMedium" name="medium">
|
||||
</select>
|
||||
<tr><label for="iLong"><?= $this->getText('Long') ?></label>
|
||||
<tr><select form="fLocalization" id="iLong" name="long">
|
||||
</select>
|
||||
<tr><label for="iVeryLong"><?= $this->getText('VeryLong') ?></label>
|
||||
<tr><select form="fLocalization" id="iVeryLong" name="very_long">
|
||||
</select>
|
||||
<tr><label for="iSeaLength"><?= $this->getText('Sea') ?></label>
|
||||
<tr><select form="fLocalization" id="iSeaLength" name="sea_length">
|
||||
</select>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-33 floatLeft">
|
||||
<header><h1><?= $this->getText('Area') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><label for="iVerySmall"><?= $this->getText('VerySmall') ?></label>
|
||||
<tr><select form="fLocalization" id="iVerySmall" name="very_small">
|
||||
</select>
|
||||
<tr><label for="iSmall"><?= $this->getText('Small') ?></label>
|
||||
<tr><select form="fLocalization" id="iSmall" name="small">
|
||||
</select>
|
||||
<tr><label for="iMedium"><?= $this->getText('Medium') ?></label>
|
||||
<tr><select form="fLocalization" id="iMedium" name="medium">
|
||||
</select>
|
||||
<tr><label for="iLarge"><?= $this->getText('Large') ?></label>
|
||||
<tr><select form="fLocalization" id="iLarge" name="large">
|
||||
</select>
|
||||
<tr><label for="iVeryLarge"><?= $this->getText('VeryLarge') ?></label>
|
||||
<tr><select form="fLocalization" id="iVeryLarge" name="very_large">
|
||||
</select>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
<section class="box w-33 floatLeft">
|
||||
<header><h1><?= $this->getText('Volume') ?></h1></header>
|
||||
<div class="inner">
|
||||
<form>
|
||||
<table class="layout wf-100">
|
||||
<tbody>
|
||||
<tr><label for="iVerySmall"><?= $this->getText('VerySmall') ?></label>
|
||||
<tr><select form="fLocalization" id="iVerySmall" name="very_small">
|
||||
</select>
|
||||
<tr><label for="iSmall"><?= $this->getText('Small') ?></label>
|
||||
<tr><select form="fLocalization" id="iSmall" name="small">
|
||||
</select>
|
||||
<tr><label for="iMedium"><?= $this->getText('Medium') ?></label>
|
||||
<tr><select form="fLocalization" id="iMedium" name="medium">
|
||||
</select>
|
||||
<tr><label for="iLarge"><?= $this->getText('Large') ?></label>
|
||||
<tr><select form="fLocalization" id="iLarge" name="large">
|
||||
</select>
|
||||
<tr><label for="iVeryLarge"><?= $this->getText('VeryLarge') ?></label>
|
||||
<tr><select form="fLocalization" id="iVeryLarge" name="very_large">
|
||||
</select>
|
||||
<tr><label for="iTeaspoon"><?= $this->getText('Teaspoon') ?></label>
|
||||
<tr><select form="fLocalization" id="iTeaspoon" name="teaspoon">
|
||||
</select>
|
||||
<tr><label for="iTablespoon"><?= $this->getText('Tablespoon') ?></label>
|
||||
<tr><select form="fLocalization" id="iTablespoon" name="tablespoon">
|
||||
</select>
|
||||
<tr><label for="iGlass"><?= $this->getText('Glass') ?></label>
|
||||
<tr><select form="fLocalization" id="iGlass" name="glass">
|
||||
</select>
|
||||
</table>
|
||||
</form>
|
||||
</div>
|
||||
</section>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user