# gianism/4.4.0/templates/setup/google.php

Gianism, version 4.4.0. 54 lines.

- Page: https://pluginprobe.com/plugins/gianism/4.4.0/code/templates/setup/google.php
- Raw: https://pluginprobe.com/plugins/gianism/4.4.0/raw/templates/setup/google.php
- Modified: 2016-11-05T14:55:32+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/4.4.0/code/templates/setup/google.php#L10-L20`.

```php
<?php

defined( 'ABSPATH' ) or die();

/** @var \Gianism\UI\SettingScreen $this */
/** @var \Gianism\Service\Google $instance */

?>
<h3><i class="lsf lsf-google"></i> Google</h3>

<p class="description"><?php $this->e( 'Google API system is very complex, but don\'t be afraid. Anyway if you don\'t have Google account, go to <a hreF="https://www.google.com/accounts/NewAccount">Create Google account</a> and get it.' ); ?></p>

<h4>Step1. <?php $this->e( 'Create new Project' ); ?></h4>

<p><?php $this->e( 'Go to <a href="https://cloud.google.com/console/project">Google API Console &gt; Projects</a> and click <code>Create Project</code>. SMS verification will be required. After finishing, click your new project\'s name and go setting page.' ); ?></p>

<p><?php $this->e( 'Now, On project page, clicking <code>API &amp; OAuth</code> menu in sidebar, then you are on <code>APIs</code> page which will enable various APIs one by one. Turn Google+ API <code>ON</code>.' ); ?></p>

<p class="notice">
	<?php $this->e( 'Google API Console is too simple but values to be set are not simple, so you will be easily loose yourself. Be care of where you are.' ) ?>
</p>

<p><?php $this->_( 'Then, go to <code>Credentials</code> below <code>API &amp; auth</code> and click <code>CREATE NEW  CLIENT ID</code>.  Enter below:' ) ?></p>

<table class="gianism-example-table">
	<tr>
		<th>Application type</th>
		<td>
			<?php printf( $this->_( 'Select <code>%s</code>.' ), 'Web application' ); ?><br/>
		</td>
	</tr>
	<tr>
		<th>Authorized Javascript origin</th>
		<td>
			<code><?php echo home_url( '/', 'http' ) ?></code><br/>
			<code><?php echo home_url( '/', 'https' ) ?></code>
		</td>
	</tr>
	<tr>
		<th>Authorized redirect URI</th>
		<td>
			<code><?php echo home_url( '/google-auth/', $this->option->is_ssl_required() ? 'https' : 'http' ) ?></code>
		</td>
	</tr>
</table>

<p><?php $this->e( 'There you get <code>Client ID for web application</code> section, which provides <code>Client ID</code> and <code>Client secret</code>.' ) ?></p>

<p><?php printf( $this->_( 'Finally, you must set up your application. Go to <code>Consent screen</code> below <code>APIs &amp; oauth</code>, and change Product name to your own. <code>%s</code> is recommended.' ), get_bloginfo( 'name' ) ) ?></p>

<h4>Step2. <?php $this->e( 'Enter API Information' ); ?></h4>

<p><?php printf( $this->_( 'Input and save 2 information(Client ID and Client Secret) on <a href="%s">WordPress admin screen</a>.' ), $this->setting_url() ); ?></p>

```
