Fix createElements() not returning self where applicable

refs #5525
This commit is contained in:
Johannes Meyer 2014-09-09 13:24:39 +02:00
parent 6bde740d21
commit ceeb3a9ff8
12 changed files with 24 additions and 0 deletions

View File

@ -69,6 +69,8 @@ class AutologinBackendForm extends Form
'value' => 'autologin'
)
);
return $this;
}
/**

View File

@ -77,6 +77,8 @@ class DbBackendForm extends Form
'value' => 'db'
)
);
return $this;
}
/**

View File

@ -97,6 +97,8 @@ class LdapBackendForm extends Form
'value' => 'ldap'
)
);
return $this;
}
/**

View File

@ -112,5 +112,7 @@ class ApplicationConfigForm extends Form
)
);
}
return $this;
}
}

View File

@ -102,6 +102,8 @@ class LoggingConfigForm extends Form
)
);
}
return $this;
}
/**

View File

@ -92,6 +92,8 @@ class DbResourceForm extends Form
'description' => t('The password to use for authentication')
)
);
return $this;
}
/**

View File

@ -44,5 +44,7 @@ class FileResourceForm extends Form
'description' => t('The regular expression by which to identify columns')
)
);
return $this;
}
}

View File

@ -78,6 +78,8 @@ class LdapResourceForm extends Form
'description' => t('The password to use for querying the ldap server')
)
);
return $this;
}
/**

View File

@ -39,6 +39,8 @@ class LivestatusResourceForm extends Form
'value' => realpath(Icinga::app()->getApplicationDir() . '/../var/rw/livestatus')
)
);
return $this;
}
/**

View File

@ -48,5 +48,7 @@ class StatusdatResourceForm extends Form
'validators' => array(new ReadablePathValidator())
)
);
return $this;
}
}

View File

@ -31,5 +31,7 @@ class LocalInstanceForm extends Form
'description' => t('The file path where the icinga commandpipe can be found')
)
);
return $this;
}
}

View File

@ -62,5 +62,7 @@ class RemoteInstanceForm extends Form
'description' => t('The file path where the icinga commandpipe can be found')
)
);
return $this;
}
}