You are here

function text_mobile_codes_theme_alter in Mobile Codes 6.2

Implements hook_mobile_codes_theme_alter() on behalf of text.module.

File

includes/text.inc, line 10
Text module integration.

Code

function text_mobile_codes_theme_alter($items) {
  ctools_include('export');
  foreach (ctools_export_crud_load_all('mobile_codes_presets') as $preset) {
    if (isset($preset->disabled) && !$preset->disabled) {
      $items["mobile_codes_formatter_mobile_codes_text_{$preset->name}"] = array(
        'arguments' => array(
          'element' => NULL,
        ),
        'function' => 'theme_mobile_codes_text_formatter',
        'file' => 'includes/text.inc',
      );
    }
  }
}