You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$model = new \InstallerModelDiscover();
$model->discover();
$results = $model->getItems();
But $model->getItems() return limited result. By default only 20 extensions have been returning.
In getItems:
try
{
// Load the list items and add the items to the internal cache.
$this->cache[$store] = $this->_getList($this->_getListQuery(), $this->getStart(), $this->getState('list.limit'));
}
As a result, if the extension is not included in the first twenty, it will be ignored.
The text was updated successfully, but these errors were encountered:
In Extension.Install.php
But $model->getItems() return limited result. By default only 20 extensions have been returning.
In getItems:
As a result, if the extension is not included in the first twenty, it will be ignored.
The text was updated successfully, but these errors were encountered: