| @@ 584-590 (lines=7) @@ | ||
| 581 | $label .= ' for="'.$id.'"'; |
|
| 582 | } |
|
| 583 | ||
| 584 | if (is_array($attributes) && count($attributes) > 0) |
|
| 585 | { |
|
| 586 | foreach ($attributes as $key => $val) |
|
| 587 | { |
|
| 588 | $label .= ' '.$key.'="'.$val.'"'; |
|
| 589 | } |
|
| 590 | } |
|
| 591 | ||
| 592 | return $label.'>'.$label_text.'</label>'; |
|
| 593 | } |
|
| @@ 980-990 (lines=11) @@ | ||
| 977 | $attributes = (array) $attributes; |
|
| 978 | } |
|
| 979 | ||
| 980 | if (is_array($attributes)) |
|
| 981 | { |
|
| 982 | $atts = ''; |
|
| 983 | ||
| 984 | foreach ($attributes as $key => $val) |
|
| 985 | { |
|
| 986 | $atts .= ' '.$key.'="'.$val.'"'; |
|
| 987 | } |
|
| 988 | ||
| 989 | return $atts; |
|
| 990 | } |
|
| 991 | ||
| 992 | if (is_string($attributes)) |
|
| 993 | { |
|