Current File : /home/kelaby89/sergio-cuchi.tattoo/wp-content/plugins/so-css/tpl/page.php |
<?php
/**
* @var $page_title string The title of the page. Includes the post title if a post was selected.
* @var $custom_css string The custom CSS string to be edited.
* @var $current_revision int If the CSS to be edited is a revision, this will contain the timestamp of the revision.
* @var $custom_css_revisions array Saved revisions for the current theme.
* @var $editor_description string Description to provide context for the CSS being edited.
* @var $socss_post_id int ID of the post for which we're editing CSS.
* @var $save_button_label string Label of the save button depending on whether a post or revision has been selected.
* @var $form_save_url string URL to use when saving the CSS.
*/
$snippets = SiteOrigin_CSS::single()->get_snippets();
$user = wp_get_current_user();
if ( ! empty( $current_revision ) ) {
$revision_date = date( 'j F Y @ H:i:s', $current_revision + get_option( 'gmt_offset' ) * 60 * 60 );
}
?>
<div class="wrap" id="siteorigin-custom-css">
<h2>
<img src="<?php echo plugin_dir_url( __FILE__ ) . '../css/images/icon.png'; ?>" class="icon" />
<?php echo esc_html( $page_title ); ?>
</h2>
<?php if ( isset( $_POST['siteorigin_custom_css'] ) ) { ?>
<div class="notice notice-success"><p><?php esc_html_e( 'Site design updated.', 'so-css' ); ?></p></div>
<?php } ?>
<?php if ( ! empty( $current_revision ) ) { ?>
<div class="notice notice-warning">
<p><?php printf( esc_html__( 'Editing revision dated %s. Click %sRevert to this revision%s to keep using it.', 'so-css' ), $revision_date, '<em>', '</em>' ); ?></p>
</div>
<?php } ?>
<div id="poststuff">
<form action="<?php echo esc_url( $form_save_url ); ?>" method="POST">
<div id="so-custom-css-info">
<p class="so-custom-css-submit">
<input type="submit" name="siteorigin_custom_css_save" class="button-primary" value="<?php esc_attr_e( $save_button_label ); ?>" />
</p>
<?php if ( $this->display_teaser() ) { ?>
<div class="postbox">
<h3 class="hndle"><span><?php esc_html_e( 'Get The Full Experience', 'so-css' ); ?></span></h3>
<div class="inside">
<?php printf( wp_kses_post( __( '%sSiteOrigin Premium%s adds a <strong>Google Web Font</strong> selector to SiteOrigin CSS so you can easily change any font.', 'so-css' ) ), '<a href="https://siteorigin.com/downloads/premium/?featured_addon=plugin/web-font-selector" target="_blank">', '</a>' ); ?>
</div>
</div>
<?php } ?>
<?php if ( ! get_user_meta( $user->ID, 'socss_hide_gs' ) ) { ?>
<div class="postbox" id="so-custom-css-getting-started">
<h3 class="hndle">
<span><?php esc_html_e( 'Getting Started Video', 'so-css' ); ?></span>
<a href="<?php echo wp_nonce_url( admin_url( 'admin-ajax.php?action=socss_hide_getting_started' ), 'hide' ); ?>" class="hide"><?php esc_html_e( 'Dismiss', 'so-css' ); ?></a>
</h3>
<div class="inside">
<a href="https://siteorigin.com/css/getting-started/" target="_blank"><img src="<?php echo plugin_dir_url( __FILE__ ) . '../css/images/video.jpg'; ?>" /></a>
</div>
</div>
<?php } ?>
<div class="postbox" id="so-custom-css-revisions">
<h3 class="hndle"><span><?php esc_html_e( 'CSS Revisions', 'so-css' ); ?></span></h3>
<div class="inside">
<ol class="custom-revisions-list" data-confirm="<?php esc_attr_e( 'Are you sure you want to load this revision?', 'so-css' ); ?>">
<?php $this->custom_css_revisions_list( $theme, $socss_post_id, $current_revision ); ?>
</ol>
</div>
</div>
<div class="postbox" id="so-custom-css-editor-theme">
<h3 class="hndle"><span><?php esc_html_e( 'Editor Theme', 'so-css' ); ?></span></h3>
<div class="inside">
<select name="so_css_editor_theme" id="so_css_editor_theme">
<option value="neat" <?php selected( 'neat', $editor_theme ); ?>><?php esc_attr_e( 'Light', 'so-css' ); ?></option>
<option value="ambiance" <?php selected( 'ambiance', $editor_theme ); ?>><?php esc_attr_e( 'Dark', 'so-css' ); ?></option>
</select>
</div>
</div>
<div class="postbox" id="so-custom-css-editor-theme">
<h3 class="hndle" id="so_css_output_location_label">
<span>
<?php esc_html_e( 'CSS Output Location', 'so-css' ); ?>
</span>
</h3>
<div class="inside">
<select
name="so_css_output_location"
id="so_css_output_location"
aria-labelledby="so_css_output_location_label"
aria-described_by="so_css_output_location_description"
>
<option value="file" <?php selected( 'file', $output_location ); ?>><?php esc_attr_e( 'Dedicated File', 'so-css' ); ?></option>
<option value="inline" <?php selected( 'inline', $output_location ); ?>><?php esc_attr_e( 'Inline', 'so-css' ); ?></option>
</select>
<p id="so_css_output_location_description" class="description">
<?php
esc_html_e( 'Dedicated CSS File offers best performance, Internal CSS embeds styles in page HTML.', 'so-css' );
?>
</p>
</div>
</div>
</div>
<div id="so-custom-css-form">
<div class="custom-css-toolbar">
<div class="toolbar-function-buttons">
<div class="toolbar-functions-dropdown">
<span class="dashicons dashicons-menu"></span>
</div>
<ul class="toolbar-buttons">
</ul>
</div>
<div class="toolbar-action-buttons">
<a href="#expand" class="editor-expand socss-button" title="<?php esc_attr_e( 'Open Expanded Mode', 'so-css' ); ?>">
<span class="so-css-icon so-css-icon-expand" title="<?php esc_attr_e( 'Open Expanded Mode', 'so-css' ); ?>"></span>
<span class="so-css-icon so-css-icon-compress" title="<?php esc_attr_e( 'Close Expanded Mode', 'so-css' ); ?>"></span>
</a>
<a href="#visual" class="editor-visual socss-button" title="<?php esc_attr_e( 'Open Visual Mode', 'so-css' ); ?>">
<span class="so-css-icon so-css-icon-eye"></span>
</a>
<span class="save socss-button button-primary" title="<?php esc_attr_e( 'Save CSS', 'so-css' ); ?>">
<span class="so-css-icon so-css-icon-save"></span>
</span>
</div>
</div>
<div class="custom-css-container">
<textarea
name="siteorigin_custom_css" id="custom-css-textarea" data-theme="<?php echo esc_attr( $editor_theme ); ?>" class="css-editor" rows="<?php echo max( 10, substr_count( $custom_css, "\n" ) + 1 ); ?>"><?php echo esc_textarea( $custom_css ); ?></textarea>
<?php wp_nonce_field( 'custom_css', '_sononce' ); ?>
</div>
<div class="so-css-footer">
<p class="description">
<?php esc_html_e( $editor_description ); ?>
</p>
</div>
<?php
if (
! class_exists( 'SiteOrigin_Panels' ) &&
! class_exists( 'SiteOrigin_Widgets_Bundle' ) &&
! class_exists( 'SiteOrigin_Premium' )
) {
?>
<div class="installer">
<a href="#" class="installer-link">
<?php _e( 'Other Settings', 'so-css' ); ?>
</a>
<div class="installer-container" style="display: none;">
<label>
<?php echo __( 'Enable SiteOrigin Installer: ', 'so-css' ); ?>
<input
type="checkbox"
name="installer_status"
class="installer_status"
<?php checked( get_option( 'siteorigin_installer', false ), 1 ); ?>
data-nonce="<?php echo wp_create_nonce( 'siteorigin_installer_status' ); ?>"
>
</label>
</div>
</div>
<?php } ?>
<div class="custom-css-preview"></div>
<div class="decoration"></div>
</div>
<div id="so-custom-css-properties">
<div class="toolbar">
<select></select>
<div class="close socss-button" title="<?php esc_attr_e( 'Close', 'so-css' ); ?>">
<span class="so-css-icon so-css-icon-check"></span>
</div>
<div class="save socss-button button-primary" title="<?php esc_attr_e( 'Save CSS', 'so-css' ); ?>">
<span class="so-css-icon so-css-icon-save"></span>
</div>
</div>
<ul class="section-tabs"></ul>
<div class="sections"></div>
</div>
</form>
</div>
<div class="clear"></div>
</div>