Skip to content

Commit

Permalink
Merge pull request #42 from damo-veda/master
Browse files Browse the repository at this point in the history
Consumer Key, Consumer Secret labels and readme file are updated
  • Loading branch information
veda-consulting authored Mar 4, 2020
2 parents 50ce65c + 31960cd commit e1b3110
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions CRM/Gotowebinar/Form/Setting.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ public function buildQuickForm() {

// If valid token not found, displaying the authentication fields
if (!$validToken) {
$this->add('password', 'api_key', ts('API Key'), array(
$this->add('password', 'api_key', ts('Consumer Key'), array(
'size' => 48,
), TRUE);
$this->add('password', 'client_secret', ts('Client Secret'), array(
$this->add('password', 'client_secret', ts('Consumer Secret'), array(
'size' => 48,
), TRUE);
$this->add('text', "email_address", ts('Email Address'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_Email', 'email'), TRUE);
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

### Overview ###

CiviCRM Events can be integrated with GoToWebinar
CiviCRM Events can be integrated with GoToWebinar.

### Installation ###

Expand All @@ -23,7 +23,7 @@ CiviCRM Events can be integrated with GoToWebinar
* Setup CiviCRM Event with a Webinar Key
![Screenshot of integration options](images/manage-event.jpg)

* When participants register for that civiCRM Event, those participants are automatically created for GoToWebinar Event
* When participants register for that CiviCRM Event, they are automatically created for the GoToWebinar event as well.

### Changelog ###

Expand Down
Binary file modified images/webinar-setting-page.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
<author>Veda Consulting</author>
<email>[email protected]</email>
</maintainer>
<releaseDate>2020-02-25</releaseDate>
<version>3.0.0</version>
<releaseDate>2020-03-04</releaseDate>
<version>3.0.1</version>
<develStage>stable</develStage>
<compatibility>
<ver>4.5</ver>
Expand Down
4 changes: 2 additions & 2 deletions templates/CRM/Gotowebinar/Form/Setting.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@
<tr class="crm-webinar-setting-api-key-block">
<td class="label">{$form.api_key.label}</td>
<td>{$form.api_key.html}<br/>
<span class="description">{ts}API Key from Webinar{/ts}
<span class="description">{ts}The Consumer Key from your GoToWebinar App{/ts}
</span>
</td>
</tr>
<tr class="crm-webinar-setting-client-secret-block">
<td class="label">{$form.client_secret.label}</td>
<td>{$form.client_secret.html}<br/>
<span class="description">{ts}Client Secret from Webinar{/ts}
<span class="description">{ts}The Consumer Secret from your GoToWebinar App{/ts}
</span>
</td>
</tr>
Expand Down

0 comments on commit e1b3110

Please sign in to comment.