You are here

function clients_flickr_clients_connection_load in Web Service Clients 6

Same name and namespace in other branches
  1. 7 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 273
Flickr plugin for Clients module @author Django Beatty - adub

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');
  }
}