File: /www/wwwroot/www.movieloversky.com/wp-content/themes/filmax/templates/admin-notice.php
<?php
/**
* The template to display Admin notices
*
* @package WordPress
* @subpackage FILMAX
* @since FILMAX 1.0.1
*/
$filmax_theme_obj = wp_get_theme();
?>
<div class="update-nag" id="filmax_admin_notice">
<h3 class="filmax_notice_title"><?php
// Translators: Add theme name and version to the 'Welcome' message
echo esc_html(sprintf(__('Welcome to %1$s v.%2$s', 'filmax'),
$filmax_theme_obj->name . (FILMAX_THEME_FREE ? ' ' . __('Free', 'filmax') : ''),
$filmax_theme_obj->version
));
?></h3>
<?php
if (!filmax_exists_trx_addons()) {
?><p><?php echo wp_kses_data(__('<b>Attention!</b> Plugin "ThemeREX Addons is required! Please, install and activate it!', 'filmax')); ?></p><?php
}
?><p>
<a href="<?php echo esc_url(admin_url().'themes.php?page=filmax_about'); ?>" class="button button-primary"><i class="dashicons dashicons-nametag"></i> <?php
// Translators: Add theme name
echo esc_html(sprintf(__('About %s', 'filmax'), $filmax_theme_obj->name));
?></a>
<?php
if (filmax_get_value_gp('page')!='tgmpa-install-plugins') {
?>
<a href="<?php echo esc_url(admin_url().'themes.php?page=tgmpa-install-plugins'); ?>" class="button button-primary"><i class="dashicons dashicons-admin-plugins"></i> <?php esc_html_e('Install plugins', 'filmax'); ?></a>
<?php
}
if (function_exists('filmax_exists_trx_addons') && filmax_exists_trx_addons() && class_exists('trx_addons_demo_data_importer')) {
?>
<a href="<?php echo esc_url(admin_url().'themes.php?page=trx_importer'); ?>" class="button button-primary"><i class="dashicons dashicons-download"></i> <?php esc_html_e('One Click Demo Data', 'filmax'); ?></a>
<?php
}
?>
<a href="<?php echo esc_url(admin_url().'customize.php'); ?>" class="button button-primary"><i class="dashicons dashicons-admin-appearance"></i> <?php esc_html_e('Theme Customizer', 'filmax'); ?></a>
<span> <?php esc_html_e('or', 'filmax'); ?> </span>
<a href="<?php echo esc_url(admin_url().'themes.php?page=theme_options'); ?>" class="button button-primary"><i class="dashicons dashicons-admin-appearance"></i> <?php esc_html_e('Theme Options', 'filmax'); ?></a>
<a href="#" class="button filmax_hide_notice"><i class="dashicons dashicons-dismiss"></i> <?php esc_html_e('Hide Notice', 'filmax'); ?></a>
</p>
</div>