1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 | <?php
namespace Layouts\EsportLayout\Config;
class Config extends \Ilch\Config\Install
{
public $config = [
'name' => 'E-Sport Layout',
'version' => '1.0.11',
'ilchCore' => '2.1.37',
'author' => 'Slipi',
'desc' => 'Das E-Sport Layout ist ein moderns Clan-Layout. Dem Slider können sie bis zu 3 Bilder hinzufügen. Wird nur 1 Image von 3 Image hinzugefügt, haben sie einen normalen Header. Auch der Inhalt der einzelnen Image kann geändert ändern, sowie Buttons (Farbe, Hover und link).',
'layouts' => [
'panel' => [
['module' => 'user', 'controller' => 'login'],
['module' => 'user', 'controller' => 'regist'],
]
],
'settings' => [
'logourl' => [
'type' => 'mediaselection',
'default' => 'application/layouts/esportlayout/images/logo1.png',
'description' => '',
],
'button1' => [
'type' => 'text',
'default' => 'ilch.de',
'description' => '',
],
'button1url' => [
'type' => 'url',
'description' => '',
],
'button1color' => [
'type' => 'colorpicker',
'default' => '#ff0000',
'description' => '',
],
'button1hover' => [
'type' => 'colorpicker',
'default' => '#141414',
'description' => '',
],
'button1switch' => [
'type' => 'flipswitch',
'default' => '1',
'description' => '',
],
'button2' => [
'type' => 'text',
'default' => 'google.de',
'description' => '',
],
'button2url' => [
'type' => 'url',
'description' => '',
],
'button2color' => [
'type' => 'colorpicker',
'default' => '#ff0000',
'description' => '',
],
'button2hover' => [
'type' => 'colorpicker',
'default' => '#141414',
'description' => '',
],
'button2switch' => [
'type' => 'flipswitch',
'default' => '1',
'description' => '',
],
'button3' => [
'type' => 'text',
'default' => 'github ilch2 wiki',
'description' => '',
],
'button3url' => [
'type' => 'url',
'description' => '',
],
'button3color' => [
'type' => 'colorpicker',
'default' => '#ff0000',
'description' => '',
],
'button3hover' => [
'type' => 'colorpicker',
'default' => '#141414',
'description' => '',
],
'button3switch' => [
'type' => 'flipswitch',
'default' => '1',
'description' => '',
],
'slider1' => [
'type' => 'mediaselection',
'default' => 'application/layouts/esportlayout/images/banner/pic1.jpg',
'description' => 'descSlider',
],
'slider1heading' => [
'type' => 'text',
'default' => 'Ilch E-Sport Layout',
'description' => '',
],
'slider1text' => [
'type' => 'text',
'default' => 'Danke das sie sich für das Ilch E-Sport Layout entschieden haben.',
'description' => 'descSliderText',
],
'slider2' => [
'type' => 'mediaselection',
'default' => 'application/layouts/esportlayout/images/banner/pic2.jpg',
'description' => 'descSlider',
],
'slider2heading' => [
'type' => 'text',
'default' => 'Ilch E-Sport Layout',
'description' => '',
],
'slider2text' => [
'type' => 'text',
'default' => 'Im Admincenter kann der Slider sowie das Logo nach ihren wünschen geändert werden',
'description' => 'descSliderText',
],
'slider3' => [
'type' => 'mediaselection',
'default' => 'application/layouts/esportlayout/images/banner/pic3.jpg',
'description' => 'descSlider',
],
'slider3heading' => [
'type' => 'text',
'default' => 'Ilch E-Sport Layout',
'description' => '',
],
'slider3text' => [
'type' => 'text',
'default' => 'Sollte es Probleme geben, besuchen sie uns im Forum, und ihnen wird geholfen.',
'description' => 'descSliderText',
],
'linkColor' => [
'type' => 'colorpicker',
'default' => '#ffffff',
'description' => 'linkColorDescp',
],
'linkHover' => [
'type' => 'colorpicker',
'default' => '#666666',
'description' => 'linkHoverDescp',
],
],
];
public function getUpdate($installedVersion)
{
}
}
|