mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-12 13:24:25 +00:00
documenting group bundle + macros in main
This commit is contained in:
parent
cbfeb4c04d
commit
4743e8b3b8
47
source/bundles/group.rst
Normal file
47
source/bundles/group.rst
Normal file
@ -0,0 +1,47 @@
|
|||||||
|
.. Copyright (C) 2014 Champs Libres Cooperative SCRLFS
|
||||||
|
Permission is granted to copy, distribute and/or modify this document
|
||||||
|
under the terms of the GNU Free Documentation License, Version 1.3
|
||||||
|
or any later version published by the Free Software Foundation;
|
||||||
|
with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts.
|
||||||
|
A copy of the license is included in the section entitled "GNU
|
||||||
|
Free Documentation License".
|
||||||
|
|
||||||
|
.. _group-bundle:
|
||||||
|
|
||||||
|
Group bundle
|
||||||
|
############
|
||||||
|
|
||||||
|
Allow to group people in a group. This group may be a family, an activity group, ...
|
||||||
|
|
||||||
|
.. contents:: Table of content
|
||||||
|
:local:
|
||||||
|
|
||||||
|
Entities
|
||||||
|
********
|
||||||
|
|
||||||
|
.. figure:: /static/bundles/group/group_classes_uml.png
|
||||||
|
|
||||||
|
|
||||||
|
Macros
|
||||||
|
******
|
||||||
|
|
||||||
|
Group sticker
|
||||||
|
==============
|
||||||
|
|
||||||
|
Macro file
|
||||||
|
`ChillGroupBundle:Group:macro.html.twig`
|
||||||
|
Macro name
|
||||||
|
:code:`_render`
|
||||||
|
Macro envelope
|
||||||
|
:code:`group`, instance of :class:`Chill\GroupBundle\Entity\CGroup`
|
||||||
|
|
||||||
|
When to use this macro ?
|
||||||
|
When you want to represent group.
|
||||||
|
Example usage :
|
||||||
|
.. code-block:: html+jinja
|
||||||
|
|
||||||
|
{% import 'ChillGroupBundle:Group:macro.html.twig' as m %}
|
||||||
|
|
||||||
|
{{ m._render(g) }}
|
||||||
|
|
||||||
|
|
@ -19,6 +19,7 @@ You will find here documentation about bundles working with Chill.
|
|||||||
Person bundle <person.rst>
|
Person bundle <person.rst>
|
||||||
Report bundle <report.rst>
|
Report bundle <report.rst>
|
||||||
Activity bundle <activity.rst>
|
Activity bundle <activity.rst>
|
||||||
|
Group bundle <group.rst>
|
||||||
|
|
||||||
Your bundle here ?
|
Your bundle here ?
|
||||||
-------------------
|
-------------------
|
||||||
|
@ -22,3 +22,27 @@ This bundle provide :
|
|||||||
.. warning::
|
.. warning::
|
||||||
|
|
||||||
this section is incomplete.
|
this section is incomplete.
|
||||||
|
|
||||||
|
|
||||||
|
Macros
|
||||||
|
******
|
||||||
|
|
||||||
|
Address sticker
|
||||||
|
===============
|
||||||
|
|
||||||
|
Macro file
|
||||||
|
`ChillMainBundle:Address:macro.html.twig`
|
||||||
|
Macro name
|
||||||
|
:code:`_render`
|
||||||
|
Macro envelope
|
||||||
|
:code:`address`, instance of :class:`Chill\MainBundle\Entity\Address`
|
||||||
|
|
||||||
|
When to use this macro ?
|
||||||
|
When you want to represent an address.
|
||||||
|
Example usage :
|
||||||
|
.. code-block:: html+jinja
|
||||||
|
|
||||||
|
{% import 'ChillMainBundle:Address:macro.html.twig' as m %}
|
||||||
|
|
||||||
|
{{ m._render(address) }}
|
||||||
|
|
||||||
|
BIN
source/static/bundles/group/group_classes_uml.png
Normal file
BIN
source/static/bundles/group/group_classes_uml.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
49
source/static/bundles/group/group_classes_uml.pu
Normal file
49
source/static/bundles/group/group_classes_uml.pu
Normal file
@ -0,0 +1,49 @@
|
|||||||
|
# diagramme de classe du module "groupe"
|
||||||
|
|
||||||
|
@startuml
|
||||||
|
|
||||||
|
title Diagramme de classe du module "groupe"
|
||||||
|
|
||||||
|
package "PersonBundle" {
|
||||||
|
class Person
|
||||||
|
class Center
|
||||||
|
}
|
||||||
|
|
||||||
|
package "GroupBundle" {
|
||||||
|
Person "1" <-- Membership
|
||||||
|
Membership "0..*" <--> "Group"
|
||||||
|
Type "1" --> "1..*" Role
|
||||||
|
Membership -right-> "1" Role
|
||||||
|
Group -right-> "1" Type
|
||||||
|
Group -left-> "1" Center
|
||||||
|
}
|
||||||
|
|
||||||
|
class Membership {
|
||||||
|
- role
|
||||||
|
- person
|
||||||
|
- group
|
||||||
|
}
|
||||||
|
note left: <b>Membership</b> relie les groupes aux\npersonnes. Chaque membership a un\n <b>role</b>, le rôle est à choisir\nparmi ceux possibles pour le <b>type</b> de <b>groupe</b>
|
||||||
|
|
||||||
|
class Group {
|
||||||
|
- type
|
||||||
|
- memberships
|
||||||
|
- name
|
||||||
|
- center
|
||||||
|
}
|
||||||
|
note left: Un groupe a un type qui est défini à sa création.
|
||||||
|
|
||||||
|
class Type {
|
||||||
|
- roles
|
||||||
|
}
|
||||||
|
note right: Les types de groupe qu'il est possible de créer \nsont définis dans l'interface d'administration.\nExemple de type: "famille", "groupe de parole", "stage", ...
|
||||||
|
|
||||||
|
class Role {
|
||||||
|
- name
|
||||||
|
}
|
||||||
|
note right: Pour chaque <b>Type</b> on définit des rôles\npossibles pour ce type de groupe. Par exemple, pour le\ntype "famille" on peut avoir les rôles <i>parents</i> et <i>enfants</i>.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@enduml
|
Loading…
x
Reference in New Issue
Block a user