File "mojo-themes.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/cache/cache/cache/.wp-cli/wp-content/plugins/mojo-marketplace-wp-plugin/inc/mojo-themes.php
File size: 1.89 KB
MIME-type: text/x-php
Charset: utf-8

<?php

function mm_add_theme_button() {
	if ( ! isset( $_GET['page'] ) ) {
		?>
	<script type="text/javascript">
	jQuery( document ).ready( function( $ ) {
		$( '.page-title-action' ).html( '<?php esc_html_e( 'WordPress.org Themes', 'mojo-marketplace-wp-plugin' ); ?>' );
		$( '.page-title-action' ).before( '<a class="add-new-h2" href="admin.php?page=mojo-themes"><?php esc_html_e( 'Premium Themes', 'mojo-marketplace-wp-plugin' ); ?></a>' );
		$( '.page-title-action:nth-of-type(2)' ).after( '<a class="add-new-h2" href="theme-install.php?upload"><?php esc_html_e( 'Upload', 'mojo-marketplace-wp-plugin' ); ?></a>' );
	} );
	</script>
		<?php
	}
}
add_action( 'admin_head-themes.php', 'mm_add_theme_button' );

function mm_add_premium_link() {
	?>
	<script type="text/javascript">
	jQuery( document ).ready( function( $ ) {
		$( '.wp-filter .filter-links li:last-of-type' ).after( '<li><a style="text-decoration: none;" onclick="location.href=\'admin.php?page=mojo-themes&btn=appearance_premium\'"><?php esc_html_e( 'Premium', 'mojo-marketplace-wp-plugin' ); ?></a></li>' );
	} );
	</script>
	<?php
}
add_action( 'admin_head-theme-install.php', 'mm_add_premium_link' );

function mm_add_theme_page() {
	add_theme_page( __( 'Premium Themes', 'mojo-marketplace-wp-plugin' ), __( 'Premium Themes', 'mojo-marketplace-wp-plugin' ), 'install_themes', 'themes-mojo', '__return_false' );
}
add_action( 'admin_menu', 'mm_add_theme_page' );

function mm_theme_page() {
	mm_require( MM_BASE_DIR . 'pages/mojo-themes.php' );
}

function mm_theme_preview_page() {
	?>
	<style type="text/css">
	.wp-full-overlay-sidebar .wp-full-overlay-header {
		padding:15px;
	}
	.install-theme-info{
		display: block;
	}
	.wp-full-overlay-main iframe{
		width: 100%;
		height: 100%;
	}
	</style>
	<?php
	mm_require( MM_BASE_DIR . '/pages/theme-preview.php' );
}

// Help the theme authors with the capital P ;)
add_filter( 'mm_item_name', 'capital_P_dangit' );