Your IP : 216.73.216.240


Current Path : /home/juvelize/www/administrator/components/com_admintools/tmpl/ChangeDBCollation/
Upload File :
Current File : /home/juvelize/www/administrator/components/com_admintools/tmpl/ChangeDBCollation/default.blade.php

<?php
/**
 * @package   admintools
 * @copyright Copyright (c)2010-2023 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   GNU General Public License version 3, or later
 */

// Protect from unauthorized access
defined('_JEXEC') || die;
?>

<div class="akeeba-block--info">
	<h3>
		@lang('COM_ADMINTOOLS_LBL_CHANGEDBCOLLATION_CHOOSE_INFO_HEAD')
	</h3>
	<p>
		@lang('COM_ADMINTOOLS_LBL_CHANGEDBCOLLATION_CHOOSE_INFO_BODY')
	</p>
</div>

<form action="index.php" name="adminForm" id="adminForm" class="akeeba-form--horizontal">
	<div class="akeeba-form-group">
		<label for="inputCollation">@lang('COM_ADMINTOOLS_LBL_CHANGEDBCOLLATION_LBL')</label>
		<div>
			<select id="quickCollation">
				<option value="">
					@lang('COM_ADMINTOOLS_LBL_CHANGEDBCOLLATION_CHOOSE_CUSTOM')
				</option>
				<option value="utf8_general_ci">
					@lang('COM_ADMINTOOLS_LBL_CHANGEDBCOLLATION_CHOOSE_UTF8')
				</option>
				<option value="utf8mb4_general_ci" selected="selected">
					@lang('COM_ADMINTOOLS_LBL_CHANGEDBCOLLATION_CHOOSE_UTF8MB4')
				</option>
			</select>

			<input type="text" id="inputCollation" name="collation" placeholder="collation" value="utf8mb4_general_ci" style="display: none;">
		</div>
	</div>

	<div class="akeeba-form-group">
		<div>
			<a class="akeeba-btn--ghost" href="index.php?option=com_admintools">
				<span class="akion-ios-arrow-back"></span>
				@lang('JTOOLBAR_BACK')
			</a>
			<button type="submit" class="akeeba-btn--orange">
				<span class="akion-forward"></span>
				@lang('COM_ADMINTOOLS_LBL_CHANGEDBCOLLATION_APPLY')
			</button>
		</div>
	</div>

    <input type="hidden" name="option" value="com_admintools"/>
    <input type="hidden" name="view" value="ChangeDBCollation"/>
    <input type="hidden" name="task" value="apply"/>
    <input type="hidden" name="tmpl" value="component"/>
    <input type="hidden" name="@token(true)" value="1"/>
</form>