Index: trunk/extensions/SemanticForms/includes/SF_FormInputs.php |
— | — | @@ -300,12 +300,12 @@ |
301 | 301 | // Use a special ID for the free text field, for FCK's needs. |
302 | 302 | $input_id = $input_name == "free_text" ? "free_text" : "input_$sfgFieldNum"; |
303 | 303 | |
304 | | - if ( array_key_exists( 'rows', $other_args ) ) { |
| 304 | + if ( array_key_exists( 'rows', $other_args ) ) { |
305 | 305 | $rows = $other_args['rows']; |
306 | 306 | } else { |
307 | 307 | $rows = 5; |
308 | 308 | } |
309 | | - if ( array_key_exists( 'cols', $other_args ) ) { |
| 309 | + if ( array_key_exists( 'cols', $other_args ) ) { |
310 | 310 | $cols = $other_args['cols']; |
311 | 311 | } else { |
312 | 312 | $cols = 80; |
— | — | @@ -982,12 +982,12 @@ |
983 | 983 | $className .= " " . $other_args['class']; |
984 | 984 | $input_id = "input_" . $sfgFieldNum; |
985 | 985 | |
986 | | - if ( array_key_exists( 'rows', $other_args ) ) { |
| 986 | + if ( array_key_exists( 'rows', $other_args ) ) { |
987 | 987 | $rows = $other_args['rows']; |
988 | 988 | } else { |
989 | 989 | $rows = 5; |
990 | 990 | } |
991 | | - if ( array_key_exists( 'cols', $other_args ) ) { |
| 991 | + if ( array_key_exists( 'cols', $other_args ) ) { |
992 | 992 | $cols = $other_args['cols']; |
993 | 993 | } else { |
994 | 994 | $cols = 80; |
— | — | @@ -1347,6 +1347,14 @@ |
1348 | 1348 | return array( '_dat' ); |
1349 | 1349 | } |
1350 | 1350 | |
| 1351 | + public static function getDefaultPropTypeLists() { |
| 1352 | + return array(); |
| 1353 | + } |
| 1354 | + |
| 1355 | + public static function getOtherPropTypeListsHandled() { |
| 1356 | + return array(); |
| 1357 | + } |
| 1358 | + |
1351 | 1359 | public static function getHTML( $cur_value, $input_name, $is_mandatory, $is_disabled, $other_args ) { |
1352 | 1360 | $other_args['size'] = 4; |
1353 | 1361 | return parent::getHTML( $cur_value, $input_name, $is_mandatory, $is_disabled, $other_args ); |