function clients_flickr_clients_connection_edit in Web Service Clients 7
Same name and namespace in other branches
- 6 backends/clients_flickr/clients_flickr.module \clients_flickr_clients_connection_edit()
Implementation of hook_clients_connection_edit(). Performs any post-processing of edit form before write to db. If we could get this working by reference we wouldn't need this wrapper here.
File
- backends/
clients_flickr/ clients_flickr.module, line 198 - Flickr plugin for Clients module
Code
function clients_flickr_clients_connection_edit($formvals) {
if ($formvals['type'] == variable_get('clients_flickr_type', 'Flickr')) {
return $formvals;
}
}