You are here

public function ScreenLoaderManager::isRemote in Janrain Registration 8

Check that Janrain screens path is remote.

Return value

bool TRUE when the Janrain screens path is remote.

1 call to ScreenLoaderManager::isRemote()
ScreenLoaderManager::getScreen in src/ScreenLoaderManager.php
Get Janrain screen contents by name and type.

File

src/ScreenLoaderManager.php, line 88

Class

ScreenLoaderManager
Allow to load and manage Janrain screens (local and remote).

Namespace

Drupal\janrain_capture

Code

public function isRemote() {
  return strpos($this->path, 'http') === 0;
}