Viewing file: settings-upload.cgi (4.28 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# # Authentic Theme (https://github.com/authentic-theme/authentic-theme) # Copyright Ilia Rostovtsev <programming@rostovtsev.ru> # Licensed under MIT (https://github.com/authentic-theme/authentic-theme/blob/master/LICENSE) #
use File::Basename; require(dirname(__FILE__) . "/authentic-lib.pm");
!foreign_available("webmin") && error($Atext{'theme_error_access_not_root'});
&ui_print_header($in{'file'}, $Atext{'settings_right_theme_logos_title'}, undef, undef, undef, 1);
my $lga = $config_directory . "/$current_theme/logo.png"; my $lgg = $config_directory . "/$current_theme/logo_welcome.png";
print '' . &Atext('settings_right_logos_title') . ' <p></p>'; print &ui_form_start("settings-upload_save.cgi", "form-data"); print &ui_hidden("path", $config_directory), "\n"; print ' <div class="table-responsive"> <table class="table table-striped table-condensed table-subtable"> <thead><tr><th class="table-title"><b>' . $Atext{'theme_xhred_config_configurable_options'} . '</b></th></tr></thead> <tbody> <tr> <td> <table class="sub_table_container table-hardcoded" width="100%"> <tbody> <tr class="atshover"> <td class="col_label"><b>' . $Atext{'settings_right_logo_authenticated_users'} . '</b></td> <td class="col_value">' . ui_yesno_radio("authenticated_logo", (-r $lga ? "1" : "0"), "1", "0") . '</td> <td class="col_value"> <button class="btn btn-default chooser_button file_chooser_button_preview' . (!-r $lga && ' disabled') . '" type="button"' . (-r $lga && ' data-image-lga data-image="data:image/png;base64,' . encode_base64(read_file_contents($lga)) . '"') . '> <i class="fa fa-fw fa-eye text-muted"></i> </button> <input class="ui_upload' . (!-r $lga && ' disabled') . '" type=file name="authenticated_logo_file" accept=".png" size="40" >
</td> </tr> <tr class="atshover"> <td class="col_label"><b>' . $Atext{'settings_right_logo_unauthenticated_users'} . '</b></td> <td class="col_value" >' . ui_yesno_radio("unauthenticated_logo", (-r $lgg ? "1" : "0"), "1", "0") . '</td> <td class="col_value"> <button class="btn btn-default chooser_button file_chooser_button_preview' . (!-r $lgg && ' disabled') . '" type="button"' . (-r $lgg && ' data-image-lgg data-image="data:image/png;base64,' . encode_base64(read_file_contents($lgg)) . '"') . '> <i class="fa fa-fw fa-eye text-muted"></i> </button> <input class="ui_upload' . (!-r $lgg && ' disabled') . '" type=file name="unauthenticated_logo_file" accept=".png" size="40"> </td> </tr> </tbody> </table> </td> </tr> </tbody> </table> </div> <table class="ui_form_end_buttons" width="100%"> <tr> <td> <button class="btn btn-info file-editor-saved' . ($in{'saved'} ne 1 && ' hidden') . '" type="submit" name="save" id="saved"><i class="fa fa-fw fa-check-square-o"></i>' . $Atext{'settings_right_saved'} . ' </button> <button class="btn btn-success file-editor-save page_footer_ajax_submit' . ($in{'saved'} eq 1 && ' hidden') . '" type="submit" name="save" id="save"><i class="fa fa-fw fa-floppy-o"></i>' . $text{'save'} . ' </button> </td> <td align="right"> <a class="btn btn-default page_footer_ajax_submit" href="' . $gconfig{'webprefix'} . '/settings-editor_read.cgi"><i class="fa fa-fw fa-file-code-o"> </i> ' . &Atext('settings_right_theme_extensions') . ' </a> </td> </tr> </table> </form>'; &ui_print_footer("webmin/edit_themes.cgi", $Atext{'right_return_theme_options'});
|