Your IP : 216.73.216.240


Current Path : /home/juvelize/www/administrator/components/com_joomgallery/layouts/joomgallery/migration/
Upload File :
Current File : /home/juvelize/www/administrator/components/com_joomgallery/layouts/joomgallery/migration/form.php

<?php
/****************************************************************************************\
**   JoomGallery 3                                                                      **
**   By: JoomGallery::ProjectTeam                                                       **
**   Copyright (C) 2008 - 2021  JoomGallery::ProjectTeam                                **
**   Based on: JoomGallery 1.0.0 by JoomGallery::ProjectTeam                            **
**   Released under GNU GPL Public License                                              **
**   License: http://www.gnu.org/copyleft/gpl.html or have a look                       **
**   at administrator/components/com_joomgallery/LICENSE.TXT                            **
\****************************************************************************************/

defined('_JEXEC') or die('Direct Access to this location is not allowed.'); ?>

  <tr>
    <td width="50%">
      <h4><?php echo JText::_('FILES_JOOMGALLERY_MIGRATION_'.strtoupper($displayData->migration).'_MIGRATIONCHECK'); ?></h4>
    </td>
    <td>
      <form action="<?php echo $displayData->url; ?>" method="post" class="form-horizontal form-validate">
        <?php if($displayData->description): ?>
        <div class="alert alert-info"><?php echo $displayData->description; ?></div>
        <?php endif;
              foreach($displayData->fields as $field):
                if(!$field->hidden): ?>
        <div class="control-group">
          <div class="control-label">
            <?php echo $field->label; ?>
          </div>
          <div class="controls">
            <?php echo $field->input; ?>
          </div>
        </div>
        <?php else: ?>
        <div><?php echo $field->input; ?></div>
        <?php   endif;
              endforeach;
              if(count($displayData->fields)): ?>
        <div class="control-group">
          <div class="controls">
            <button id="button-<?php echo $displayData->migration; ?>" class="btn btn-primary">
              <?php echo JText::_('COM_JOOMGALLERY_MIGMAN_CHECK'); ?>
            </button>
          </div>
          <input type="hidden" name="migration" value="<?php echo $displayData->migration; ?>" />
        </div>
        <?php else: ?>
        <div class="center">
          <button id="button-<?php echo $displayData->migration; ?>" class="btn btn-primary">
            <?php echo JText::_('COM_JOOMGALLERY_MIGMAN_CHECK'); ?>
          </button>
          <input type="hidden" name="migration" value="<?php echo $displayData->migration; ?>" />
        </div>
        <?php endif; ?>
      </form>
    </td>
  </tr>