Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
jsarnowski/jet-theme-core / dashboard / skins / skins-actions.php
Size: Mime:
<?php
/**
 * Skins actions
 */
?>
<div class="jet-skins-actions">
	<a href="<?php $this->synch_skins_link(); ?>" class="cx-button cx-button-success-style"><?php
		_e( 'Synchronise Skins Library', 'jet-theme-core' );
	?></a>
	<?php

		if ( null === $this->has_license ) {
			$this->has_license = Jet_Theme_Core_Utils::get_theme_core_license();
		}

		if ( empty( $this->has_license ) ) {
			printf(
				'<a href="%1$s" class="cx-button cx-button-primary-style">%2$s</a>',
				Jet_Theme_Core_Utils::active_license_link(),
				__( 'Activate License to Install Skins', 'jet-theme-core' )
			);
		}

	?>
</div>