Class 'Mjoin' not found

Class 'Mjoin' not found

academymortgageacademymortgage Posts: 2Questions: 1Answers: 0

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')
            )
    )
...

Answers

  • academymortgageacademymortgage Posts: 2Questions: 1Answers: 0

    Ok, I didn't do anything and the message went away. Caching issue maybe?

  • allanallan Posts: 61,839Questions: 1Answers: 10,134 Site admin

    Quite possibly.

    At least it is working now!

    Allan

This discussion has been closed.