golden hour
/home/godaofbq/oxythrive.com/wp-content/plugins/oxygen/component-framework/admin/views
⬆️ Go Up
Upload
File/Folder
Size
Actions
cpt-templates-metabox.php
11.52 KB
Del
OK
import-export-page.php
1.82 KB
Del
OK
svg-sets-page.php
1.33 KB
Del
OK
Edit: svg-sets-page.php
<div class="oxygen-vsb-settings-container"> <h2><?php _e("SVG Sets", "component-theme"); ?></h2> <?php do_action('oxygen_vsb_before_settings_page');?> <form action="" method="post" enctype="multipart/form-data"> <?php $svg_sets = oxy_get_svg_sets(); ?> <?php if ( ! empty( $svg_sets ) ) : ?> <h3><?php _e("Uploaded SVG Sets", "component-theme"); ?></h3> <?php foreach ( $svg_sets as $name => $set ) : ?> <?php echo sanitize_text_field( $name ); ?> <?php if( FALSE === array_search( $name, $builtin_sets ) ): ?> <button type="submit" class="button button-small" value="<?php echo sanitize_text_field( $name ); ?>" name="ct_delete_svg_set"><?php _e("Delete", "component-theme"); ?></button> <?php endif; ?> <br/> <?php endforeach; ?> <?php endif; ?> <h3><?php _e("Add A New SVG Set", "component-theme"); ?></h3> <div class="oxygen-vsb-settings-svg-div"> <?php _e("Icon set name", "component-theme"); ?> <input type="text" name="ct_svg_set_name"> </div> <div class="oxygen-vsb-settings-svg-div"> <?php _e("Select the file to import", "component-theme"); ?> <input type="file" name="ct_svg_set_file" id="ct-svg-set-file"> </div> <p class="submit"> <input type="submit" class="button button-primary" value="<?php _e("Import SVG Set", "component-theme"); ?>" name="submit"> </p> </form> </div>
Save