Skip to content

Doku Entwickler Programmierstil

blackcoder87 edited this page Dec 24, 2022 · 6 revisions

Programmierstil


Inhaltsverzeichnis

Beispiel:

/**
 * Test Function.
 *
 * @param string $pageKey
 * @return bool
 * @since 2.1.99
 */
public function testAction($pageKey)
{
    if ($a === $b) {
        echo 'test';
    }

    $test = [
        'test' => 123,
    ];

    $pageMapper = new Page_PageMapper();
    $pageKey = $this->getRequest()->getParam('page');
    $page = $pageMapper->getPageByKey($pageKey);

    return true;  
}

Wiki für ilch-2

Benutzer

  • Inhaltsverzeichnis
    Hier findet man u.a. die Installationsanleitung, sowie Fehler- und Problem-behebungen

Entwickler

  • Inhaltsverzeichnis
    Hier findet man Informationen zum Script, Konzept und dem Programmierstil

Designer

  • Inhaltsverzeichnis
    Hier findet man Informationen über den Aufbau und Anpassung von Layouts und Modulen

Video-Tutorials


Clone this wiki locally