Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
e-epal
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Χάρης Παπαδόπουλος
e-epal
Commits
36fd3f5e
Commit
36fd3f5e
authored
Mar 01, 2017
by
Open Source Developer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
translations
parent
1a35f694
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
11 additions
and
112 deletions
+11
-112
drupal/modules/epal/src/Entity/EpalStudent.php
drupal/modules/epal/src/Entity/EpalStudent.php
+2
-5
drupal/modules/epal/src/Entity/EpalStudentClass.php
drupal/modules/epal/src/Entity/EpalStudentClass.php
+1
-3
drupal/modules/epal/src/Entity/EpalStudentCourseField.php
drupal/modules/epal/src/Entity/EpalStudentCourseField.php
+2
-5
drupal/modules/epal/src/Entity/EpalStudentEpalChosen.php
drupal/modules/epal/src/Entity/EpalStudentEpalChosen.php
+2
-5
drupal/modules/epal/src/Entity/EpalStudentSectorField.php
drupal/modules/epal/src/Entity/EpalStudentSectorField.php
+3
-6
drupal/modules/epal/src/Entity/EpalUsers.php
drupal/modules/epal/src/Entity/EpalUsers.php
+1
-4
drupal/modules/epal/src/EpalStudentClassTranslationHandler.php
...l/modules/epal/src/EpalStudentClassTranslationHandler.php
+0
-14
drupal/modules/epal/src/EpalStudentCourseFieldTranslationHandler.php
...les/epal/src/EpalStudentCourseFieldTranslationHandler.php
+0
-14
drupal/modules/epal/src/EpalStudentEpalChosenTranslationHandler.php
...ules/epal/src/EpalStudentEpalChosenTranslationHandler.php
+0
-14
drupal/modules/epal/src/EpalStudentSectorFieldTranslationHandler.php
...les/epal/src/EpalStudentSectorFieldTranslationHandler.php
+0
-14
drupal/modules/epal/src/EpalStudentTranslationHandler.php
drupal/modules/epal/src/EpalStudentTranslationHandler.php
+0
-14
drupal/modules/epal/src/EpalUsersTranslationHandler.php
drupal/modules/epal/src/EpalUsersTranslationHandler.php
+0
-14
No files found.
drupal/modules/epal/src/Entity/EpalStudent.php
View file @
36fd3f5e
...
...
@@ -21,7 +21,6 @@ use Drupal\user\UserInterface;
* "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
* "list_builder" = "Drupal\epal\EpalStudentListBuilder",
* "views_data" = "Drupal\epal\Entity\EpalStudentViewsData",
* "translation" = "Drupal\epal\EpalStudentTranslationHandler",
*
* "form" = {
* "default" = "Drupal\epal\Form\EpalStudentForm",
...
...
@@ -35,8 +34,6 @@ use Drupal\user\UserInterface;
* },
* },
* base_table = "epal_student",
* data_table = "epal_student_field_data",
* translatable = TRUE,
* admin_permission = "administer epal student entities",
* entity_keys = {
* "id" = "id",
...
...
@@ -422,7 +419,7 @@ class EpalStudent extends ContentEntityBase implements EpalStudentInterface {
->
setSetting
(
'target_type'
,
'epal_users'
)
->
setSetting
(
'handler'
,
'default'
)
->
setRequired
(
true
)
->
setTranslatable
(
TRUE
)
//
->setTranslatable(TRUE)
->
setDisplayOptions
(
'view'
,
array
(
'label'
=>
'above'
,
'type'
=>
'author'
,
...
...
@@ -754,7 +751,7 @@ class EpalStudent extends ContentEntityBase implements EpalStudentInterface {
->
setDescription
(
t
(
'Δώσε το τρέχον ΕΠΑΛ παρακολούθησης.'
))
->
setSetting
(
'target_type'
,
'eepal_school'
)
->
setSetting
(
'handler'
,
'default'
)
->
setTranslatable
(
TRUE
)
//
->setTranslatable(TRUE)
->
setDisplayOptions
(
'view'
,
array
(
'label'
=>
'above'
,
'type'
=>
'author'
,
...
...
drupal/modules/epal/src/Entity/EpalStudentClass.php
View file @
36fd3f5e
...
...
@@ -35,8 +35,6 @@ use Drupal\user\UserInterface;
* },
* },
* base_table = "epal_student_class",
* data_table = "epal_student_class_field_data",
* translatable = TRUE,
* admin_permission = "administer epal student class entities",
* entity_keys = {
* "id" = "id",
...
...
@@ -191,7 +189,7 @@ class EpalStudentClass extends ContentEntityBase implements EpalStudentClassInte
->
setRevisionable
(
TRUE
)
->
setSetting
(
'target_type'
,
'user'
)
->
setSetting
(
'handler'
,
'default'
)
->
setTranslatable
(
TRUE
)
//
->setTranslatable(TRUE)
->
setDisplayOptions
(
'view'
,
array
(
'label'
=>
'hidden'
,
'type'
=>
'author'
,
...
...
drupal/modules/epal/src/Entity/EpalStudentCourseField.php
View file @
36fd3f5e
...
...
@@ -21,7 +21,6 @@ use Drupal\user\UserInterface;
* "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
* "list_builder" = "Drupal\epal\EpalStudentCourseFieldListBuilder",
* "views_data" = "Drupal\epal\Entity\EpalStudentCourseFieldViewsData",
* "translation" = "Drupal\epal\EpalStudentCourseFieldTranslationHandler",
*
* "form" = {
* "default" = "Drupal\epal\Form\EpalStudentCourseFieldForm",
...
...
@@ -35,8 +34,6 @@ use Drupal\user\UserInterface;
* },
* },
* base_table = "epal_student_course_field",
* data_table = "epal_student_course_field_field_data",
* translatable = TRUE,
* admin_permission = "administer epal student course field entities",
* entity_keys = {
* "id" = "id",
...
...
@@ -235,7 +232,7 @@ class EpalStudentCourseField extends ContentEntityBase implements EpalStudentCou
->
setDescription
(
t
(
'Δώσε το id μαθητή.'
))
->
setSetting
(
'target_type'
,
'epal_student'
)
->
setSetting
(
'handler'
,
'default'
)
->
setTranslatable
(
TRUE
)
//
->setTranslatable(TRUE)
->
setDisplayOptions
(
'view'
,
array
(
'label'
=>
'above'
,
'type'
=>
'author'
,
...
...
@@ -262,7 +259,7 @@ class EpalStudentCourseField extends ContentEntityBase implements EpalStudentCou
->
setSetting
(
'target_type'
,
'eepal_specialty'
)
->
setSetting
(
'handler'
,
'default'
)
->
setRequired
(
true
)
->
setTranslatable
(
TRUE
)
//
->setTranslatable(TRUE)
->
setDisplayOptions
(
'view'
,
array
(
'label'
=>
'above'
,
'type'
=>
'author'
,
...
...
drupal/modules/epal/src/Entity/EpalStudentEpalChosen.php
View file @
36fd3f5e
...
...
@@ -21,7 +21,6 @@ use Drupal\user\UserInterface;
* "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
* "list_builder" = "Drupal\epal\EpalStudentEpalChosenListBuilder",
* "views_data" = "Drupal\epal\Entity\EpalStudentEpalChosenViewsData",
* "translation" = "Drupal\epal\EpalStudentEpalChosenTranslationHandler",
*
* "form" = {
* "default" = "Drupal\epal\Form\EpalStudentEpalChosenForm",
...
...
@@ -35,8 +34,6 @@ use Drupal\user\UserInterface;
* },
* },
* base_table = "epal_student_epal_chosen",
* data_table = "epal_student_epal_chosen_field_data",
* translatable = TRUE,
* admin_permission = "administer epal student epal chosen entities",
* entity_keys = {
* "id" = "id",
...
...
@@ -265,7 +262,7 @@ class EpalStudentEpalChosen extends ContentEntityBase implements EpalStudentEpal
->
setSetting
(
'target_type'
,
'epal_student'
)
->
setSetting
(
'handler'
,
'default'
)
->
setRequired
(
true
)
->
setTranslatable
(
TRUE
)
//
->setTranslatable(TRUE)
->
setDisplayOptions
(
'view'
,
array
(
'label'
=>
'above'
,
'type'
=>
'author'
,
...
...
@@ -290,7 +287,7 @@ class EpalStudentEpalChosen extends ContentEntityBase implements EpalStudentEpal
->
setSetting
(
'target_type'
,
'eepal_school'
)
->
setSetting
(
'handler'
,
'default'
)
->
setRequired
(
true
)
->
setTranslatable
(
TRUE
)
//
->setTranslatable(TRUE)
->
setDisplayOptions
(
'view'
,
array
(
'label'
=>
'above'
,
'type'
=>
'author'
,
...
...
drupal/modules/epal/src/Entity/EpalStudentSectorField.php
View file @
36fd3f5e
...
...
@@ -21,7 +21,6 @@ use Drupal\user\UserInterface;
* "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
* "list_builder" = "Drupal\epal\EpalStudentSectorFieldListBuilder",
* "views_data" = "Drupal\epal\Entity\EpalStudentSectorFieldViewsData",
* "translation" = "Drupal\epal\EpalStudentSectorFieldTranslationHandler",
*
* "form" = {
* "default" = "Drupal\epal\Form\EpalStudentSectorFieldForm",
...
...
@@ -35,9 +34,7 @@ use Drupal\user\UserInterface;
* },
* },
* base_table = "epal_student_sector_field",
* data_table = "epal_student_sector_field_field_data",
* translatable = TRUE,
* admin_permission = "administer epal student sector field entities",
* admin_permission = "administer epal student sector field entities",
* entity_keys = {
* "id" = "id",
* "label" = "name",
...
...
@@ -231,7 +228,7 @@ class EpalStudentSectorField extends ContentEntityBase implements EpalStudentSec
->
setDescription
(
t
(
'Δώσε το id μαθητή.'
))
->
setSetting
(
'target_type'
,
'epal_student'
)
->
setSetting
(
'handler'
,
'default'
)
->
setTranslatable
(
TRUE
)
//
->setTranslatable(TRUE)
->
setDisplayOptions
(
'view'
,
array
(
'label'
=>
'above'
,
'type'
=>
'author'
,
...
...
@@ -257,7 +254,7 @@ class EpalStudentSectorField extends ContentEntityBase implements EpalStudentSec
->
setSetting
(
'target_type'
,
'eepal_sectors'
)
->
setSetting
(
'handler'
,
'default'
)
->
setRequired
(
true
)
->
setTranslatable
(
TRUE
)
//
->setTranslatable(TRUE)
->
setDisplayOptions
(
'view'
,
array
(
'label'
=>
'above'
,
'type'
=>
'author'
,
...
...
drupal/modules/epal/src/Entity/EpalUsers.php
View file @
36fd3f5e
...
...
@@ -21,7 +21,6 @@ use Drupal\user\UserInterface;
* "view_builder" = "Drupal\Core\Entity\EntityViewBuilder",
* "list_builder" = "Drupal\epal\EpalUsersListBuilder",
* "views_data" = "Drupal\epal\Entity\EpalUsersViewsData",
* "translation" = "Drupal\epal\EpalUsersTranslationHandler",
*
* "form" = {
* "default" = "Drupal\epal\Form\EpalUsersForm",
...
...
@@ -35,8 +34,6 @@ use Drupal\user\UserInterface;
* },
* },
* base_table = "epal_users",
* data_table = "epal_users_field_data",
* translatable = TRUE,
* admin_permission = "administer epal users entities",
* entity_keys = {
* "id" = "id",
...
...
@@ -330,7 +327,7 @@ class EpalUsers extends ContentEntityBase implements EpalUsersInterface {
->
setSetting
(
'target_type'
,
'user'
)
->
setSetting
(
'handler'
,
'default'
)
->
setRequired
(
true
)
->
setTranslatable
(
TRUE
)
//
->setTranslatable(TRUE)
->
setDisplayOptions
(
'view'
,
array
(
'label'
=>
'above'
,
'type'
=>
'author'
,
...
...
drupal/modules/epal/src/EpalStudentClassTranslationHandler.php
deleted
100644 → 0
View file @
1a35f694
<?php
namespace
Drupal\epal
;
use
Drupal\content_translation
\
ContentTranslationHandler
;
/**
* Defines the translation handler for epal_student_class.
*/
class
EpalStudentClassTranslationHandler
extends
ContentTranslationHandler
{
// Override here the needed methods from ContentTranslationHandler.
}
drupal/modules/epal/src/EpalStudentCourseFieldTranslationHandler.php
deleted
100644 → 0
View file @
1a35f694
<?php
namespace
Drupal\epal
;
use
Drupal\content_translation
\
ContentTranslationHandler
;
/**
* Defines the translation handler for epal_student_course_field.
*/
class
EpalStudentCourseFieldTranslationHandler
extends
ContentTranslationHandler
{
// Override here the needed methods from ContentTranslationHandler.
}
drupal/modules/epal/src/EpalStudentEpalChosenTranslationHandler.php
deleted
100644 → 0
View file @
1a35f694
<?php
namespace
Drupal\epal
;
use
Drupal\content_translation
\
ContentTranslationHandler
;
/**
* Defines the translation handler for epal_student_epal_chosen.
*/
class
EpalStudentEpalChosenTranslationHandler
extends
ContentTranslationHandler
{
// Override here the needed methods from ContentTranslationHandler.
}
drupal/modules/epal/src/EpalStudentSectorFieldTranslationHandler.php
deleted
100644 → 0
View file @
1a35f694
<?php
namespace
Drupal\epal
;
use
Drupal\content_translation
\
ContentTranslationHandler
;
/**
* Defines the translation handler for epal_student_sector_field.
*/
class
EpalStudentSectorFieldTranslationHandler
extends
ContentTranslationHandler
{
// Override here the needed methods from ContentTranslationHandler.
}
drupal/modules/epal/src/EpalStudentTranslationHandler.php
deleted
100644 → 0
View file @
1a35f694
<?php
namespace
Drupal\epal
;
use
Drupal\content_translation
\
ContentTranslationHandler
;
/**
* Defines the translation handler for epal_student.
*/
class
EpalStudentTranslationHandler
extends
ContentTranslationHandler
{
// Override here the needed methods from ContentTranslationHandler.
}
drupal/modules/epal/src/EpalUsersTranslationHandler.php
deleted
100644 → 0
View file @
1a35f694
<?php
namespace
Drupal\epal
;
use
Drupal\content_translation
\
ContentTranslationHandler
;
/**
* Defines the translation handler for epal_users.
*/
class
EpalUsersTranslationHandler
extends
ContentTranslationHandler
{
// Override here the needed methods from ContentTranslationHandler.
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment