You are here

function hook_fb_instant_articles_rss_is_article_alter in Facebook Instant Articles 7

Same name and namespace in other branches
  1. 7.2 modules/fb_instant_articles_rss/fb_instant_articles_rss.api.php \hook_fb_instant_articles_rss_is_article_alter()

Allows modules to alter if an entity is a Facebook Instant Article.

Parameters

bool $is_type: By reference. Whether or not the entity is a Facebook Instant Article.

int $entity_id: The entity ID.

See also

fb_instant_articles_rss_is_article()

1 invocation of hook_fb_instant_articles_rss_is_article_alter()
fb_instant_articles_rss_is_article in modules/fb_instant_articles_rss/fb_instant_articles_rss.module
Checks to see if an entity is a Facebook Instant Article.

File

modules/fb_instant_articles_rss/fb_instant_articles_rss.api.php, line 19
Hooks provided by Facebook Instant Articles RSS module.

Code

function hook_fb_instant_articles_rss_is_article_alter(&$is_type, $entity_id) {
}