| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 22 | public function defineColumnField($object, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0) |
||
| 23 | { |
||
| 24 | // Default field style for content |
||
| 25 | $this->defaultContentsFieldsStyle = array( |
||
| 26 | 'align' => 'R', // R,C,L |
||
| 27 | 'padding' => array(1, 0.5, 1, 0.5), // Like css 0 => top , 1 => right, 2 => bottom, 3 => left |
||
| 28 | ); |
||
| 29 | |||
| 30 | // Default field style for content |
||
| 31 | $this->defaultTitlesFieldsStyle = array( |
||
| 32 | 'align' => 'C', // R,C,L |
||
| 33 | 'padding' => array(0.5, 0, 0.5, 0), // Like css 0 => top , 1 => right, 2 => bottom, 3 => left |
||
| 34 | ); |
||
| 37 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.