/wp-content/themes/vantage/premium/extras/css/page.php
https://gitlab.com/haque.mdmanzurul/wp-harpar-carolyn · PHP · 64 lines · 52 code · 12 blank · 0 comment · 3 complexity · f8ecf63be33cf8530713360e8cae3384 MD5 · raw file
- <div class="wrap">
- <h2><?php _e( 'Custom CSS', 'vantage' ) ?></h2>
- <?php if(isset($_POST['siteorigin_custom_css_save'])) : ?>
- <div class="updated settings-error">
- <p><?php _e('Custom CSS Updated', 'vantage') ?></p>
- </div>
- <?php endif; ?>
- <?php if(!empty($revision)) : ?>
- <div class="updated settings-error">
- <p><?php _e('Viewing a revision. Save CSS to use this revision.', 'vantage') ?></p>
- </div>
- <?php endif; ?>
- <div id="poststuff">
- <div id="so-custom-css-info">
- <div class="postbox" id="so-custom-css-revisions">
- <h3 class="hndle"><span><?php _e('CSS Revisions', 'vantage') ?></span></h3>
- <div class="inside">
- <ol data-confirm="<?php esc_attr_e('Are you sure you want to load this revision?', 'vantage') ?>">
- <?php
- if( is_array($custom_css_revisions) ) {
- foreach($custom_css_revisions as $time => $css) {
- ?>
- <li>
- <a href="<?php echo add_query_arg(array('theme' => $theme, 'time' => $time)) ?>" class="load-css-revision"><?php echo date('j F Y @ H:i:s', $time) ?></a>
- (<?php printf(__('%d chars', 'vantage'), strlen($css)) ?>)
- </li>
- <?php
- }
- }
- ?>
- </ol>
- </div>
- </div>
- </div>
- <form action="<?php echo esc_url( add_query_arg( array( 'theme' => false, 'time' => false ) ) ) ?>" method="POST" id="so-custom-css-form">
- <div id="custom-css-container" style="border:1px solid #D0D0D0; padding: 8px; background: #FCFCFC; cursor: text">
- <textarea name="custom_css" id="custom-css-textarea"><?php echo esc_textarea( $custom_css ) ?></textarea>
- <?php wp_nonce_field( 'custom_css', '_sononce' ) ?>
- </div>
- <p class="description">
- <?php
- $theme = basename( get_template_directory() );
- printf( __( 'Changes apply to %s and its child themes', 'vantage' ), ucfirst( $theme ) );
- ?>
- </p>
- <p class="submit">
- <input type="submit" name="siteorigin_custom_css_save" class="button-primary" value="<?php esc_attr_e( 'Save CSS', 'vantage' ); ?>" />
- </p>
- </form>
- </div>
- <div class="clear"></div>
- </div>