You are here

transliteration.api.php in Transliteration 7.3

Documents Transliteration's hooks for api reference.

File

transliteration.api.php
View source
<?php

/**
 * @file
 * Documents Transliteration's hooks for api reference.
 */

/**
 * Alters a file name before transliteration and sanitization.
 *
 * @param string &$filename
 *   The file name before being parsed by transliteration.
 * @param string $source_langcode
 *   Optional ISO 639 language code that denotes the language of the input.
 *
 * @see transliteration_clean_filename()
 */
function hook_transliteration_clean_filename_prepare_alter(&$filename, $source_langcode) {
  $filename = drupal_strtolower($filename);
  $filename = str_ireplace(array(
    '&amp; ',
    '& ',
  ), 'and ', $filename);
}

Functions

Namesort descending Description
hook_transliteration_clean_filename_prepare_alter Alters a file name before transliteration and sanitization.