0
Wie rufen Sie eine Funktion, die Sie in der AppView in einer anderen Ansicht geschrieben haben? ZB die Indexansicht?CakePHP AppView-Funktion aus Sicht
<?php
/**
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
*
* Licensed under The MIT License
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
* @link http://cakephp.org CakePHP(tm) Project
* @since 3.0.0
* @license http://www.opensource.org/licenses/mit-license.php MIT License
*/
namespace App\View;
use Cake\View\View;
/**
* Application View
*
* Your application’s default view class
*
* @link http://book.cakephp.org/3.0/en/views.html#the-app-view
*/
class AppView extends View
{
public function initialize(){
}
public function printNavSidebar(){
echo '<nav class="large-1 medium-2 columns" id="actions-sidebar">';
}
}
Wie rufe ich die Funktion printNavSidebar() in meiner Indexansicht auf?
@BadHorsie ich denke, die OP-Ansicht anzeigen _templates_, nicht nur Klassen beziehen wollte. – ndm
Warum würdest du zu dieser Frage schreiben, wenn ich sie selbst beantwortet habe, und mir dann sagen, dass ich etwas über OOP lernen soll? Irgendwie unhöflich. –