You are here

function _janrain_capture_get_screens in Janrain Registration 7.3

Same name and namespace in other branches
  1. 7.4 janrain_capture_screens/janrain_capture_screens.module \_janrain_capture_get_screens()
  2. 7.2 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.

3 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_get_screen in ./janrain_capture.module

File

janrain_capture_screens/janrain_capture_screens.module, line 57
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;
}