You are here

public static function mo_saml_visualTour::addID in SAML SP 2.0 Single Sign On (SSO) - SAML Service Provider 8

1 call to mo_saml_visualTour::addID()
mo_saml_visualTour::genArray in src/mo_saml_visualTour.php

File

src/mo_saml_visualTour.php, line 31

Class

mo_saml_visualTour

Namespace

Drupal\miniorange_saml

Code

public static function addID() {
  $idArray = array(
    array(
      'selector' => 'li.tabs__tab:nth-of-type(1)',
      'newID' => 'mo_vt_idp_setup',
    ),
    array(
      'selector' => 'li.tabs__tab:nth-of-type(2)',
      'newID' => 'mo_vt_sp_setup',
    ),
    array(
      'selector' => 'li.tabs__tab:nth-of-type(3)',
      'newID' => 'mo_vt_mapping',
    ),
    array(
      'selector' => 'li.tabs__tab:nth-of-type(4)',
      'newID' => 'mo_vt_sign_sett',
    ),
    array(
      'selector' => 'li.tabs__tab:nth-of-type(5)',
      'newID' => 'mo_vt_advance_settings',
    ),
    array(
      'selector' => 'li.tabs__tab:nth-of-type(6)',
      'newID' => 'mo_vt_licensing',
    ),
    array(
      'selector' => 'li.tabs__tab:nth-of-type(7)',
      'newID' => 'mo_vt_account',
    ),
    array(
      'selector' => 'table',
      'newID' => 'mo_idp_url_table',
    ),
  );
  return $idArray;
}