Skip to content

Commit

Permalink
Whether. (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbickar authored and sherakama committed Aug 2, 2017
1 parent a50fadd commit 04d64a7
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion includes/CAPx/Drupal/Organizations/Orgs.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public static function getOrganizations($parent = 0) {
* Gets and syncs the Organization data from the CAP API.
*
* @param bool $batch
* boolean value on wether or not to use batch api.
* boolean value on whether or not to use batch api.
*/
public static function syncOrganizations($batch = FALSE) {

Expand Down
2 changes: 1 addition & 1 deletion includes/CAPx/Drupal/Util/CAPxImporter.php
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public static function getEntityOrphanator($importerName, $profiles = array()) {
return;
}

// Track wether this is a multiple entity importer or not. The checks differ
// Track whether this is a multiple entity importer or not. The checks differ
// for these types.
$mapper = $importer->getMapper();
$multiple = $mapper->isMultiple();
Expand Down
4 changes: 2 additions & 2 deletions stanford_capx.forms.inc
Original file line number Diff line number Diff line change
Expand Up @@ -1855,7 +1855,7 @@ function stanford_capx_entity_form_add_vt(&$form, &$form_state, $entity_type, $e
),
);
$form['capx_vertical_tab']['update']['#markup'] = "<p>" . l(t('Update this profile from CAP'), $path, $options) . "<br />";
$form['capx_vertical_tab']['update']['#markup'] .= t("Clicking on the above button will update this profile with date from the CAP API wether or not sync is enabled or disabled") . "</p>";
$form['capx_vertical_tab']['update']['#markup'] .= t("Clicking on the above button will update this profile with date from the CAP API whether or not sync is enabled or disabled") . "</p>";
}

$status = empty($capx_info['sync']) ? t('Not receiving updates from CAP.') : t('Receiving updates from CAP.');
Expand Down Expand Up @@ -2155,7 +2155,7 @@ function stanford_capx_config_settings_form_submit($form, &$form_state) {
}

/**
* Validates wether or not a path is acceptible.
* Validates whether or not a path is acceptible.
*
* @param string $path
* The path being looked up.
Expand Down
4 changes: 2 additions & 2 deletions stanford_capx.views.inc
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ function stanford_capx_views_data() {

$data['capx_profiles']['orphaned'] = array(
'title' => t('Orphaned Status'),
'help' => t('A boolean value to wether or not the profile has been orphaned.'),
'help' => t('A boolean value to whether or not the profile has been orphaned.'),
'argument' => array(
'handler' => 'views_handler_argument_boolean',
),
Expand All @@ -385,7 +385,7 @@ function stanford_capx_views_data() {

$data['capx_profiles']['sync'] = array(
'title' => t('Sync Status'),
'help' => t('A boolean value to wether or not the profile is receiving update.'),
'help' => t('A boolean value to whether or not the profile is receiving update.'),
'argument' => array(
'handler' => 'views_handler_argument_boolean',
),
Expand Down

0 comments on commit 04d64a7

Please sign in to comment.