Class 'Mjoin' not found
Class 'Mjoin' not found
academymortgage
Posts: 2Questions: 1Answers: 0
in Editor
We are getting a 'Class 'Mjoin' not found' error message. The Mjoin class file is located in the same folder as the rest of the classes such as join and field and those classes work just fine.
We are using the paid version of Editor. This is a direct reference. Any ideas?
Here are snippets:
include "lib/DataTables.php";
use DataTables\Editor;
use DataTables\Editor\Field;
use DataTables\Editor\Format;
use DataTables\Editor\Mjoin;
Editor::inst($db, 'stips', 'StipID')
...
->join(
Mjoin::inst('actions')
->link('stips.StipID', 'actions.StipId')
->fields(
Field::inst('actions.Action'),
Field::inst('actions.ActionDate')
)
)
...
This discussion has been closed.
Answers
Ok, I didn't do anything and the message went away. Caching issue maybe?
Quite possibly.
At least it is working now!
Allan