[gelöst]: PHP Warning im Modul
Eingetragen von mr4711 (97)
am 27.10.2015 - 07:34 Uhr in
am 27.10.2015 - 07:34 Uhr in
Hallo,
ich kann leider (noch) kein PHP, möchte aber ein Warning loswerden, das mir sehr viele Einträge in das LOG File schreibt. Die Entwickler des Moduls "Turn.js Magazines" erreiche ich gerade sein einigen Monaten nicht ....
Warning:
Notice: Undefined property: stdClass::$type in turnjs_magazines_entity_view() (line 57 of /homepages/44/d513036722/htdocs/sites/all/modules/turnjs_magazines/turnjs_magazines.module).
Und der Source aus dem Modul:
52 /**
53 * Implements hook_entity_view().
54 */
55 function turnjs_magazines_entity_view($entity, $type, $view_mode, $langcode) {
56 // The teaser display can be used to link to magazines. We remove unwanted elements here.
57 if ($entity->type == TURNJS_MAGAZINES_NODE_TYPE && $view_mode == 'teaser') {
58 // Only show the first image of the field in teaser display (for references). This is currently not possible in field settings.
59 $entity->content[TURNJS_MAGAZINES_FIELD_RESULTING_IMAGES]['#items'] = array_slice($entity->content[TURNJS_MAGAZINES_FIELD_RESULTING_IMAGES]['#items'], 0, 1);
60 if (isset($entity->content['links'])) {
61 // Hide the further links for the teaser.
62 // hide() does not work here. Got no clue, why.
63 unset($entity->content['links']);
64 }
65 // Hide the title.
66 $entity->title = NULL;
67 }
68 }
Kann ich da was im IF Statement ergänzen?
- Anmelden oder Registrieren um Kommentare zu schreiben
Einfach nochmal außen drum
am 27.10.2015 - 08:13 Uhr
Einfach nochmal außen drum ein isset() sollte es tun:
if (isset($entity->type)) {
if ($entity->type == TURNJS_MAGAZINES_NODE_TYPE && $view_mode == 'teaser') {
// Only show the first image of the field in teaser display (for references). This is currently not possible in field settings.
$entity->content[TURNJS_MAGAZINES_FIELD_RESULTING_IMAGES]['#items'] = array_slice($entity->content[TURNJS_MAGAZINES_FIELD_RESULTING_IMAGES]['#items'], 0, 1);
if (isset($entity->content['links'])) {
// Hide the further links for the teaser.
// hide() does not work here. Got no clue, why.
unset($entity->content['links']);
}
// Hide the title.
$entity->title = NULL;
}
}
Hast Du auch ein Issue
am 27.10.2015 - 08:16 Uhr
Hast Du auch ein Issue aufgemacht unter dem Modul? - https://www.drupal.org/project/issues/turnjs_magazines
Solltest Du machen.
Jo, habe ich gemacht:
am 27.10.2015 - 11:24 Uhr
Jo, habe ich gemacht: https://www.drupal.org/node/2484137
Ist schon 6 Monate alt ...
Klappt, danke!
am 27.10.2015 - 19:04 Uhr
Klappt, danke!
Gerne, dann vielleicht noch
am 27.10.2015 - 21:32 Uhr
Gerne, dann vielleicht noch im Betreff auf "Gelöst" setzen