Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Maarch
MaarchCourrier
Commits
bd15356c
Commit
bd15356c
authored
Mar 31, 2022
by
mathieu.pionier
Browse files
FIX #18956 TIME 0:02 fix width column
parent
60240b85
Changes
2
Hide whitespace changes
Inline
Side-by-side
custom/maarch_courrierdev/modules/ldap/xml/config.xml.default
0 → 100644
View file @
bd15356c
<?xml version="1.0" encoding="utf-8"?>
<root>
<config>
<ldap>
<!-- Appel la class_<type_ldap> en fonction du type d'annuaire -->
<type_ldap>
adLDAP
</type_ldap>
<!-- nom / ip du serveur ldap -->
<domain>
192.168.1.1
</domain>
<!-- base DN (que pour openLDAP, ne pas remplir si adLDAP) -->
<baseDN>
DC=maarch,DC=com
</baseDN>
<!-- prefixe les logins si saisi -->
<prefix_login>
MAARCH
</prefix_login>
<!-- suffix les logins si saisi -->
<suffix_login>
@maarch-les-bains.com
</suffix_login>
<!-- cryptage de la communication ( true or false) -->
<ssl>
false
</ssl>
<standardConnect>
false
</standardConnect>
<!-- login admnistrateur du domaine (uniquement pour la synchro) -->
<login_admin>
Administrateur
</login_admin>
<!-- mot de passe administrateur annuaire ldap (uniquement pour la synchro) -->
<pass>
ThePassword
</pass>
</ldap>
</config>
<!-- Synchronisation Ldap -->
<userWS>
superadmin
</userWS>
<passwordWS>
superadmin
</passwordWS>
<synchronizeUsers>
true
</synchronizeUsers>
<synchronizeEntities>
true
</synchronizeEntities>
<mapping>
<user>
<user_id>
samaccountname
</user_id>
<firstname>
givenname
</firstname>
<lastname>
sn
</lastname>
<phone>
telephonenumber
</phone>
<mail>
mail
</mail>
<user_entity>
memberof
</user_entity>
<defaultEntity>
PJS
</defaultEntity>
</user>
<entity>
<entity_id>
objectguid
</entity_id>
<entity_label>
samaccountname
</entity_label>
<parent_entity_id>
memberof
</parent_entity_id>
</entity>
</mapping>
<filter>
<!-- Chemin ou se trouve les utilisateurs de l'application -->
<dn
id=
"OU=Utilisateurs,DC=maarch,DC=com"
type=
"users"
>
<user>
(cn=*)
</user>
</dn>
<!-- Chemin ou se trouve les entités de l'application -->
<dn
id=
"OU=Services,DC=maarch,DC=com"
type=
"entities"
>
<user>
(cn=*)
</user>
</dn>
</filter>
</root>
src/app/resource/controllers/SummarySheetController.php
View file @
bd15356c
...
@@ -410,7 +410,8 @@ class SummarySheetController
...
@@ -410,7 +410,8 @@ class SummarySheetController
$value
=
$customFieldsValues
[
$customFieldsId
]
?
'<b>'
.
$customFieldsValues
[
$customFieldsId
]
.
'</b>'
:
'<i>'
.
_UNDEFINED
.
'</i>'
;
$value
=
$customFieldsValues
[
$customFieldsId
]
?
'<b>'
.
$customFieldsValues
[
$customFieldsId
]
.
'</b>'
:
'<i>'
.
_UNDEFINED
.
'</i>'
;
}
}
$pdf
->
MultiCell
(
$widthNotes
,
30
,
$label
.
" :
{
$value
}
"
,
1
,
'L'
,
false
,
1
,
''
,
''
,
true
,
0
,
true
);
$nextLine
=
(
$nextLine
+
1
)
%
2
;
$pdf
->
MultiCell
(
$widthNotes
*
2
,
30
,
$label
.
" :
{
$value
}
"
,
1
,
'L'
,
false
,
1
,
''
,
''
,
true
,
0
,
true
,
true
);
$pdf
->
SetFont
(
''
,
''
,
10
);
$pdf
->
SetFont
(
''
,
''
,
10
);
}
}
}
}
...
...
Write
Preview
Supports
Markdown
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