parent
6bde740d21
commit
ceeb3a9ff8
|
@ -69,6 +69,8 @@ class AutologinBackendForm extends Form
|
|||
'value' => 'autologin'
|
||||
)
|
||||
);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -77,6 +77,8 @@ class DbBackendForm extends Form
|
|||
'value' => 'db'
|
||||
)
|
||||
);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -97,6 +97,8 @@ class LdapBackendForm extends Form
|
|||
'value' => 'ldap'
|
||||
)
|
||||
);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -112,5 +112,7 @@ class ApplicationConfigForm extends Form
|
|||
)
|
||||
);
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -102,6 +102,8 @@ class LoggingConfigForm extends Form
|
|||
)
|
||||
);
|
||||
}
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -92,6 +92,8 @@ class DbResourceForm extends Form
|
|||
'description' => t('The password to use for authentication')
|
||||
)
|
||||
);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -44,5 +44,7 @@ class FileResourceForm extends Form
|
|||
'description' => t('The regular expression by which to identify columns')
|
||||
)
|
||||
);
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -78,6 +78,8 @@ class LdapResourceForm extends Form
|
|||
'description' => t('The password to use for querying the ldap server')
|
||||
)
|
||||
);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -39,6 +39,8 @@ class LivestatusResourceForm extends Form
|
|||
'value' => realpath(Icinga::app()->getApplicationDir() . '/../var/rw/livestatus')
|
||||
)
|
||||
);
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -48,5 +48,7 @@ class StatusdatResourceForm extends Form
|
|||
'validators' => array(new ReadablePathValidator())
|
||||
)
|
||||
);
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -31,5 +31,7 @@ class LocalInstanceForm extends Form
|
|||
'description' => t('The file path where the icinga commandpipe can be found')
|
||||
)
|
||||
);
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -62,5 +62,7 @@ class RemoteInstanceForm extends Form
|
|||
'description' => t('The file path where the icinga commandpipe can be found')
|
||||
)
|
||||
);
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue