# charitable/1.6.22/includes/admin/views/settings/licenses.php

Charitable – Donation &amp; Fundraising Platform (Donation Forms, Recurring Donations &amp; Fundraising Campaigns), version 1.6.22. 61 lines.

- Page: https://pluginprobe.com/plugins/charitable/1.6.22/code/includes/admin/views/settings/licenses.php
- Raw: https://pluginprobe.com/plugins/charitable/1.6.22/raw/includes/admin/views/settings/licenses.php
- Modified: 2019-01-09T04:02:22+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/charitable/1.6.22/code/includes/admin/views/settings/licenses.php#L10-L20`.

```php
<?php
/**
 * Display the table of products requiring licenses.
 *
 * @author    Eric Daams
 * @package   Charitable/Admin View/Settings
 * @copyright Copyright (c) 2019, Studio 164a
 * @license   http://opensource.org/licenses/gpl-2.0.php GNU Public License
 * @since     1.0.0
 * @version   1.0.0
 */

$helper   = charitable_get_helper( 'licenses' );
$products = $helper->get_products();

if ( empty( $products ) ) :
	return;
endif;
?>
<div class="charitable-settings-notice" style="margin-bottom: 20px;">
	<p><?php _e( 'By adding your license keys, you agree for your website to send requests to wpcharitable.com to check license details and provide automatic plugin updates.', 'charitable' ); ?></p>
	<p><?php _e( 'Your license can be disconnected at any time.', 'charitable' ); ?></p>
</div>
<?php
foreach ( $products as $key => $product ) :

	$license = $helper->get_license_details( $key );

	if ( is_array( $license ) ) {
		$is_active   = $license['valid'];
		$license_key = $license['license'];
	} else {
		$is_active   = false;
		$license_key = $license;
	}

	?>
	<div class="charitable-settings-object charitable-licensed-product cf">
		<h4><?php echo $product['name']; ?></h4>
		<input type="text" name="charitable_settings[licenses][<?php echo $key; ?>]" id="charitable_settings_licenses_<?php echo $key; ?>" class="charitable-settings-field" placeholder="<?php _e( 'Add your license key', 'charitable' ); ?>" value="<?php echo $license_key; ?>" />
		<?php if ( $license ) : ?>
			<div class="license-meta">
				<?php if ( $is_active ) : ?>
					<a href="<?php echo $helper->get_license_deactivation_url( $key ); ?>" class="button-secondary license-deactivation"><?php _e( 'Deactivate License', 'charitable' ); ?></a>
					<?php if ( 'lifetime' == $license['expiration_date'] ) : ?>
						<span class="license-expiration-date"><?php _e( 'Lifetime license', 'charitable' ); ?></span>
					<?php else : ?>
						<span class="license-expiration-date"><?php printf( '%s %s.', __( 'Expiring in', 'charitable' ), human_time_diff( strtotime( $license['expiration_date'] ), time() ) ); ?></span>
					<?php endif ?>
				<?php elseif ( is_array( $license ) ) : ?>
					<span class="license-invalid"><?php _e( 'This license is not valid', 'charitable' ); ?></span>
				<?php else : ?>
					<span class="license-invalid"><?php _e( 'We could not validate this license', 'charitable' ); ?></span>
				<?php endif ?>
			</div>
		<?php endif ?>
	</div>

	<?php
endforeach;

```
