Skip to content
This repository has been archived by the owner on Nov 3, 2023. It is now read-only.

Feature: Anonyme Funktionen bei Callbacks #5772

Closed
comolo opened this issue May 13, 2013 · 1 comment
Closed

Feature: Anonyme Funktionen bei Callbacks #5772

comolo opened this issue May 13, 2013 · 1 comment
Labels
Milestone

Comments

@comolo
Copy link

comolo commented May 13, 2013

Da es sich manchmal bei Callback-Funktionen im DCA nur um ein paar Zeilen Code handelt, wäre es praktisch, wenn man nicht extra eine neue Klasse anlegen müsste, sondern direkt eine anonyme Funktionen verwenden könnte.

Beispiel:

Mit Klasse/Methode:

$GLOBALS['TL_DCA']['tl_helloworld'] = array
(
 ....
        'onload_callback' => array
        (
            array('tl_helloworld', 'someCallbackFunction'),
        ),
....

Mit anonymer Funktion:

$GLOBALS['TL_DCA']['tl_helloworld'] = array
(
 ....
        'onload_callback' => array
        (
            function(DataContainer $dc) {
                ...
                return $dc;
            }
        ),
....
@leofeyer
Copy link
Member

Implementiert in a5ce8e9.

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Projects
None yet
Development

No branches or pull requests

1 participant