51 lines
2.1 KiB
PHP
51 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* Genesis Framework.
|
|
*
|
|
* WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
|
|
* Please do all modifications in the form of a child theme.
|
|
*
|
|
* @package StudioPress\Genesis
|
|
* @author StudioPress
|
|
* @license GPL-2.0+
|
|
* @link https://my.studiopress.com/themes/genesis/
|
|
*/
|
|
|
|
?>
|
|
<table class="form-table">
|
|
<tbody>
|
|
|
|
<tr valign="top">
|
|
<th scope="row"><?php esc_html_e( 'Version', 'genesis' ); ?></th>
|
|
<td><?php echo PARENT_THEME_VERSION; ?></td>
|
|
</tr>
|
|
|
|
<tr valign="top">
|
|
<th scope="row"><?php esc_html_e( 'Released', 'genesis' ); ?></th>
|
|
<td>
|
|
<?php echo PARENT_THEME_RELEASE_DATE; ?>
|
|
<p><span class="description">
|
|
<?php
|
|
/* translators: Open and close anchor tags. */
|
|
printf( esc_html__( 'This can be helpful for diagnosing problems with your theme when seeking assistance at the %shelp page%s.', 'genesis' ), '<a href="https://my.studiopress.com/support/" target="_blank">', '</a>' );
|
|
?>
|
|
</span></p>
|
|
</td>
|
|
</tr>
|
|
|
|
<?php if ( current_theme_supports( 'genesis-auto-updates' ) ) : ?>
|
|
<tr valign="top">
|
|
<th scope="row"><?php esc_html_e( 'Updates', 'genesis' ); ?></th>
|
|
<td>
|
|
<p><label for="<?php $this->field_id( 'update' ); ?>"><input type="checkbox" name="<?php $this->field_name( 'update' ); ?>" id="<?php $this->field_id( 'update' ); ?>" value="1"<?php checked( $this->get_field_value( 'update' ) ) . disabled( is_super_admin(), 0 ); ?> />
|
|
<?php esc_html_e( 'Check For Updates', 'genesis' ); ?></label></p>
|
|
|
|
<p><input type="text" name="<?php $this->field_name( 'update_email_address' ); ?>" id="<?php $this->field_id( 'update_email_address' ); ?>" value="<?php echo esc_attr( $this->get_field_value( 'update_email_address' ) ); ?>" placeholder="<?php _e( 'Email address', 'genesis' ); ?>" size="30"<?php disabled( 0, is_super_admin() ); ?> /><br />
|
|
<span class="description"><label for="<?php $this->field_id( 'update_email_address' ); ?>"><?php esc_html_e( 'If you provide an email address above, you will be notified via email when a new version of Genesis is available.', 'genesis' ); ?></label></span></p>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
|
|
</tbody>
|
|
</table>
|