Author |
|
meltary Newbie
Joined: 17 August 2018 Location: Russian Federation
Online Status: Offline Posts: 5
|
Posted: 17 August 2018 at 3:18am | IP Logged
|
|
|
Hey. I need help. I want to add a module to my project without using nmp and a compocer, I want to make the addition manually. Can you tell me it's possible? How?
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 17 August 2018 at 3:31am | IP Logged
|
|
|
That's possible if the module only holds server-side code, without any frontend elements. For instance, with LDAP auth module:
- Clone or download - Download zip
- in modules/ directory create LdapAuth/ subdirectory
- unpack the contents of aurora-module-ldap-auth-master dir in .zip archive into the newly created directory.
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|
meltary Newbie
Joined: 17 August 2018 Location: Russian Federation
Online Status: Offline Posts: 5
|
Posted: 17 August 2018 at 3:34am | IP Logged
|
|
|
Thank you. but you can not do anything with the interface module?
Maybe you need to manually edit any files?
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 17 August 2018 at 3:57am | IP Logged
|
|
|
No, you're going to need at least:
Code:
npm install ./modules/CoreWebclient |
|
|
and, optionally, gulp tasks for building skins and javascript files.
You may wish to look into using IFrame app, which makes it easy to integrate 3rd party application into WebMail:
Integrating your web application
--
Regards,
Igor, AfterLogic Support
|
Back to Top |
|
|