You are here

function yoast_seo_node_type_delete in Real-time SEO for Drupal 7

Implements hook_node_type_delete().

Remove configuration when the content type is removed.

File

./yoast_seo.module, line 867
Primary hook implementations for Yoast SEO for Drupal module.

Code

function yoast_seo_node_type_delete($info) {
  variable_del('yoast_seo_enable_node__' . $info->type);
}