class Unit in TacJS 8
Defines a Unit class.
Hierarchy
- class \Drupal\tacjs\TacjsSettings
- class \Drupal\tacjs\Unit
Expanded class hierarchy of Unit
1 file declares its use of Unit
- UnitTest.php in tests/
src/ Unit/ UnitTest.php
File
- src/
Unit.php, line 9
Namespace
Drupal\tacjsView source
class Unit extends TacjsSettings {
public function __call($method, array $args = array()) {
if (!method_exists($this, $method)) {
throw new BadMethodCallException("method '{$method}' does not exist");
}
return call_user_func_array(array(
$this,
$method,
), $args);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
TacjsSettings:: |
constant | |||
TacjsSettings:: |
public | function | Clean value : remove item is not necessary. | |
TacjsSettings:: |
constant | |||
TacjsSettings:: |
protected | function | GetFields. | |
TacjsSettings:: |
public | function | Function return config selected. | |
TacjsSettings:: |
private | function | Get Values Step One Form. | |
TacjsSettings:: |
constant | |||
TacjsSettings:: |
constant | |||
TacjsSettings:: |
public | function | Serialize Form values. | |
TacjsSettings:: |
constant | |||
TacjsSettings:: |
constant | |||
Unit:: |
public | function |