Skip to content

Commit 09c7d24

Browse files
committed
initial
0 parents  commit 09c7d24

File tree

504 files changed

+57266
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

504 files changed

+57266
-0
lines changed

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
.coverage
2+
composer.lock
3+
npm-debug.log
4+
mix-manifest.json
5+
package-lock.json
6+
/bin
7+
/build
8+
/vendor
9+
/coverage
10+
/node_modules

LICENSE.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#The MIT License (MIT)
2+
3+
###Copyright (c) 2017 OpenClassify, Inc.
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Accelerant Theme
2+
3+
The official control panel theme for OpenClassify.

composer.json

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
{
2+
"name": "visiosoft/defaultadmin-theme",
3+
"type": "streams-addon",
4+
"description": "The official admin theme for Visiosoft.",
5+
"keywords": [
6+
"cms",
7+
"addon",
8+
"theme",
9+
"visiosoft",
10+
"laravel"
11+
],
12+
"homepage": "https://visiosoft.com.tr/",
13+
"authors": [
14+
{
15+
"name": "Visiosoft, Inc.",
16+
"email": "[email protected]",
17+
"homepage": "https://visiosoft.com.tr/",
18+
"role": "Owner"
19+
}
20+
],
21+
"support": {
22+
"email": "[email protected]"
23+
},
24+
"autoload": {
25+
"psr-4": {
26+
"Visiosoft\\DefaultadminTheme\\": "src/"
27+
}
28+
}
29+
}

package.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"private": true,
3+
"scripts": {
4+
"dev": "npm run development",
5+
"development": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
6+
"watch": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --watch --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
7+
"watch-poll": "npm run watch -- --watch-poll",
8+
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
9+
"prod": "npm run production",
10+
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
11+
},
12+
"devDependencies": {
13+
"cross-env": "^5.1",
14+
"laravel-mix": "^4.0.12",
15+
"resolve-url-loader": "^2.3.1",
16+
"sass": "^1.16.0",
17+
"sass-loader": "^7.1.0"
18+
}
19+
}

resources/config/preferences.php

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
<?php
2+
3+
return [
4+
'sidebar_hover' => 'anomaly.field_type.boolean',
5+
'navigation' => [
6+
'type' => 'anomaly.field_type.textarea',
7+
'input_view' => 'visiosoft.theme.defaultadmin::admin/navigation/preferences',
8+
],
9+
'display' => [
10+
'required' => true,
11+
'type' => 'anomaly.field_type.select',
12+
'config' => [
13+
'default_value' => 'default',
14+
'mode' => 'dropdown',
15+
'options' => [
16+
'default' => 'visiosoft.theme.defaultadmin::preference.display.option.default',
17+
'compact' => 'visiosoft.theme.defaultadmin::preference.display.option.compact',
18+
],
19+
],
20+
],
21+
'sidebars' => [
22+
'required' => true,
23+
'type' => 'anomaly.field_type.select',
24+
'config' => [
25+
'options' => [
26+
'default' => 'visiosoft.theme.defaultadmin::preference.sidebars.option.default',
27+
'static' => 'visiosoft.theme.defaultadmin::preference.sidebars.option.static',
28+
],
29+
'default_value' => 'default',
30+
'mode' => 'dropdown',
31+
],
32+
],
33+
];

resources/config/settings.php

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
<?php
2+
3+
return [
4+
'sidebar_hover' => 'anomaly.field_type.boolean',
5+
'navigation' => [
6+
'type' => 'anomaly.field_type.textarea',
7+
'input_view' => 'visiosoft.theme.defaultadmin::admin/navigation/settings',
8+
],
9+
"login_icon" => [
10+
"type" => "anomaly.field_type.file",
11+
"config" => [
12+
"folders" => ['images'],
13+
]
14+
],
15+
"panel_icon" => [
16+
"type" => "anomaly.field_type.file",
17+
"config" => [
18+
"folders" => ['images'],
19+
]
20+
],
21+
"title" => [
22+
"type" => "anomaly.field_type.text",
23+
"config" => [
24+
"default_value" => 'OpenClassify',
25+
]
26+
],
27+
"footer_copyright_org_name" => [
28+
"type" => "anomaly.field_type.text",
29+
"config" => [
30+
"default_value" => 'OpenClassify, Inc',
31+
]
32+
],
33+
"sidebar_main_color" => [
34+
"type" => "anomaly.field_type.colorpicker",
35+
"config" => [
36+
"default_value" => '#252525',
37+
]
38+
],
39+
"sidebar_secondary_color" => [
40+
"type" => "anomaly.field_type.colorpicker",
41+
"config" => [
42+
"default_value" => '#333333',
43+
]
44+
],
45+
"active_sidebar_border_color" => [
46+
"type" => "anomaly.field_type.colorpicker",
47+
"config" => [
48+
"default_value" => '#c61db4',
49+
]
50+
],
51+
];

0 commit comments

Comments
 (0)