function clients_flickr_clients_connection_load in Web Service Clients 7
Same name and namespace in other branches
- 6 backends/clients_flickr/clients_flickr.module \clients_flickr_clients_connection_load()
Implementation of hook_clients_connection_load
File
- backends/
clients_flickr/ clients_flickr.module, line 284 - Flickr plugin for Clients module
Code
function clients_flickr_clients_connection_load(&$connection) {
if ($connection->type == variable_get('clients_flickr_type', 'Flickr')) {
$connection->operations = l(t('Edit'), 'admin/settings/clients/connections/flickr/' . $connection->cid . '/edit') . ' | ' . l(t('Delete'), 'admin/settings/clients/connections/' . $connection->cid . '/delete');
}
}