You are here

function _janrain_capture_get_screens in Janrain Registration 7.4

Same name and namespace in other branches
  1. 7.2 janrain_capture_screens/janrain_capture_screens.module \_janrain_capture_get_screens()
  2. 7.3 janrain_capture_screens/janrain_capture_screens.module \_janrain_capture_get_screens()

Helper function to get the list of available Janrain capture screens.

Return value

array Availible Janrain Capture screens.

6 calls to _janrain_capture_get_screens()
janrain_capture_admin_screens_settings in janrain_capture_screens/janrain_capture_screens.admin.inc
Form callback for customizing the Janrain Capture screens.
janrain_capture_admin_screens_settings_submit in janrain_capture_screens/janrain_capture_screens.admin.inc
Form submit callback for saving the uploaded Janrain capture screens.
janrain_capture_admin_screens_settings_validate in janrain_capture_screens/janrain_capture_screens.admin.inc
Validates the Janrain Capture screen remote URLs.
janrain_capture_screens_cron in janrain_capture_screens/janrain_capture_screens.module
Implements hook_cron().
_janrain_capture_get_screen in ./janrain_capture.module

... See full list

File

janrain_capture_screens/janrain_capture_screens.module, line 60
Janrain Capture Admin Screens Module

Code

function _janrain_capture_get_screens() {
  $screens = array(
    'edit-profile.html',
    'forgot.html',
    'public-profile.html',
    'signin.html',
    'verify.html',
    'edit-profile.js',
    'forgot.js',
    'public-profile.js',
    'signin.js',
    'verify.js',
    'stylesheets/styles.css',
    'stylesheets/ie-styles.css',
    'stylesheets/mobile-styles.css',
  );
  return $screens;
}