2012-02-06 10:32:57 +04:00
< ? php
$adr = isset ( $_ [ 'adr' ]) ? $_ [ 'adr' ] : array ();
$id = $_ [ 'id' ];
$types = array ();
foreach ( isset ( $adr [ 'parameters' ][ 'TYPE' ]) ? array ( $adr [ 'parameters' ][ 'TYPE' ]) : array () as $type ) {
$types [] = strtoupper ( $type );
}
?>
< div id = " edit_address_dialog " title = " <?php echo $l->t ('Edit address'); ?> " >
<!-- ? php print_r ( $types ); ? -->
< fieldset id = " address " >
< dl class = " form " >
< dt >
< label class = " label " for = " adr_type " >< ? php echo $l -> t ( 'Type' ); ?> </label>
</ dt >
< dd >
< select id = " adr_type " name = " parameters[ADR][TYPE] " size = " 1 " >
2012-05-07 01:00:36 +04:00
< ? php echo OCP\html_select_options ( $_ [ 'adr_types' ], $types ) ?>
2012-02-06 10:32:57 +04:00
</ select >
</ dd >
< dt >
< label class = " label " for = " adr_pobox " >< ? php echo $l -> t ( 'PO Box' ); ?> </label>
</ dt >
< dd >
2012-04-07 18:03:11 +04:00
< input type = " text " id = " adr_pobox " name = " value[ADR][0] " placeholder = " <?php echo $l->t ('PO Box'); ?> " value = " <?php echo isset( $adr['value'] [0])? $adr['value'] [0]:''; ?> " >
2012-02-06 10:32:57 +04:00
</ dd >
< dt >
2012-06-06 21:13:57 +04:00
< label class = " label " for = " adr_street " >< ? php echo $l -> t ( 'Street address' ); ?> </label>
2012-02-06 10:32:57 +04:00
</ dt >
< dd >
2012-06-06 21:13:57 +04:00
< input type = " text " id = " adr_street " name = " value[ADR][2] " placeholder = " <?php echo $l->t ('Street and number'); ?> " value = " <?php echo isset( $adr['value'] [2])? $adr['value'] [2]:''; ?> " >
2012-02-06 10:32:57 +04:00
</ dd >
< dt >
2012-06-06 21:13:57 +04:00
< label class = " label " for = " adr_extended " >< ? php echo $l -> t ( 'Extended' ); ?> </label>
2012-02-06 10:32:57 +04:00
</ dt >
< dd >
2012-06-06 21:13:57 +04:00
< input type = " text " id = " adr_extended " name = " value[ADR][1] " placeholder = " <?php echo $l->t ('Apartment number etc.'); ?> " value = " <?php echo isset( $adr['value'] [1])? $adr['value'] [1]:''; ?> " >
2012-02-06 10:32:57 +04:00
</ dd >
< dt >
< label class = " label " for = " adr_city " >< ? php echo $l -> t ( 'City' ); ?> </label>
</ dt >
< dd >
2012-04-07 18:03:11 +04:00
< input type = " text " id = " adr_city " name = " value[ADR][3] " placeholder = " <?php echo $l->t ('City'); ?> " value = " <?php echo isset( $adr['value'] [3])? $adr['value'] [3]:''; ?> " >
2012-02-06 10:32:57 +04:00
</ dd >
< dt >
< label class = " label " for = " adr_region " >< ? php echo $l -> t ( 'Region' ); ?> </label>
</ dt >
< dd >
2012-06-06 21:13:57 +04:00
< input type = " text " id = " adr_region " name = " value[ADR][4] " placeholder = " <?php echo $l->t ('E.g. state or province'); ?> " value = " <?php echo isset( $adr['value'] [4])? $adr['value'] [4]:''; ?> " >
2012-02-06 10:32:57 +04:00
</ dd >
< dt >
< label class = " label " for = " adr_zipcode " >< ? php echo $l -> t ( 'Zipcode' ); ?> </label>
</ dt >
< dd >
2012-06-06 21:13:57 +04:00
< input type = " text " id = " adr_zipcode " name = " value[ADR][5] " placeholder = " <?php echo $l->t ('Postal code'); ?> " value = " <?php echo isset( $adr['value'] [5])? $adr['value'] [5]:''; ?> " >
2012-02-06 10:32:57 +04:00
</ dd >
< dt >
< label class = " label " for = " adr_country " >< ? php echo $l -> t ( 'Country' ); ?> </label>
</ dt >
< dd >
2012-04-07 18:03:11 +04:00
< input type = " text " id = " adr_country " name = " value[ADR][6] " placeholder = " <?php echo $l->t ('Country'); ?> " value = " <?php echo isset( $adr['value'] [6])? $adr['value'] [6]:''; ?> " >
2012-02-06 10:32:57 +04:00
</ dd >
</ dl >
</ fieldset >
</ form >
</ div >