Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
evsmash/files / config / settings.php
Size: Mime:
<?php

use Evsmash\Core\Simpy\Element;
use Evsmash\Core\System\Mapper\Helpers\SettingsConfig as Config;
use Evsmash\Core\System\Mapper\Helpers\SettingsVisibility as Visibility;

return [

	'widget' => [
		'attachments' => [
			Visibility::set('thumb', false),
			Config::set('ID')->options(Element::flat(new Evsmash\Files\AttachmentsGroup))->get(),
		],
		'attachments-grid' => [
			Config::set('ID')->options(Element::flat(new Evsmash\Files\AttachmentsGroup))->get(),
			Config::set('grid')->def('cfg-grid')->get(),
			Config::set('thumb')->def('autoxauto')->get()
		],
		'attachments-simple' => [
			Config::set('ID')->options(Element::flat(new Evsmash\Files\AttachmentsGroup))->get()
		],

	]

];