function clients_flickr_clients_connection_edit in Web Service Clients 6
Same name and namespace in other branches
- 7 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 187 - Flickr plugin for Clients module @author Django Beatty - adub
Code
function clients_flickr_clients_connection_edit($formvals) {
if ($formvals['type'] == variable_get('clients_flickr_type', 'Flickr')) {
return $formvals;
}
}