Changeset 6170 for branches/1.1/bb-includes/class.bb-walker.php
- Timestamp:
- 12/14/2016 12:13:14 PM (10 years ago)
- File:
-
- 1 edited
-
branches/1.1/bb-includes/class.bb-walker.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/1.1/bb-includes/class.bb-walker.php
r6153 r6170 6 6 7 7 //abstract callbacks 8 function start_lvl($output ) { return $output; }9 function end_lvl($output ) { return $output; }10 function start_el($output ) { return $output; }11 function end_el($output ) { return $output; }8 function start_lvl($output, $depth) { return $output; } 9 function end_lvl($output, $depth) { return $output; } 10 function start_el($output, $object, $depth = 0) { return $output; } 11 function end_el($output, $object, $depth = 0) { return $output; } 12 12 13 13 function _init() { … … 144 144 } 145 145 146 function start_el( ) { return ''; }147 function end_el( ) { return ''; }146 function start_el( $output, $object, $depth = 0 ) { return ''; } 147 function end_el( $output, $object, $depth = 0 ) { return ''; } 148 148 } 149 149
Note: See TracChangeset
for help on using the changeset viewer.