mirror of
https://github.com/Karaka-Management/oms-Media.git
synced 2026-02-13 15:58:42 +00:00
template fixes + bug fixes + style fixes
This commit is contained in:
parent
b0eeaed240
commit
697bcf58b2
|
|
@ -68,7 +68,7 @@ final class Installer extends InstallerAbstract
|
||||||
// Because of this, the directory needs to be created manually after the Media installation
|
// Because of this, the directory needs to be created manually after the Media installation
|
||||||
// The admin account should be the only DB account, but we use a loop of all accounts to avoid bugs
|
// The admin account should be the only DB account, but we use a loop of all accounts to avoid bugs
|
||||||
/** @var \Modules\Admin\Models\Account[] $accounts */
|
/** @var \Modules\Admin\Models\Account[] $accounts */
|
||||||
$accounts = AccountMapper::getAll()->execute();
|
$accounts = AccountMapper::getAll()->executeGetArray();
|
||||||
|
|
||||||
foreach ($accounts as $account) {
|
foreach ($accounts as $account) {
|
||||||
$collection = new Collection();
|
$collection = new Collection();
|
||||||
|
|
|
||||||
|
|
@ -385,10 +385,10 @@ final class BackendController extends Controller
|
||||||
|
|
||||||
$id = $request->getDataString('id') ?? '';
|
$id = $request->getDataString('id') ?? '';
|
||||||
|
|
||||||
$settings = SettingMapper::getAll()->where('module', $id)->execute();
|
$settings = SettingMapper::getAll()->where('module', $id)->executeGetArray();
|
||||||
$view->data['settings'] = $settings;
|
$view->data['settings'] = $settings;
|
||||||
|
|
||||||
$types = MediaTypeMapper::getAll()->with('title')->where('title/language', $response->header->l11n->language)->execute();
|
$types = MediaTypeMapper::getAll()->with('title')->where('title/language', $response->header->l11n->language)->executeGetArray();
|
||||||
$view->data['types'] = $types;
|
$view->data['types'] = $types;
|
||||||
|
|
||||||
$view->setTemplate('/Modules/' . static::NAME . '/Admin/Settings/Theme/Backend/settings');
|
$view->setTemplate('/Modules/' . static::NAME . '/Admin/Settings/Theme/Backend/settings');
|
||||||
|
|
@ -423,7 +423,7 @@ final class BackendController extends Controller
|
||||||
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1007501001, $request, $response);
|
$view->data['nav'] = $this->app->moduleManager->get('Navigation')->createNavigationMid(1007501001, $request, $response);
|
||||||
$view->data['type'] = $type;
|
$view->data['type'] = $type;
|
||||||
|
|
||||||
$l11n = MediaTypeL11nMapper::getAll()->where('type', $type->id)->execute();
|
$l11n = MediaTypeL11nMapper::getAll()->where('type', $type->id)->executeGetArray();
|
||||||
$view->data['l11n'] = $l11n;
|
$view->data['l11n'] = $l11n;
|
||||||
|
|
||||||
return $view;
|
return $view;
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,7 @@ final class SearchController extends Controller
|
||||||
->where('tags/title/content', $pattern)
|
->where('tags/title/content', $pattern)
|
||||||
->sort('createdAt', OrderType::DESC)
|
->sort('createdAt', OrderType::DESC)
|
||||||
->limit(8)
|
->limit(8)
|
||||||
->execute();
|
->executeGetArray();
|
||||||
|
|
||||||
$results = [];
|
$results = [];
|
||||||
foreach ($media as $file) {
|
foreach ($media as $file) {
|
||||||
|
|
@ -111,7 +111,7 @@ final class SearchController extends Controller
|
||||||
->where('tags/title/language', $response->header->l11n->language)
|
->where('tags/title/language', $response->header->l11n->language)
|
||||||
->sort('createdAt', OrderType::DESC)
|
->sort('createdAt', OrderType::DESC)
|
||||||
->limit(8)
|
->limit(8)
|
||||||
->execute();
|
->executeGetArray();
|
||||||
|
|
||||||
$results = [];
|
$results = [];
|
||||||
foreach ($media as $file) {
|
foreach ($media as $file) {
|
||||||
|
|
|
||||||
|
|
@ -190,8 +190,8 @@ class MediaMapper extends DataMapperFactory
|
||||||
*/
|
*/
|
||||||
public static function getParentCollection(string $path = '/') : ReadMapper
|
public static function getParentCollection(string $path = '/') : ReadMapper
|
||||||
{
|
{
|
||||||
$path = \dirname($path);
|
$path = \dirname($path);
|
||||||
$name = \basename($path);
|
$name = \basename($path);
|
||||||
$virtualPath = '/' . \trim(\dirname($path), '/');
|
$virtualPath = '/' . \trim(\dirname($path), '/');
|
||||||
|
|
||||||
//$virtualPath = '/' . \trim(\substr($path, 0, \strripos($path, '/') + 1), '/');
|
//$virtualPath = '/' . \trim(\substr($path, 0, \strripos($path, '/') + 1), '/');
|
||||||
|
|
|
||||||
|
|
@ -30,8 +30,8 @@ $media = $this->data['media'] ?? [];
|
||||||
$account = $this->data['account'];
|
$account = $this->data['account'];
|
||||||
$accountDir = $account->id . ' ' . $account->login;
|
$accountDir = $account->id . ' ' . $account->login;
|
||||||
|
|
||||||
$previous = empty($media) ? '{/base}/media/list' : '{/base}/media/list?{?}&id=' . \reset($media)->id . '&ptype=p';
|
$previous = empty($media) ? '{/base}/media/list' : '{/base}/media/list?{?}&offset=' . \reset($media)->id . '&ptype=p';
|
||||||
$next = empty($media) ? '{/base}/media/list' : '{/base}/media/list?{?}&id=' . \end($media)->id . '&ptype=n';
|
$next = empty($media) ? '{/base}/media/list' : '{/base}/media/list?{?}&offset=' . \end($media)->id . '&ptype=n';
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
|
||||||
|
|
@ -60,7 +60,7 @@ use phpOMS\Uri\UriFactory;
|
||||||
<div class="portlet-foot">
|
<div class="portlet-foot">
|
||||||
<input type="submit" id="iMediaCreate" name="mediaCreateButton" value="<?= $this->getHtml('Create', '0', '0'); ?>">
|
<input type="submit" id="iMediaCreate" name="mediaCreateButton" value="<?= $this->getHtml('Create', '0', '0'); ?>">
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</div>
|
||||||
</div>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -106,7 +106,7 @@ echo $this->data['nav']->render();
|
||||||
</span>
|
</span>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
<tr><td colspan="2"><?= $this->getHtml('Description'); ?>
|
<tr><td colspan="2"><?= $this->getHtml('Description'); ?>
|
||||||
<tr><td colspan="2"><?= $media->description; ?>
|
<tr><td colspan="2"><?= $this->printHtml($media->description); ?>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
<div id="iMediaFileUpdate" class="portlet-foot"
|
<div id="iMediaFileUpdate" class="portlet-foot"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user