flickrfeeds.install in Flickr 7
Schema definitions install/update/uninstall hooks.
File
feeds/flickrfeeds.installView source
<?php
/**
* @file
* Schema definitions install/update/uninstall hooks.
*/
/**
* Implementation of hook_enable().
*/
function flickrfeeds_enable() {
//clear the cache to display in Feeds as available plugin.
cache_clear_all('plugins:feeds:plugins', 'cache');
}
/**
* Implementation of hook_disable().
*/
function flickrfeeds_disable() {
//clear the cache to display in Feeds as available plugin.
cache_clear_all('plugins:feeds:plugins', 'cache');
}
Functions
Name | Description |
---|---|
flickrfeeds_disable | Implementation of hook_disable(). |
flickrfeeds_enable | Implementation of hook_enable(). |