Skip to content
Snippets Groups Projects
Commit d4252f44 authored by giannisdag's avatar giannisdag Committed by GitHub
Browse files

Merge pull request #1 from achilleas01/master

initial pull request
parents 519b06f4 59e25b62
No related branches found
No related tags found
No related merge requests found
Showing
with 143 additions and 14 deletions
---
# Output debugging info
# loglevel: debug
# Major version of Bootstrap: 3 or 4
bootstrapVersion: 4
# If Bootstrap version 4 is used - turn on/off flexbox model
useFlexbox: false
# Webpack loaders, order matters
styleLoaders:
- style
- css
- sass
# Extract styles to stand-alone css file
# Different settings for different environments can be used,
# It depends on value of NODE_ENV environment variable
# This param can also be set in webpack config:
# entry: 'bootstrap-loader/extractStyles'
extractStyles: false
# env:
# development:
# extractStyles: false
# production:
# extractStyles: true
# Customize Bootstrap variables that get imported before the original Bootstrap variables.
# Thus, derived Bootstrap variables can depend on values from here.
# See the Bootstrap _variables.scss file for examples of derived Bootstrap variables.
#
# preBootstrapCustomizations: ./path/to/bootstrap/pre-customizations.scss
preBootstrapCustomizations: ./myschool/pre-customizations.scss
# This gets loaded after bootstrap/variables is loaded
# Thus, you may customize Bootstrap variables
# based on the values established in the Bootstrap _variables.scss file
#
# bootstrapCustomizations: ./path/to/bootstrap/customizations.scss
# Import your custom styles here
# Usually this endpoint-file contains list of @imports of your application styles
#
# appStyles: ./path/to/your/app/styles/endpoint.scss
appStyles: ./myschool/myschool.scss
### Bootstrap styles
styles:
# Mixins
mixins: true
# Reset and dependencies
normalize: true
print: true
# Core CSS
reboot: true
type: true
images: true
code: true
grid: true
tables: true
forms: true
buttons: true
# Components
transitions: true
dropdown: true
button-group: true
input-group: true
custom-forms: true
nav: true
navbar: true
card: true
breadcrumb: true
pagination: true
jumbotron: true
alert: true
progress: true
media: true
list-group: true
responsive-embed: true
close: true
# Components w/ JavaScript
modal: true
tooltip: true
popover: true
carousel: true
# Utility classes
utilities: true
utilities-background: false
utilities-spacing: false
utilities-responsive: false
### Bootstrap scripts
scripts:
alert: true
button: true
carousel: true
collapse: true
dropdown: true
modal: true
popover: true
scrollspy: true
tab: true
tooltip: true
util: true
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
File mode changed from 100755 to 100644
...@@ -2,26 +2,26 @@ ...@@ -2,26 +2,26 @@
/** /**
* @file * @file
* Contains iek_users.page.inc. * Contains aitisi_entity.page.inc.
* *
* Page callback for Epal users entities. * Page callback for Aitisi entity entities.
*/ */
use Drupal\Core\Render\Element; use Drupal\Core\Render\Element;
/** /**
* Prepares variables for Epal users templates. * Prepares variables for Aitisi entity templates.
* *
* Default template: iek_users.html.twig. * Default template: aitisi_entity.html.twig.
* *
* @param array $variables * @param array $variables
* An associative array containing: * An associative array containing:
* - elements: An associative array containing the user information and any * - elements: An associative array containing the user information and any
* - attributes: HTML attributes for the containing element. * - attributes: HTML attributes for the containing element.
*/ */
function template_preprocess_iek_users(array &$variables) { function template_preprocess_aitisi_entity(array &$variables) {
// Fetch EpalUsers Entity Object. // Fetch AitisiEntity Entity Object.
$iek_users = $variables['elements']['#iek_users']; $aitisi_entity = $variables['elements']['#aitisi_entity'];
// Helpful $content variable for templates. // Helpful $content variable for templates.
foreach (Element::children($variables['elements']) as $key) { foreach (Element::children($variables['elements']) as $key) {
......
{ {
"name": "drupal/iek", "name": "drupal/eiek",
"type": "drupal-module", "type": "drupal-module",
"description": "IEK Registration", "description": "My Entities module",
"keywords": ["Drupal"], "keywords": ["Drupal"],
"license": "GPL-2.0+", "license": "GPL-2.0+",
"homepage": "https://www.drupal.org/project/iek", "homepage": "https://www.drupal.org/project/eiek",
"minimum-stability": "dev", "minimum-stability": "dev",
"support": { "support": {
"issues": "https://www.drupal.org/project/issues/iek", "issues": "https://www.drupal.org/project/issues/eiek",
"source": "http://cgit.drupalcode.org/iek" "source": "http://cgit.drupalcode.org/eiek"
}, },
"require": { } "require": { }
} }
...@@ -2,26 +2,26 @@ ...@@ -2,26 +2,26 @@
/** /**
* @file * @file
* Contains iek_student_class.page.inc. * Contains eidikotita_entity.page.inc.
* *
* Page callback for IEK Student Class entities. * Page callback for Eidikotita entity entities.
*/ */
use Drupal\Core\Render\Element; use Drupal\Core\Render\Element;
/** /**
* Prepares variables for IEK Student Class templates. * Prepares variables for Eidikotita entity templates.
* *
* Default template: iek_student_class.html.twig. * Default template: eidikotita_entity.html.twig.
* *
* @param array $variables * @param array $variables
* An associative array containing: * An associative array containing:
* - elements: An associative array containing the user information and any * - elements: An associative array containing the user information and any
* - attributes: HTML attributes for the containing element. * - attributes: HTML attributes for the containing element.
*/ */
function template_preprocess_iek_student_class(array &$variables) { function template_preprocess_eidikotita_entity(array &$variables) {
// Fetch EpalStudentClass Entity Object. // Fetch EidikotitaEntity Entity Object.
$iek_student_class = $variables['elements']['#iek_student_class']; $eidikotita_entity = $variables['elements']['#eidikotita_entity'];
// Helpful $content variable for templates. // Helpful $content variable for templates.
foreach (Element::children($variables['elements']) as $key) { foreach (Element::children($variables['elements']) as $key) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment