# gianism/trunk/templates/analytics.php

Gianism, version trunk. 301 lines.

- Page: https://pluginprobe.com/plugins/gianism/trunk/code/templates/analytics.php
- Raw: https://pluginprobe.com/plugins/gianism/trunk/raw/templates/analytics.php
- Modified: 2024-08-28T14:24:38+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/gianism/trunk/code/templates/analytics.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) or die();

/** @var \Gianism\UI\SettingScreen $this */
/** @var \Gianism\Service\Google $google */
$google = $this->service->get( 'google' );

if ( ! $google->enabled ) :
	?>
	<div class="error">
		<p><?php printf( $this->_( 'Google connect is not available. Go to <a href="%s">setting page</a> and turn it on.' ), admin_url( 'options-general.php?page=gianism' ) ); ?></p>
	</div>
	<?php
	return;
endif;

$analytics = \Gianism\Plugins\Analytics::get_instance();

?>

<h3><i class="lsf lsf-key"></i> <?php $this->e( 'Analytics Token' ); ?></h3>

<?php if ( $analytics->ga_token ) : ?>
	<p class="success">
		<i class="lsf lsf-ok"></i> <?php $this->e( 'O.K. You have token.' ); ?>
	</p>
	<code><?php print_r( $analytics->ga_token ); ?></code>
	<?php
	$label = $this->_( 'Restore' );
	?>
<?php else : ?>
	<p class="description">
		<i class="lsf lsf-ban"></i> <?php $this->e( 'You don\'t have token. Token is required to contact with Google Analytics API.' ); ?>
	</p>
	<?php
	$label = $this->_( 'Get' );
	?>
<?php endif; ?>
<p class="submit">
	<a class="button-primary" href="<?php echo $analytics->token_url( $this->setting_url( 'analytics' ) ); ?>">
		<?php echo $label; ?>
	</a>
	<?php if ( $analytics->ga_token ) : ?>
		<a class="button" href="<?php echo $analytics->token_url( $this->setting_url( 'analytics' ), true ); ?>">
			<?php $this->e( 'Delete' ); ?>
		</a>
	<?php endif; ?>
</p>



<?php if ( $analytics->ga_token ) : ?>
	<h3><i class="lsf lsf-dashboard"></i> <?php $this->e( 'Account, Profile, View' ); ?></h3>
	<form id="ga-connection"
			action="<?php echo $analytics->token_save_url(); ?>" method="post"
			data-endpoint="<?php echo admin_url( 'admin-ajax.php?action=wpg_ga_account' ); ?>">
		<?php wp_nonce_field( 'wp_gianism_google_save-analytics' ); ?>
		<input type="hidden" name="redirect_to" value="<?php echo esc_url( $this->setting_url( 'analytics' ) ); ?>" />
		<table class="form-table">
			<tbody>
			<tr>
				<th><label for="ga-account"><?php $this->e( 'Account' ); ?></label></th>
				<td>
					<select class="ga-profile-select" name="ga-account" id="ga-account"
							data-ga-account-id="<?php echo $analytics->ga_profile['account']; ?>"
							data-child="ga-profile" data-clear-target="1">
						<option
							value="0"<?php selected( ! $analytics->ga_profile['account'] ); ?>><?php $this->e( 'Please select' ); ?></option>
						<?php foreach ( $analytics->ga_accounts as $account ) : ?>
							<option
								value="<?php echo esc_attr( $account->id ); ?>"<?php selected( $account->id, $analytics->ga_profile['account'] ); ?>><?php echo esc_html( $account->name ); ?></option>
						<?php endforeach; ?>
					</select>
					<i class="dashicons dashicons-yes"></i>
					<i class="dashicons dashicons-update"></i>
					<?php if ( ! $analytics->ga_accounts ) : ?>
						<p class="description">
							<?php $this->e( 'Mmh, can\'t get Analytics accounts. Your token might be wrong.' ); ?>
						</p>
					<?php endif; ?>
				</td>
			</tr>
			<tr>
				<th><label for="ga-profile"><?php $this->e( 'Profile' ); ?></label></th>
				<td>
					<select class="ga-profile-select" name="ga-profile" id="ga-profile"
							data-ga-profile-id="<?php echo $analytics->ga_profile['profile']; ?>" data-child="ga-view"
							data-clear-target="2">
						<option
							value="0"<?php selected( ! $analytics->ga_profile['profile'] ); ?>><?php $this->e( 'Please select' ); ?></option>
					</select>
					<i class="dashicons dashicons-yes"></i>
					<i class="dashicons dashicons-update"></i>
				</td>
			</tr>
			<tr>
				<th><label for="ga-view"><?php $this->e( 'View' ); ?></label></th>
				<td>
					<select name="ga-view" id="ga-view" data-ga-view-id="<?php echo $analytics->ga_profile['view']; ?>">
						<option
							value="0"<?php selected( ! $analytics->ga_profile['view'] ); ?>><?php $this->e( 'Please select' ); ?></option>
					</select>
					<i class="dashicons dashicons-yes"></i>
					<i class="dashicons dashicons-update"></i>
				</td>
			</tr>
			</tbody>
		</table>
		<?php submit_button(); ?>
	</form>
<?php endif; ?>

<h3>
	<i class="lsf lsf-server"></i> <?php $this->e( 'Create Database' ); ?>
</h3>
<p>
	<?php $this->e( 'Gianism can create a typical table for Google Analytics Ranking. If you need customized one, forget about it and create your own.' ); ?>
</p>

<table class="mysql-table">
	<caption><?php $this->e( 'Ranking table structure' ); ?></caption>
	<thead>
	<tr>
		<th><?php $this->e( 'Column' ); ?></th>
		<th><?php $this->e( 'Type' ); ?></th>
		<th><?php $this->e( 'Length' ); ?></th>
		<th><?php $this->e( 'Misc' ); ?></th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<th scope="row">ID</th>
		<td>BIGINT</td>
		<td>20</td>
		<td>PK, <code>auto_increment</code></td>
	</tr>
	<tr>
		<th scope="row">category</th>
		<td>VARCHAR</td>
		<td>64</td>
		<td>&nbsp;</td>
	</tr>
	<tr>
		<th scope="row">object_id</th>
		<td>BIGINT</td>
		<td>20</td>
		<td>&nbsp;</td>
	</tr>
	<tr>
		<th scope="row">object_value</th>
		<td>BIGINT</td>
		<td>20</td>
		<td>&nbsp;</td>
	</tr>
	<tr>
		<th scope="row">calc_date</th>
		<td>DATE</td>
		<td>&nbsp;</td>
		<td>&nbsp;</td>
	</tr>
	<tr>
		<th scope="row">created</th>
		<td>TIMESTAMP</td>
		<td>&nbsp;</td>
		<td>Default CURRENT_TIMESTAMP</td>
	</tr>
	</tbody>
</table>

<?php if ( $analytics->table_exists() ) : ?>
	<p class="success">
		<i class="dashicons dashicons-yes"></i> <?php $this->e( 'Table exits.' ); ?>
	</p>
<?php else : ?>
	<form id="ga-table-create"
			action="<?php echo $analytics->table_create_url( $this->setting_url( 'analytics' ) ); ?>"
			method="post">
		<?php wp_nonce_field( 'wp_gianism_google_create-table' ); ?>

		<?php submit_button( $this->_( 'Create Table' ) ); ?>
	</form>
<?php endif; ?>

<h3>
	<i class="lsf lsf-time"></i> <?php $this->e( 'Installed cron files' ); ?>
</h3>

<p class="description">
	<?php $this->e( 'To install cron, please visit our information site <a href="https://gianism.info/">gianism.info</a>.' ); ?>
</p>

<?php if ( empty( $analytics->crons ) ) : ?>
	<p><?php $this->e( 'Nothing is installed.' ); ?></p>
<?php else : ?>
	<form class="gianism-admin-form" id="cron-checker" method="post"
			action="<?php echo admin_url( 'admin-ajax.php' ); ?>">
		<input type="hidden" name="action" value="<?php echo $analytics::AJAX_CRON; ?>"/>
		<?php wp_nonce_field( $analytics::AJAX_CRON ); ?>
		<table class="mysql-table">
			<thead>
			<tr>
				<th><?php $this->e( 'Class Name' ); ?></th>
				<th><?php $this->e( 'Category' ); ?></th>
				<th><?php $this->e( 'Interval' ); ?></th>
				<th><?php $this->e( 'Available' ); ?></th>
			</tr>
			</thead>
			<tbody>
			<?php
			$counter = 0;
			foreach ( $analytics->crons as $class_name ) :
				?>
				<tr>
					<th scope="row">
						<label>
							<input type="radio" name="cron" value="<?php echo $counter; ?>"/>
							<?php echo $class_name; ?>
						</label>
					</th>
					<td><?php echo $class_name::CATEGORY; ?></td>
					<td><?php echo $class_name::INTERVAL; ?></td>
					<td>
						<?php if ( $class_name::SKIP_CRON ) : ?>
							<span class="description"><i class="lsf lsf-ban"></i> No</span>
						<?php else : ?>
							<span class="success"><i class="lsf lsf-check"></i> Yes</span>
						<?php endif; ?>
					</td>
				</tr>
				<?php
				++$counter;
endforeach;
			?>
			</tbody>
		</table>
		<?php submit_button( $this->_( 'Check Data' ) ); ?>
		<pre></pre>
	</form>
<?php endif; ?>

<p class="description">
	<?php printf( $this->_( 'Do you want to know how to install files? Here is <a href="%s">blog post</a> about it.' ), 'http://takahashifumiki.com/web/programing/3184/' ); ?>
</p>

<h3>
	<i class="lsf lsf-upload"></i> <?php $this->e( 'Installed Ajax files' ); ?>
</h3>

<p class="description">
	<?php $this->e( 'To install Ajax actions, please visit our information site <a href="https://gianism.info/">gianism.info</a>.' ); ?>
</p>


<?php if ( empty( $analytics->ajaxes ) ) : ?>
	<p><?php $this->e( 'Nothing is installed.' ); ?></p>
<?php else : ?>
	<form class="gianism-admin-form" id="ajax-checker" method="get"
			action="<?php echo admin_url( 'admin-ajax.php' ); ?>">
		<input type="hidden" name="_wpnonce" value=""/>
		<table class="mysql-table">
			<thead>
			<tr>
				<th><?php $this->e( 'Class Name' ); ?></th>
				<th><?php $this->e( 'Endpoint' ); ?></th>
			</tr>
			</thead>
			<tbody>
			<?php foreach ( $analytics->ajaxes as $ajax ) : ?>
				<tr>
					<td>
						<label>
							<input type="radio" name="action" value="<?php echo esc_attr( $ajax::ACTION ); ?>"
									data-nonce="<?php echo esc_attr( $ajax::get_nonce() ); ?>" data-action=""/>
							<?php echo esc_html( $ajax ); ?>
						</label>
					</td>
					<td><?php printf( '<a href="%1$s">%1$s</a>', esc_url( $ajax::endpoint() ) ); ?></td>
				</tr>
			<?php endforeach; ?>
			</tbody>
		</table>
		<table class="form-table">
			<tr>
				<th><label for="from"><?php $this->e( 'From' ); ?></label></th>
				<td><input type="text" class="datepicker" id="from" name="from"
							value="<?php echo date_i18n( 'Y-m-d', strtotime( '1 month ago', time() ) ); ?>"
							placeholder="YYYY-MM-DD"/></td>
			</tr>
			<tr>
				<th><label for="to"><?php $this->e( 'To' ); ?></label></th>
				<td><input type="text" class="datepicker" id="to" name="to"
							value="<?php echo date_i18n( 'Y-m-d' ); ?>" placeholder="YYYY-MM-DD"/></td>
			</tr>
		</table>
		<p class="descritpion"></p>
		<?php submit_button( $this->_( 'Check Data' ) ); ?>
		<pre></pre>
	</form>
<?php endif; ?>

```
