Advertisement
Guest User

Untitled

a guest
Dec 26th, 2015
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 2.01 KB | None | 0 0
  1. <?php echo $header; ?><?php echo $column_left; ?>
  2.  
  3. <div id="content">
  4.   <div class="page-header">
  5.     <div class="container-fluid">
  6.       <div class="pull-right">
  7.         <button type="submit" form="form-helloworld" data-toggle="tooltip" title="<?php echo $button_save; ?>" class="btn btn-primary"><i class="fa fa-save"></i></button>
  8.         <a href="<?php echo $cancel; ?>" data-toggle="tooltip" title="<?php echo $button_cancel; ?>" class="btn btn-default"><i class="fa fa-reply"></i></a></div>
  9.       <h1><?php echo $heading_title; ?></h1>
  10.       <ul class="breadcrumb">
  11.         <?php foreach ($breadcrumbs as $breadcrumb) { ?>
  12.         <li><a href="<?php echo $breadcrumb['href']; ?>"><?php echo $breadcrumb['text']; ?></a></li>
  13.         <?php } ?>
  14.       </ul>
  15.     </div>
  16.   </div>
  17.   <div class="container-fluid">
  18.     <?php if ($error_warning) { ?>
  19.     <div class="alert alert-danger"><i class="fa fa-exclamation-circle"></i> <?php echo $error_warning; ?>
  20.       <button type="button" class="close" data-dismiss="alert">&times;</button>
  21.     </div>
  22.     <?php } ?>
  23.     <div class="panel panel-default">
  24.       <div class="panel-heading">
  25.         <h3 class="panel-title"><i class="fa fa-pencil"></i> <?php echo $text_edit; ?></h3>
  26.       </div>
  27.       <div class="panel-body">
  28.         <form action="<?php echo $action; ?>" method="post" enctype="multipart/form-data" id="form-helloworld" class="form-horizontal">
  29.           <div class="form-group">
  30.             <label class="col-sm-2 control-label" for="input-status"><?php echo $entry_status; ?></label>
  31.             <div class="col-sm-10">
  32.               <select name="mysite_status" id="input-status" class="form-control">
  33.                 <?php if ($mysite_status) { ?>
  34.                 <option value="1" selected="selected"><?php echo $text_enabled; ?></option>
  35.                 <option value="0"><?php echo $text_disabled; ?></option>
  36.                 <?php } else { ?>
  37.                 <option value="1"><?php echo $text_enabled; ?></option>
  38.                 <option value="0" selected="selected"><?php echo $text_disabled; ?></option>
  39.                 <?php } ?>
  40.               </select>
  41.             </div>
  42.           </div>          
  43.         </form>
  44.       </div>
  45.     </div>
  46.   </div>
  47. </div>
  48.  
  49. <?php echo $footer; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement