source_account->name);// TODO TransactionJournal cannot deliver "source_account" $search = strtolower($this->triggerValue); $strpos = strpos($fromAccountName, $search); if (!($strpos === false)) { // found something Log::debug('"' . $fromAccountName . '" contains the text "' . $search . '". Return true.'); return true; } // found nothing. Log::debug('"' . $fromAccountName . '" does not contain the text "' . $search . '". Return false.'); return false; } }