You are here

function phone_microdata_suggestions in Phone 7.2

Implements hook_microdata_suggestions().

File

./phone.microdata.inc, line 11
Provides microdata integration for the phone module.

Code

function phone_microdata_suggestions() {
  $suggestions = array(
    'fields' => array(
      'phone' => array(
        'schema.org' => array(
          '#itemprop' => array(
            'telephone',
          ),
        ),
      ),
    ),
  );
  return $suggestions;
}