function _iframe_load in Iframe 6
3 calls to _iframe_load()
- iframe_field in ./
iframe.module - Implementation of hook_field().
- iframe_process in ./
iframe.module - Process the iframe type element before displaying the field.
- _iframe_sanitize in ./
iframe.module - Cleanup user-entered values for a iframe field according to field settings.
File
- ./
iframe.module, line 279 - Defines simple iframe field types. based on the cck-module "link" by quicksketch MODULE-Funtions
Code
function _iframe_load(&$item, $delta = 0) {
dmsg(3, 'func _iframe_load');
// Unserialize the attributes array.
if (!is_array($item['attributes'])) {
$item['attributes'] = unserialize($item['attributes']);
}
}