150 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
		
		
			
		
	
	
			150 lines
		
	
	
		
			5.3 KiB
		
	
	
	
		
			HTML
		
	
	
	
|  | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> | ||
|  | <html> | ||
|  | <head> | ||
|  |   <title>Developer FAQ</title> | ||
|  |   <link rel="stylesheet" type="text/css" href="style/layout.css"> | ||
|  | </head> | ||
|  | <body> | ||
|  | 
 | ||
|  | <p align="center"> | ||
|  | <script type="text/javascript"><!-- | ||
|  | google_ad_client = "pub-4179059556107138"; | ||
|  | google_alternate_ad_url = "http://lam.sourceforge.net/google_adsense_script.html"; | ||
|  | google_ad_width = 728; | ||
|  | google_ad_height = 90; | ||
|  | google_ad_format = "728x90_as"; | ||
|  | google_ad_type = "text_image"; | ||
|  | google_ad_channel =""; | ||
|  | google_page_url = document.location; | ||
|  | google_color_border = "EEEEEE"; | ||
|  | google_color_bg = "FFFFFF"; | ||
|  | google_color_link = "0000FF"; | ||
|  | google_color_url = "008000"; | ||
|  | google_color_text = "000000"; | ||
|  | //--></script> | ||
|  | <script type="text/javascript" | ||
|  |   src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> | ||
|  | </script> | ||
|  | </p> | ||
|  | 
 | ||
|  | 
 | ||
|  | <div style="text-align: center;"> | ||
|  | <h1>Developer FAQ<br> | ||
|  | </h1> | ||
|  | <br> | ||
|  | <div style="text-align: left;"><big><span style="font-weight: bold;">Q: | ||
|  | Where is the ldap/config object?</span></big><br> | ||
|  | <br> | ||
|  | <big><span style="font-weight: bold;">A:</span></big> The ldap object | ||
|  | is in <span style="color: rgb(204, 0, 0); font-weight: bold;">$_SESSION['ldap']</span> | ||
|  | and the config object in <span | ||
|  |  style="font-weight: bold; color: rgb(204, 0, 0);">$_SESSION['config']</span>.<br> | ||
|  | <br> | ||
|  | <br> | ||
|  | </div> | ||
|  | <div style="text-align: left;"><br> | ||
|  | </div> | ||
|  | <div style="text-align: left;"><big><span style="font-weight: bold;">Q: | ||
|  | How can I make LDAP operations, where is the user name and password?</span></big><br> | ||
|  | <br> | ||
|  | <span style="font-weight: bold;"><big>A:</big> </span>LAM | ||
|  | automatically reconnects to the LDAP server on every page load. You can | ||
|  | use <span style="font-weight: bold; color: rgb(204, 0, 0);">$_SESSION['ldap']->server</span> | ||
|  | which is the LDAP server handle.<br> | ||
|  | Be sure to include ldap.inc before (automatically included for account | ||
|  | modules).<br> | ||
|  | <br> | ||
|  | <span style="font-weight: bold;">Example:</span> ldap_search(<span | ||
|  |  style="font-weight: bold; color: rgb(204, 0, 0);">$_SESSION['ldap']->server</span><span | ||
|  |  style="color: rgb(204, 0, 0);"></span>, $suffix, $filter, $attributes)<br> | ||
|  | <br> | ||
|  | <br> | ||
|  | <br> | ||
|  | <big><span style="font-weight: bold;">Q: What is the LDAP suffix for | ||
|  | the different account types?</span></big><br> | ||
|  | <br> | ||
|  | <big><span style="font-weight: bold;">A:</span></big> Just call <span | ||
|  |  style="font-weight: bold; color: rgb(204, 0, 0);">$_SESSION['config']->get_Suffix($scope)</span> | ||
|  | where $scope is the account type (user,group, ...).<br> | ||
|  | Be sure to include ldap.inc before (automatically included for account | ||
|  | modules).<br> | ||
|  | <br> | ||
|  | <span style="font-weight: bold;">Example:</span> $suffix = <span | ||
|  |  style="font-weight: bold; color: rgb(204, 0, 0);">$_SESSION['config']->get_Suffix('user')</span><br> | ||
|  | <br> | ||
|  | <br> | ||
|  | <br> | ||
|  | <big><span style="font-weight: bold;">Q: How can I check if the user is | ||
|  | really logged in and not calling the scripts by hand?</span></big><br> | ||
|  | <br> | ||
|  | <big><span style="font-weight: bold;">A:</span></big> After the user | ||
|  | successfully logged in to LAM the variable <span | ||
|  |  style="font-weight: bold; color: rgb(204, 0, 0);">$_SESSION['loggedIn']</span> | ||
|  | is set to true.<br> | ||
|  | <br> | ||
|  | <big><span style="font-weight: bold;"><br> | ||
|  | <br> | ||
|  | Q: What is the command for these error/warning/info messages?</span></big><br> | ||
|  | <br> | ||
|  | <big><span style="font-weight: bold;">A:</span></big> Your script must | ||
|  | include status.inc (automatically included for account | ||
|  | modules) to display these messages.<br> | ||
|  | The command is <span style="font-weight: bold;">StatusMessage(<type>, | ||
|  | <headline>, <text>[, <variables>])</span>.<br> | ||
|  | <br> | ||
|  | <span style="font-weight: bold;">Parameters:</span><br> | ||
|  | <ul> | ||
|  |   <li><span style="font-weight: bold;"><type>:</span> message | ||
|  | type ("ERROR", "WARN", "INFO")</li> | ||
|  |   <li><span style="font-weight: bold;"><headline>:</span> | ||
|  | headline for the message (may include format tags)<br> | ||
|  |   </li> | ||
|  |   <li><span style="font-weight: bold;"><type>:</span> text for | ||
|  | the message (may include format tags)</li> | ||
|  |   <li><span style="font-weight: bold;"><variables>:</span> | ||
|  | optional, array of variables to include in headline/text<br> | ||
|  | The positions in headline/text must be marked with %s before.</li> | ||
|  | </ul> | ||
|  | <br> | ||
|  | <span style="font-weight: bold;">Format of special tags:</span><br> | ||
|  | <ul> | ||
|  |   <li><span style="font-weight: bold;">{bold}</span>text<span | ||
|  |  style="font-weight: bold;">{endbold}:</span> "text" is printed bold</li> | ||
|  |   <li><span style="font-weight: bold;">{color=#123456}</span>text<span | ||
|  |  style="font-weight: bold;">{endcolor}:</span> "text" is printed in | ||
|  | given color</li> | ||
|  |   <li><span style="font-weight: bold;">{link=http://nodomain.org}</span>text<span | ||
|  |  style="font-weight: bold;">{endlink}:</span> This will add a link to | ||
|  | http://nodomain.org which will be labeled "text"<br> | ||
|  |   </li> | ||
|  | </ul> | ||
|  | <br> | ||
|  | <br> | ||
|  | <br> | ||
|  | </div> | ||
|  | </div> | ||
|  | 
 | ||
|  | <p align="center"> | ||
|  | <script type="text/javascript"><!-- | ||
|  | google_ad_client = "pub-4179059556107138"; | ||
|  | google_alternate_ad_url = "http://lam.sourceforge.net/google_adsense_script.html"; | ||
|  | google_ad_width = 728; | ||
|  | google_ad_height = 90; | ||
|  | google_ad_format = "728x90_as"; | ||
|  | google_ad_type = "text_image"; | ||
|  | google_ad_channel =""; | ||
|  | google_page_url = document.location; | ||
|  | google_color_border = "EEEEEE"; | ||
|  | google_color_bg = "FFFFFF"; | ||
|  | google_color_link = "0000FF"; | ||
|  | google_color_url = "008000"; | ||
|  | google_color_text = "000000"; | ||
|  | //--></script> | ||
|  | <script type="text/javascript" | ||
|  |   src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> | ||
|  | </script> | ||
|  | </p> | ||
|  | 
 | ||
|  | </body> | ||
|  | </html> |