refactoring
This commit is contained in:
parent
615e0f4947
commit
19858a03f5
|
@ -36,9 +36,9 @@ use \htmlButton;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** security functions */
|
/** security functions */
|
||||||
include_once("../../lib/security.inc");
|
include_once(__DIR__ . "/../../lib/security.inc");
|
||||||
/** LDIF import */
|
/** LDIF import */
|
||||||
include_once("../../lib/import.inc");
|
include_once(__DIR__ . "/../../lib/import.inc");
|
||||||
|
|
||||||
// start session
|
// start session
|
||||||
if (isset($_GET['selfservice'])) {
|
if (isset($_GET['selfservice'])) {
|
||||||
|
|
|
@ -48,15 +48,15 @@ use \LAM\TYPES\TypeManager;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** security functions */
|
/** security functions */
|
||||||
include_once("../../lib/security.inc");
|
include_once(__DIR__ . "/../../lib/security.inc");
|
||||||
/** access to PDF configuration files */
|
/** access to PDF configuration files */
|
||||||
include_once("../../lib/pdfstruct.inc");
|
include_once(__DIR__ . "/../../lib/pdfstruct.inc");
|
||||||
/** LDAP object */
|
/** LDAP object */
|
||||||
include_once("../../lib/ldap.inc");
|
include_once(__DIR__ . "/../../lib/ldap.inc");
|
||||||
/** for language settings */
|
/** for language settings */
|
||||||
include_once("../../lib/config.inc");
|
include_once(__DIR__ . "/../../lib/config.inc");
|
||||||
/** module functions */
|
/** module functions */
|
||||||
include_once("../../lib/modules.inc");
|
include_once(__DIR__ . "/../../lib/modules.inc");
|
||||||
|
|
||||||
// start session
|
// start session
|
||||||
startSecureSession();
|
startSecureSession();
|
||||||
|
@ -202,7 +202,7 @@ foreach ($templateClasses as $templateClass) {
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
include '../../lib/adminHeader.inc';
|
include __DIR__ . '/../../lib/adminHeader.inc';
|
||||||
|
|
||||||
?>
|
?>
|
||||||
<div class="user-bright smallPaddingContent">
|
<div class="user-bright smallPaddingContent">
|
||||||
|
@ -409,7 +409,7 @@ echo '<div id="deleteProfileDialog" class="hidden"><form id="deleteProfileForm"
|
||||||
echo '<input type="hidden" name="' . getSecurityTokenName() . '" value="' . getSecurityTokenValue() . '">';
|
echo '<input type="hidden" name="' . getSecurityTokenName() . '" value="' . getSecurityTokenValue() . '">';
|
||||||
echo '</form></div>';
|
echo '</form></div>';
|
||||||
|
|
||||||
include '../../lib/adminFooter.inc';
|
include __DIR__ . '/../../lib/adminFooter.inc';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -50,15 +50,15 @@ use LAM\PDF\PDFStructureWriter;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** security functions */
|
/** security functions */
|
||||||
include_once("../../lib/security.inc");
|
include_once(__DIR__ . "/../../lib/security.inc");
|
||||||
/** access to PDF configuration files */
|
/** access to PDF configuration files */
|
||||||
include_once('../../lib/pdfstruct.inc');
|
include_once(__DIR__ . '/../../lib/pdfstruct.inc');
|
||||||
/** LDAP object */
|
/** LDAP object */
|
||||||
include_once('../../lib/ldap.inc');
|
include_once(__DIR__ . '/../../lib/ldap.inc');
|
||||||
/** LAM configuration */
|
/** LAM configuration */
|
||||||
include_once('../../lib/config.inc');
|
include_once(__DIR__ . '/../../lib/config.inc');
|
||||||
/** module functions */
|
/** module functions */
|
||||||
include_once('../../lib/modules.inc');
|
include_once(__DIR__ . '/../../lib/modules.inc');
|
||||||
|
|
||||||
// start session
|
// start session
|
||||||
startSecureSession();
|
startSecureSession();
|
||||||
|
@ -180,7 +180,7 @@ foreach($sortedModules as $module => $title) {
|
||||||
$modules = join(',',$modules);
|
$modules = join(',',$modules);
|
||||||
|
|
||||||
// print header
|
// print header
|
||||||
include '../../lib/adminHeader.inc';
|
include __DIR__ . '/../../lib/adminHeader.inc';
|
||||||
?>
|
?>
|
||||||
<div class="user-bright smallPaddingContent">
|
<div class="user-bright smallPaddingContent">
|
||||||
<?php
|
<?php
|
||||||
|
@ -465,7 +465,7 @@ if ((sizeof($saveErrors) == 0) && isset($_POST['scrollPositionTop']) && isset($_
|
||||||
}
|
}
|
||||||
|
|
||||||
echo '</form></div>';
|
echo '</form></div>';
|
||||||
include '../../lib/adminFooter.inc';
|
include __DIR__ . '/../../lib/adminFooter.inc';
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -45,13 +45,13 @@ use \LAM\TYPES\TypeManager;
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/** security functions */
|
/** security functions */
|
||||||
include_once("../../lib/security.inc");
|
include_once(__DIR__ . "/../../lib/security.inc");
|
||||||
/** helper functions for profiles */
|
/** helper functions for profiles */
|
||||||
include_once("../../lib/profiles.inc");
|
include_once(__DIR__ . "/../../lib/profiles.inc");
|
||||||
/** access to LDAP server */
|
/** access to LDAP server */
|
||||||
include_once("../../lib/ldap.inc");
|
include_once(__DIR__ . "/../../lib/ldap.inc");
|
||||||
/** access to configuration options */
|
/** access to configuration options */
|
||||||
include_once("../../lib/config.inc");
|
include_once(__DIR__ . "/../../lib/config.inc");
|
||||||
|
|
||||||
// start session
|
// start session
|
||||||
startSecureSession();
|
startSecureSession();
|
||||||
|
@ -182,7 +182,7 @@ foreach ($profileClasses as $profileClass) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
include '../../lib/adminHeader.inc';
|
include __DIR__ . '/../../lib/adminHeader.inc';
|
||||||
echo "<div class=\"user-bright smallPaddingContent\">\n";
|
echo "<div class=\"user-bright smallPaddingContent\">\n";
|
||||||
echo "<form name=\"profilemainForm\" action=\"profilemain.php\" method=\"post\">\n";
|
echo "<form name=\"profilemainForm\" action=\"profilemain.php\" method=\"post\">\n";
|
||||||
echo '<input type="hidden" name="' . getSecurityTokenName() . '" value="' . getSecurityTokenValue() . '">';
|
echo '<input type="hidden" name="' . getSecurityTokenName() . '" value="' . getSecurityTokenValue() . '">';
|
||||||
|
@ -361,7 +361,7 @@ echo '<div id="deleteProfileDialog" class="hidden"><form id="deleteProfileForm"
|
||||||
echo '<input type="hidden" name="' . getSecurityTokenName() . '" value="' . getSecurityTokenValue() . '">';
|
echo '<input type="hidden" name="' . getSecurityTokenName() . '" value="' . getSecurityTokenValue() . '">';
|
||||||
echo '</form></div>';
|
echo '</form></div>';
|
||||||
|
|
||||||
include '../../lib/adminFooter.inc';
|
include __DIR__ . '/../../lib/adminFooter.inc';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Imports the selected account profiles.
|
* Imports the selected account profiles.
|
||||||
|
|
Loading…
Reference in New Issue