ok
Direktori : /proc/self/root/home2/selectio/www/bharath/application/views/admin/language/ |
Current File : //proc/self/root/home2/selectio/www/bharath/application/views/admin/language/update_language.php |
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?> <?php $ed_langs = array(); $ed_langs[] = array("short" => "ar", "name" => "Arabic"); $ed_langs[] = array("short" => "hy", "name" => "Armenian"); $ed_langs[] = array("short" => "az", "name" => "Azerbaijani"); $ed_langs[] = array("short" => "eu", "name" => "Basque"); $ed_langs[] = array("short" => "be", "name" => "Belarusian"); $ed_langs[] = array("short" => "bn_BD", "name" => "Bengali (Bangladesh)"); $ed_langs[] = array("short" => "bs", "name" => "Bosnian"); $ed_langs[] = array("short" => "bg_BG", "name" => "Bulgarian"); $ed_langs[] = array("short" => "ca", "name" => "Catalan"); $ed_langs[] = array("short" => "zh_CN", "name" => "Chinese (China)"); $ed_langs[] = array("short" => "zh_TW", "name" => "Chinese (Taiwan)"); $ed_langs[] = array("short" => "hr", "name" => "Croatian"); $ed_langs[] = array("short" => "cs", "name" => "Czech"); $ed_langs[] = array("short" => "da", "name" => "Danish"); $ed_langs[] = array("short" => "dv", "name" => "Divehi"); $ed_langs[] = array("short" => "nl", "name" => "Dutch"); $ed_langs[] = array("short" => "en", "name" => "English"); $ed_langs[] = array("short" => "et", "name" => "Estonian"); $ed_langs[] = array("short" => "fo", "name" => "Faroese"); $ed_langs[] = array("short" => "fi", "name" => "Finnish"); $ed_langs[] = array("short" => "fr_FR", "name" => "French"); $ed_langs[] = array("short" => "gd", "name" => "Gaelic, Scottish"); $ed_langs[] = array("short" => "gl", "name" => "Galician"); $ed_langs[] = array("short" => "ka_GE", "name" => "Georgian"); $ed_langs[] = array("short" => "de", "name" => "German"); $ed_langs[] = array("short" => "el", "name" => "Greek"); $ed_langs[] = array("short" => "he", "name" => "Hebrew"); $ed_langs[] = array("short" => "hi_IN", "name" => "Hindi"); $ed_langs[] = array("short" => "hu_HU", "name" => "Hungarian"); $ed_langs[] = array("short" => "is_IS", "name" => "Icelandic"); $ed_langs[] = array("short" => "id", "name" => "Indonesian"); $ed_langs[] = array("short" => "it", "name" => "Italian"); $ed_langs[] = array("short" => "ja", "name" => "Japanese"); $ed_langs[] = array("short" => "kab", "name" => "Kabyle"); $ed_langs[] = array("short" => "kk", "name" => "Kazakh"); $ed_langs[] = array("short" => "km_KH", "name" => "Khmer"); $ed_langs[] = array("short" => "ko_KR", "name" => "Korean"); $ed_langs[] = array("short" => "ku", "name" => "Kurdish"); $ed_langs[] = array("short" => "lv", "name" => "Latvian"); $ed_langs[] = array("short" => "lt", "name" => "Lithuanian"); $ed_langs[] = array("short" => "lb", "name" => "Luxembourgish"); $ed_langs[] = array("short" => "ml", "name" => "Malayalam"); $ed_langs[] = array("short" => "mn", "name" => "Mongolian"); $ed_langs[] = array("short" => "nb_NO", "name" => "Norwegian Bokmål (Norway)"); $ed_langs[] = array("short" => "fa", "name" => "Persian"); $ed_langs[] = array("short" => "pl", "name" => "Polish"); $ed_langs[] = array("short" => "pt_BR", "name" => "Portuguese (Brazil)"); $ed_langs[] = array("short" => "pt_PT", "name" => "Portuguese (Portugal)"); $ed_langs[] = array("short" => "ro", "name" => "Romanian"); $ed_langs[] = array("short" => "ru", "name" => "Russian"); $ed_langs[] = array("short" => "sr", "name" => "Serbian"); $ed_langs[] = array("short" => "si_LK", "name" => "Sinhala (Sri Lanka)"); $ed_langs[] = array("short" => "sk", "name" => "Slovak"); $ed_langs[] = array("short" => "sl_SI", "name" => "Slovenian (Slovenia)"); $ed_langs[] = array("short" => "es", "name" => "Spanish"); $ed_langs[] = array("short" => "es_MX", "name" => "Spanish (Mexico)"); $ed_langs[] = array("short" => "sv_SE", "name" => "Swedish (Sweden)"); $ed_langs[] = array("short" => "tg", "name" => "Tajik"); $ed_langs[] = array("short" => "ta", "name" => "Tamil"); $ed_langs[] = array("short" => "tt", "name" => "Tatar"); $ed_langs[] = array("short" => "th_TH", "name" => "Thai"); $ed_langs[] = array("short" => "tr", "name" => "Turkish"); $ed_langs[] = array("short" => "ug", "name" => "Uighur"); $ed_langs[] = array("short" => "uk", "name" => "Ukrainian"); $ed_langs[] = array("short" => "vi", "name" => "Vietnamese"); $ed_langs[] = array("short" => "cy", "name" => "Welsh"); ?> <div class="row"> <div class="col-lg-6 col-md-12"> <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title"><?php echo trans("update_language"); ?></h3> </div> <!-- /.box-header --> <!-- form start --> <?php echo form_open_multipart('language_controller/update_language_post'); ?> <input type="hidden" name="id" value="<?php echo html_escape($language->id); ?>"> <div class="box-body"> <!-- include message block --> <?php $this->load->view('admin/includes/_messages'); ?> <div class="form-group"> <label><?php echo trans("language_name"); ?></label> <input type="text" class="form-control" name="name" placeholder="<?php echo trans("language_name"); ?>" value="<?php echo $language->name; ?>" maxlength="200" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?> required> <small>(Ex: English)</small> </div> <?php if ($language->short_form == "en"): ?> <div class="form-group"> <label class="control-label"><?php echo trans("short_form"); ?> </label> <input type="text" class="form-control" name="short_form" placeholder="<?php echo trans("short_form"); ?>" value="<?php echo $language->short_form; ?>" maxlength="200" readonly <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?> required> <small>(Ex: en)</small> </div> <?php else: ?> <div class="form-group"> <label class="control-label"><?php echo trans("short_form"); ?> </label> <input type="text" class="form-control" name="short_form" placeholder="<?php echo trans("short_form"); ?>" value="<?php echo $language->short_form; ?>" maxlength="200" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?> required> <small>(Ex: en)</small> </div> <?php endif; ?> <div class="form-group"> <label class="control-label"><?php echo trans("language_code"); ?> </label> <input type="text" class="form-control" name="language_code" placeholder="<?php echo trans("language_code"); ?>" value="<?php echo $language->language_code; ?>" maxlength="200" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?> required> <small>(Ex: en_us)</small> </div> <div class="form-group"> <label><?php echo trans('order'); ?></label> <input type="number" class="form-control" name="language_order" placeholder="<?php echo trans('order'); ?>" value="<?php echo $language->language_order; ?>" min="1" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?> required> </div> <div class="form-group"> <div class="row"> <div class="col-sm-12 col-xs-12"> <label><?php echo trans('text_direction'); ?></label> </div> <div class="col-sm-6 col-xs-12 col-option"> <input type="radio" id="rb_type_1" name="text_direction" value="ltr" class="square-purple" <?php echo ($language->text_direction == "ltr") ? 'checked' : ''; ?>> <label for="rb_type_1" class="cursor-pointer"><?php echo trans("left_to_right"); ?></label> </div> <div class="col-sm-6 col-xs-12 col-option"> <input type="radio" id="rb_type_2" name="text_direction" value="rtl" class="square-purple" <?php echo ($language->text_direction == "rtl") ? 'checked' : ''; ?>> <label for="rb_type_2" class="cursor-pointer"><?php echo trans("right_to_left"); ?></label> </div> </div> </div> <div class="form-group"> <label><?php echo trans('text_editor_language'); ?></label> <select name="text_editor_lang" class="form-control" required> <?php foreach ($ed_langs as $ed_lang): ?> <option value="<?php echo $ed_lang['short']; ?>" <?php echo ($ed_lang['short'] == $language->text_editor_lang) ? 'selected' : ''; ?>><?php echo $ed_lang['name']; ?></option> <?php endforeach; ?> </select> </div> <div class="form-group"> <label class="control-label"><?php echo trans("flag"); ?></label> <div class="display-block m-b-15"> <img src="<?php echo base_url() . $language->flag_path; ?>" alt=""/> </div> <div class="display-block"> <a class='btn btn-default btn-sm btn-file-upload'> <i class="fa fa-image text-muted"></i> <?php echo trans("select_image"); ?> <input type="file" name="file" size="40" accept=".png, .jpg, .jpeg, .gif" onchange="$('#upload-file-info-flag').html($(this).val().replace(/.*[\/\\]/, ''));"> </a> <br> <span class='label label-default label-file-upload' id="upload-file-info-flag"></span> </div> </div> <div class="form-group"> <div class="row"> <div class="col-sm-3 col-xs-12"> <label><?php echo trans('status'); ?></label> </div> <div class="col-sm-4 col-xs-12 col-option"> <input type="radio" name="status" value="1" id="status1" class="square-purple" <?php echo ($language->status == "1") ? 'checked' : ''; ?>> <label for="status1" class="option-label"><?php echo trans('active'); ?></label> </div> <div class="col-sm-4 col-xs-12 col-option"> <input type="radio" name="status" value="0" id="status2" class="square-purple" <?php echo ($language->status != "1") ? 'checked' : ''; ?>> <label for="status2" class="option-label"><?php echo trans('inactive'); ?></label> </div> </div> </div> </div> <!-- /.box-body --> <div class="box-footer"> <button type="submit" class="btn btn-primary pull-right"><?php echo trans('save_changes'); ?></button> </div> <!-- /.box-footer --> <?php echo form_close(); ?><!-- form end --> </div> <!-- /.box --> </div> </div>