| 48 |
array_push($this->data, array( "type"=>"blank" )); |
array_push($this->data, array( "type"=>"blank" )); |
| 49 |
} |
} |
| 50 |
|
|
| 51 |
function push_text( $text, $selected=FALSE ) { |
function push_text( $text, $selected=FALSE ) { |
| 52 |
array_push($this->data, array( "type"=>"text", "text"=>$text, |
array_push($this->data, array( "type"=>"text", "text"=>$text, |
| 53 |
"selected" => $selected )); |
"selected" => $selected )); |
| 54 |
} |
} |
| 55 |
|
|
| 71 |
|
|
| 72 |
$td = new TDtag; |
$td = new TDtag; |
| 73 |
$td->newline_after_opentag = FALSE; |
$td->newline_after_opentag = FALSE; |
| 74 |
$img = html_img("/phphtmllib/widgets/images/arrow.gif", 9, 9); |
$img = html_img("img/widgets/arrow.gif", 9, 9); |
| 75 |
$img->set_tag_attributes( array("vspace"=>5, "hspace"=>3)); |
$img->set_tag_attributes( array("vspace"=>5, "hspace"=>3)); |
| 76 |
$img->indent_flag = FALSE; |
$img->indent_flag = FALSE; |
| 77 |
$img->newline_after_opentag = FALSE; |
$img->newline_after_opentag = FALSE; |
| 106 |
"class" => "treenavspacer"); |
"class" => "treenavspacer"); |
| 107 |
$td = new TDtag( $attributes ); |
$td = new TDtag( $attributes ); |
| 108 |
$td->newline_after_opentag = FALSE; |
$td->newline_after_opentag = FALSE; |
| 109 |
$img = html_img("/phphtmllib/widgets/images/spacer.gif", 1, 1); |
$img = html_img("img/widgets/spacer.gif", 1, 1); |
| 110 |
$img->indent_flag = FALSE; |
$img->indent_flag = FALSE; |
| 111 |
$img->newline_after_opentag = FALSE; |
$img->newline_after_opentag = FALSE; |
| 112 |
$td->push( $img ); |
$td->push( $img ); |
| 129 |
|
|
| 130 |
foreach( $this->data as $nav) { |
foreach( $this->data as $nav) { |
| 131 |
$img_td = $this->build_img_td(); |
$img_td = $this->build_img_td(); |
| 132 |
$link_td = $this->build_link_td( $nav ); |
$link_td = $this->build_link_td( $nav); |
| 133 |
|
|
| 134 |
$table->push_row( $img_td, $link_td, " "); |
$table->push_row( $img_td, $link_td, " "); |
| 135 |
|
|
| 136 |
$spacer_td = $this->build_spacer_td(); |
$spacer_td = $this->build_spacer_td(); |
| 137 |
$table->push_row( $spacer_td ); |
$table->push_row( $spacer_td ); |
| 138 |
} |
} |
|
|
|
| 139 |
return $table; |
return $table; |
| 140 |
} |
} |
| 141 |
|
|
| 142 |
|
|
|
|
|
| 143 |
/** |
/** |
| 144 |
* function that will render the widget. |
* function that will render the widget. |
| 145 |
* |
* |