One Hat Cyber Team
Your IP :
216.73.216.14
Server IP :
194.44.31.54
Server :
Linux zen.imath.kiev.ua 4.18.0-553.77.1.el8_10.x86_64 #1 SMP Fri Oct 3 14:30:23 UTC 2025 x86_64
Server Software :
Apache/2.4.37 (Rocky Linux) OpenSSL/1.1.1k
PHP Version :
5.6.40
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
doc
/
ldap-account-manager-7.7
/
devel
/
View File Name :
mod_ext.htm
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Module HowTo - Defining required extensions</title> <link rel="stylesheet" type="text/css" href="style/layout.css"> <link rel="shortcut icon" type="image/x-icon" href="images/favicon.ico"> </head> <body> <div style="text-align: center;"> <h1>Module HowTo - Defining required extensions<br> </h1> <div style="text-align: left;"><br> Your account module might require special PHP extensions. LAM can check this for you and display an error message at the login page.<br> <br> </div> <div style="text-align: left;">You will need to implement the function <span style="font-weight: bold;">getRequiredExtensions()</span> or use <span style="font-weight: bold;">meta['extensions']</span>.<br> <br> <span style="font-weight: bold; text-decoration: underline;">Example:</span><br style="font-weight: bold; text-decoration: underline;"> <br> The <span style="font-style: italic;">posixAccount</span> module needs to generate password hashes. Therefore it needs the Hash extension.<br> <br> <table style="width: 100%; text-align: left;" class="mod-code" border="0" cellpadding="2" cellspacing="2"> <tbody> <tr> <td style="vertical-align: top;"> /**<br> * Returns meta data that is interpreted by parent class<br> *<br> * @return array array with meta data<br> */<br> <span style="font-weight: bold;"> function</span> get_metaData() {<br> $return = array();<br> // PHP extensions<br> $return["extensions"] = array("hash");<br> [...]<br> </td> </tr> </tbody> </table> <br> <br> <br> <span style="font-weight: bold;"></span> <h2><span style="font-weight: bold;"></span></h2> </div> </div> </body> </html>