function theme_jeditable_formatter_jeditable_upload in jEditable inline content editing 7
Theme a list field as a jeditable select.
File
- ./
jeditable.module, line 469 - jeditable.module TODO: Provides integration between Drupal and the jEditable jquery plugin @todo: Datepicker support @todo: Ajax upload support @todo: Radioboxes/checkboxes support @todo: add required handler for date @todo: add compatibility for…
Code
function theme_jeditable_formatter_jeditable_upload($variables) {
$element = $variables['element'];
$field = $variables['field'];
$entity = $variables['entity'];
$entity_type = $variables['entity_type'];
$widget_type = $variables['widget_type'];
$delta = $variables['delta'];
switch ($entity_type) {
case 'node':
// Check user's access to editing this node.
if (!node_access('update', $entity)) {
return $element['value'];
}
$id = $entity->nid;
break;
case 'field_collection_item':
// node_access handled by its node.
$id = entity_load_single('field_collection_item', $entity->item_id)
->hostEntity()->nid;
break;
case 'user':
// Check user's access to editing this user.
if (!user_edit_access($entity)) {
return $element['value'];
}
$id = $entity->uid;
break;
}
if (strpos($field['field_name'], 'field_') === 0) {
$entity_type = 'field';
}
return theme('image', array(
'path' => $element['uri'],
'alt' => $element['alt'],
'title' => $element['title'],
'width' => $element['width'],
'height' => $element['height'],
'attributes' => array(
'class' => 'jeditable jeditable-' . $widget_type,
'id' => $entity_type . '-' . $id . '-' . $field['field_name'] . '-' . $widget_type . '-' . $variables['delta'],
),
));
}