I just found that Sample\News\Ui\DataProvider\Author\Form\Modifier\AuthorData modifier load all data but should only one with specific author.
public function modifyData(array $data)
{
$items = $this->collection->getItems();
// here $items will contain all items present in DB, but should
// only filtered with specific author
/** @var $author \Sample\News\Model\Author */
foreach ($items as $author) {
Any ideas how to fix it?
BTW thanks for the nice sample module. It has started from 2015. Is it still actual with latest magento release?
I just found that
Sample\News\Ui\DataProvider\Author\Form\Modifier\AuthorDatamodifier load all data but should only one with specific author.Any ideas how to fix it?
BTW thanks for the nice sample module. It has started from 2015. Is it still actual with latest magento release?