PHPDoc update
This commit is contained in:
parent
7ccd41ef11
commit
d949b1bae4
|
@ -813,7 +813,7 @@ abstract class baseModule {
|
||||||
* Returns the PDF entries for this module.
|
* Returns the PDF entries for this module.
|
||||||
*
|
*
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
* @param array $pdfKeys list of PDF keys that are included in document
|
||||||
* @return array list of possible PDF entries
|
* @return PDFEntry[] list of key => PDFEntry
|
||||||
*/
|
*/
|
||||||
public function get_pdfEntries($pdfKeys) {
|
public function get_pdfEntries($pdfKeys) {
|
||||||
return array();
|
return array();
|
||||||
|
|
|
@ -2006,7 +2006,7 @@ class accountContainer {
|
||||||
* Returns a list of possible PDF entries for this account.
|
* Returns a list of possible PDF entries for this account.
|
||||||
*
|
*
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
* @param array $pdfKeys list of PDF keys that are included in document
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
* @return PDFEntry[] list of key => PDFEntry
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -220,11 +220,9 @@ class account extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the PDF entries for this module.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
*/
|
||||||
* @return array list of possible PDF entries
|
|
||||||
*/
|
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
$this->addSimplePDFField($return, 'description', _('Description'));
|
$this->addSimplePDFField($return, 'description', _('Description'));
|
||||||
|
|
|
@ -975,10 +975,8 @@ class asteriskAccount extends baseModule implements passwordService {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -797,10 +797,8 @@ class asteriskExtension extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$a = $this->attributes;
|
$a = $this->attributes;
|
||||||
|
|
|
@ -362,10 +362,8 @@ class asteriskVoicemail extends baseModule implements passwordService {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -221,10 +221,8 @@ class authorizedServiceObject extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -403,10 +403,8 @@ class ddns extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
public function get_pdfEntries($pdfKeys) {
|
public function get_pdfEntries($pdfKeys) {
|
||||||
// attributes are taken from DHCP server object
|
// attributes are taken from DHCP server object
|
||||||
|
|
|
@ -657,10 +657,8 @@ By default, the nodes are configured as H-Nodes which fits for small networks. I
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$nodeType = $this->getDHCPOption('netbios-node-type');
|
$nodeType = $this->getDHCPOption('netbios-node-type');
|
||||||
|
|
|
@ -548,10 +548,8 @@ class eduPerson extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -731,10 +731,8 @@ class fixed_ip extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -685,10 +685,8 @@ class freeRadius extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -195,10 +195,8 @@ class hostObject extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -155,10 +155,8 @@ class ieee802device extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -344,10 +344,8 @@ class inetLocalMailRecipient extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -1970,10 +1970,8 @@ class inetOrgPerson extends baseModule implements passwordService {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -390,10 +390,8 @@ class kolabGroup extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -510,10 +510,8 @@ class kolabSharedFolder extends baseModule { // TODO folder type
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -699,10 +699,8 @@ class kolabUser extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -282,10 +282,8 @@ class ldapPublicKey extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -465,10 +465,8 @@ class nisMailAlias extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -521,10 +521,8 @@ class nisMailAliasUser extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -252,10 +252,8 @@ class nisNetGroupHost extends nisNetGroupUser {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -470,10 +470,8 @@ class nisNetGroupUser extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -572,10 +572,8 @@ class nisnetgroup extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -1826,10 +1826,8 @@ class posixAccount extends baseModule implements passwordService {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$uidLabel = _('User name');
|
$uidLabel = _('User name');
|
||||||
|
|
|
@ -613,10 +613,8 @@ class posixGroup extends baseModule implements passwordService {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -398,10 +398,8 @@ class puppetClient extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -253,10 +253,8 @@ class pykotaBillingCode extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -459,10 +459,8 @@ class pykotaGroup extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -576,10 +576,8 @@ class pykotaPrinter extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -884,10 +884,8 @@ class pykotaUser extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -611,10 +611,8 @@ class quota extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$this->initQuotas();
|
$this->initQuotas();
|
||||||
|
|
|
@ -764,10 +764,8 @@ class range extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -590,10 +590,8 @@ class sambaDomain extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -529,10 +529,8 @@ class sambaGroupMapping extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -1904,10 +1904,8 @@ class sambaSamAccount extends baseModule implements passwordService {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -547,10 +547,8 @@ class shadowAccount extends baseModule implements passwordService {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
function get_pdfEntries($pdfKeys) {
|
function get_pdfEntries($pdfKeys) {
|
||||||
$timeZone = getTimeZone();
|
$timeZone = getTimeZone();
|
||||||
|
|
|
@ -376,10 +376,8 @@ class systemQuotas extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
public function get_pdfEntries($pdfKeys) {
|
public function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -904,10 +904,8 @@ class windowsGroup extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
public function get_pdfEntries($pdfKeys) {
|
public function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -281,10 +281,8 @@ class windowsHost extends baseModule {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
public function get_pdfEntries($pdfKeys) {
|
public function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
|
@ -2415,10 +2415,8 @@ class windowsUser extends baseModule implements passwordService {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns a list of possible PDF entries for this account.
|
* {@inheritDoc}
|
||||||
*
|
* @see baseModule::get_pdfEntries()
|
||||||
* @param array $pdfKeys list of PDF keys that are included in document
|
|
||||||
* @return list of PDF entries (array(<PDF key> => <PDF lines>))
|
|
||||||
*/
|
*/
|
||||||
public function get_pdfEntries($pdfKeys) {
|
public function get_pdfEntries($pdfKeys) {
|
||||||
$return = array();
|
$return = array();
|
||||||
|
|
Loading…
Reference in New Issue