• Main Page
  • Related Pages
  • Namespaces
  • Classes
  • Files
  • Examples
  • File List

system/plugins/menus/admincontrol_text_transparent.php

00001 <?php
00002 namespace Habari;
00003 if ( !defined( 'HABARI_PATH' ) ) { die('No direct access'); }
00004 ?>
00005 
00006   <div class="container transparent">
00007 <?php /*    <label for="<?php echo $id; ?>" class="incontent <?php echo $class; ?>"><?php echo $caption; ?></label>
00008     <input type="text" name="<?php echo $field; ?>" id="<?php echo $id; ?>" class="styledformelement text <?php echo $class; ?>" value="<?php echo Utils::htmlspecialchars($value); ?>" <?php echo isset($tabindex) ? ' tabindex="' . $tabindex . '"' : ''?>>
00009 */?>  <label <?php
00010     echo $control->parameter_map(
00011       array(
00012         'title' => array('label_title', 'title'),
00013         'for' => 'field',
00014       )
00015     ); ?>><?php echo $this->caption; ?></label>
00016   <input <?php
00017     echo $control->parameter_map(
00018       array(
00019         'title' => array('control_title', 'title'),
00020         'tabindex', 'size', 'maxlength', 'type', 'placeholder',
00021         'id' => 'field',
00022         'name' => 'field',
00023       ),
00024       array(
00025         'value' => Utils::htmlspecialchars( $value ),
00026       )
00027     );
00028     ?>>
00029   <?php $control->errors_out( '<li>%s</li>', '<ul class="error">%s</ul>' ); ?>
00030   </div>

Generated on Sun Aug 4 2013 12:51:44 for Habari by  doxygen 1.7.1