You are here

function metatag_opengraph_update_dependencies in Metatag 7

Implements hook_update_dependencies().

File

metatag_opengraph/metatag_opengraph.install, line 42
Installation and update scripts for Metatag:OpenGraph.

Code

function metatag_opengraph_update_dependencies() {

  // OpenGraph update 7103 requires the complete Metatag schema, so lets wait
  // for Metatag update 7100 just to be sure.
  $dependencies['metatag_opengraph'][7103] = array(
    'metatag' => 7100,
  );
  return $dependencies;
}