cakephp datasource Aufruf einer undefinierten Methode
Ich habe ein einfaches erstelltdatasource
:
// app/Model/Datasource/FeedSource.php
App::uses('DataSource', 'Model/Datasource');
class FeedSource extends DataSource {
public function abcd() {
echo 'Hello World!';
}
}
in meinemdatabase.php
:
public $feed = array(
'datasource' => 'FeedSource'
);
Und inFeeda
Modell:
class Feeda extends AppModel {
public $useTable = false;
public $useDbConfig = 'feed';
}
imlist
Regler:
$this->loadModel('Feeda');
$this->Feeda->abcd();
Es wird jedoch ein schwerwiegender Fehler zurückgegeben:
Error: Call to undefined method FeedSource::query()
Wie kann man das beheben?
Vielen Dank...