Esempio n. 1
0
                <?php 
echo Dsc\Html\Select::options($options, $flash->old('currency.default'));
?>
            
            </select>
            <p class="help-block">
            The default currency used for displaying prices to the customer.
            </p>
        </div>
        <!-- /.form-group -->    
    
        <div class="form-group">
            <label>Currency used in Database</label>
            <select name="currency[database]" class="form-control">
                <?php 
echo Dsc\Html\Select::options($options, $flash->old('currency.database'));
?>
            
            </select>
            <p class="help-block">
            All monetary values in the database (product prices, order amounts, etc) are assumed to be in this currency and this currency will be used as the basis for all conversions when a customer selects a different currency for display.
            </p>
        </div>
        <!-- /.form-group -->
        
        <div class="form-group">
            <label>Open Exchange Rates API ID</label>
            <input name="currency[openexchangerates_api_id]" placeholder="Get this from https://openexchangerates.org" value="<?php 
echo $flash->old('currency.openexchangerates_api_id');
?>
" class="form-control" type="text" />
        
        <div class="form-group">
            <div class="row">
                <div class="col-md-6">
                    <label>Default Gender</label>
                    <select name="feeds[gm_products][gender]" class="form-control">
                        <?php 
echo Dsc\Html\Select::options(array(array('value' => 'female', 'text' => 'Female'), array('value' => 'male', 'text' => 'Male'), array('value' => 'unisex', 'text' => 'Unisex')), $flash->old('feeds.gm_products.gender'));
?>
                    </select>                
                </div>                
                <div class="col-md-6">
                    <label>Default Age Group</label>
                    <select name="feeds[gm_products][age_group]" class="form-control">
                        <?php 
echo Dsc\Html\Select::options(array(array('value' => 'adult', 'text' => 'Adult'), array('value' => 'kids', 'text' => 'Kids'), array('value' => 'toddler', 'text' => 'Toddler'), array('value' => 'infant', 'text' => 'Infant'), array('value' => 'newborn', 'text' => 'Newborn')), $flash->old('feeds.gm_products.age_group'));
?>
                    </select>                
                </div>
            </div>

        </div>        
        <!-- /.form-group -->       
                        
    </div>
    <!-- /.col-md-10 -->
</div>
<!-- /.row -->

<hr />