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/languages.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" style="margin-bottom: 15px;"> <div class="col-sm-12"> <h3 style="font-size: 18px; font-weight: 600;margin-top: 10px;"><?php echo trans('language_settings'); ?></h3> </div> </div> <div class="row"> <div class="col-sm-12"> <div class="box"> <div class="box-header with-border"> <div class="pull-left"> <h3 class="box-title"><?php echo trans('languages'); ?></h3> </div> </div><!-- /.box-header --> <div class="box-body"> <div class="row"> <div class="table-responsive"> <!-- include message block --> <div class="col-sm-12"> <?php $this->load->view('admin/includes/_messages'); ?> </div> <div class="col-sm-12"> <table class="table table-bordered table-striped data_table" role="grid" aria-describedby="example1_info"> <thead> <tr role="row"> <th width="20"><?php echo trans('id'); ?></th> <th><?php echo trans('language_name'); ?></th> <th><?php echo trans('default_language'); ?></th> <th><?php echo trans('translation'); ?>/<?php echo trans('export'); ?></th> <th class="th-options"><?php echo trans('options'); ?></th> </tr> </thead> <tbody> <?php foreach ($languages as $item): ?> <tr> <td><?php echo html_escape($item->id); ?></td> <td> <?php echo html_escape($item->name); ?> <?php if ($item->status == 1): ?> <label class="label label-success lbl-lang-status"><?php echo trans('active'); ?></label> <?php else: ?> <label class="label label-danger lbl-lang-status"><?php echo trans('inactive'); ?></label> <?php endif; ?> </td> <td> <?php if ($this->selected_lang->id == $item->id): ?> <label class="label label-default lbl-lang-status"><?php echo trans('default'); ?></label> <?php else: ?> <?php echo form_open('language_controller/set_language_post', ['class' => 'display-inline-block']); ?> <input type="hidden" name="site_lang" value="<?php echo $item->id; ?>"> <button type="submit" class="btn btn-sm btn-success float-right"> <i class="fa fa-check" aria-hidden="true"></i> <?php echo trans('set_as_default'); ?> </button> <?php echo form_close(); ?> <?php endif; ?> </td> <td> <a href="<?php echo admin_url(); ?>translations/<?php echo $item->id; ?>?show=50" class="btn btn-sm btn-info float-right"> <i class="fa fa-exchange"></i> <?php echo trans('edit_translations'); ?> </a> <?php echo form_open('language_controller/export_language_post', ['class' => 'display-inline-block']); ?> <input type="hidden" name="lang_id" value="<?php echo $item->id; ?>"> <button type="submit" class="btn btn-sm btn-warning float-right"> <i class="fa fa-cloud-download" aria-hidden="true"></i> <?php echo trans('export'); ?> </button> <?php echo form_close(); ?> </td> <td> <div class="dropdown"> <button class="btn bg-purple dropdown-toggle btn-select-option" type="button" data-toggle="dropdown"><?php echo trans('select_option'); ?> <span class="caret"></span> </button> <ul class="dropdown-menu options-dropdown"> <li> <a href="<?php echo admin_url(); ?>update-language/<?php echo html_escape($item->id); ?>"><i class="fa fa-edit option-icon"></i><?php echo trans('edit'); ?></a> </li> <li> <a href="javascript:void(0)" onclick="delete_item('language_controller/delete_language_post','<?php echo $item->id; ?>','<?php echo trans("confirm_language"); ?>');"><i class="fa fa-trash option-icon"></i><?php echo trans('delete'); ?></a> </li> </ul> </div> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> </div> </div><!-- /.box-body --> </div> </div> </div> </div> <div class="row"> <div class="col-lg-6 col-md-12"> <div class="box"> <div class="box-header with-border"> <h3 class="box-title"><?php echo trans("add_language"); ?></h3> </div> <!-- /.box-header --> <!-- form start --> <?php echo form_open_multipart('language_controller/add_language_post'); ?> <div class="box-body"> <!-- include message block --> <?php if (empty($this->session->flashdata('msg_lang_import'))): $this->load->view('admin/includes/_messages_form'); endif; ?> <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 old('name'); ?>" maxlength="200" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?> required> <small>(Ex: English)</small> </div> <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 old('short_form'); ?>" maxlength="200" <?php echo ($this->rtl == true) ? 'dir="rtl"' : ''; ?> required> <small>(Ex: en)</small> </div> <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 old('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="1" 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" 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"> <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['name']; ?></option> <?php endforeach; ?> </select> </div> <div class="form-group"> <label class="control-label"><?php echo trans("flag"); ?></label> <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(/.*[\/\\]/, ''));" required> </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-4 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" 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"> <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('add_language'); ?></button> </div> <!-- /.box-footer --> <?php echo form_close(); ?><!-- form end --> </div> </div> <div class="col-lg-6 col-md-12"> <div class="box" style="max-width: 500px;"> <div class="box-header with-border"> <h3 class="box-title"><?php echo trans("import_language"); ?></h3> </div> <?php echo form_open_multipart('language_controller/import_language_post'); ?> <div class="box-body"> <?php if (!empty($this->session->flashdata('msg_lang_import'))): $this->load->view('admin/includes/_messages_form'); endif; ?> <div class="form-group"> <label class="control-label"><?php echo trans('json_language_file'); ?></label> <div class="display-block"> <a class='btn btn-default btn-sm btn-file-upload'> <i class="fa fa-file text-muted"></i> <?php echo trans('select_file'); ?> <input type="file" name="file" size="40" accept=".json" required onchange="$('#upload-file-info').html($(this).val().replace(/.*[\/\\]/, ''));"> </a> <br> <span class='label label-default label-file-upload' id="upload-file-info"></span> </div> </div> <div class="form-group"> <label class="control-label"><?php echo trans('flag'); ?></label> <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="flag" size="40" accept=".png, .jpg, .jpeg, .gif" required onchange="$('#upload-file-info-1').html($(this).val().replace(/.*[\/\\]/, ''));"> </a> </div> <span class='label label-default label-file-upload' id="upload-file-info-1"></span> </div> </div> <!-- /.box-body --> <div class="box-footer"> <button type="submit" class="btn btn-primary pull-right"><?php echo trans('import_language'); ?></button> </div> <!-- /.box-footer --> <?php echo form_close(); ?><!-- form end --> </div> <div class="alert alert-info alert-large" style="width: auto !important;display: inline-block;max-width: 500px;"> <?= trans("languages"); ?>: <a href="https://codingest.net/languages" target="_blank" style="color: #0c5460;font-weight: bold">https://codingest.net/languages</a> </div> </div> </div>