protected function getBreadcrumbBar(&$form, $form_state) { $form["Breadcrumbs"] = array("#prefix" => "<div id='breadcrumbs'>", "#suffix" => "</div>"); $form["Breadcrumbs"][LONGTAIL_KEY . BasicState::getID()] = array("#type" => "radio", "#id" => LONGTAIL_KEY . BasicState::getID(), "#printed" => true, "#name" => "breadcrumb", "#title" => BasicState::getTitle(), "#return_value" => BasicState::getID(), "#default_value" => $this->getID()); $form["Breadcrumbs"][LONGTAIL_KEY . AdvancedState::getID()] = array("#type" => "radio", "#id" => LONGTAIL_KEY . AdvancedState::getID(), "#name" => "breadcrumb", "#title" => AdvancedState::getTitle(), "#return_value" => AdvancedState::getID(), "#default_value" => $this->getID()); $form["Breadcrumbs"][LONGTAIL_KEY . LTASState::getID()] = array("#type" => "radio", "#id" => LONGTAIL_KEY . LTASState::getID(), "#name" => "breadcrumb", "#title" => LTASState::getTitle(), "#return_value" => LTASState::getID(), "#default_value" => $this->getID()); $form["Breadcrumbs"][LONGTAIL_KEY . PluginState::getID()] = array("#type" => "radio", "#id" => LONGTAIL_KEY . PluginState::getID(), "#name" => "breadcrumb", "#title" => PluginState::getTitle(), "#return_value" => PluginState::getID(), "#default_value" => $this->getID()); }
protected function getBreadcrumbBar() { ?> <script type="text/javascript"> jQuery(function() { jQuery("#breadcrumbs").buttonset(); }); </script> <div id="breadcrumbs" style="padding: 14px 15px 3px 0;"> <input type="radio" id="<?php echo LONGTAIL_KEY . BasicState::getID(); ?> " name="breadcrumb" <?php checked(BasicState::getID(), $this->getID()); ?> value="<?php echo BasicState::getID(); ?> " onchange="form.submit();"/> <label for="<?php echo LONGTAIL_KEY . BasicState::getID(); ?> "> <?php echo BasicState::getTitle(); ?> </label> <input type="radio" id="<?php echo LONGTAIL_KEY . AdvancedState::getID(); ?> " name="breadcrumb" <?php checked(AdvancedState::getID(), $this->getID()); ?> value="<?php echo AdvancedState::getID(); ?> " onchange="form.submit();" /> <label for="<?php echo LONGTAIL_KEY . AdvancedState::getID(); ?> "> <?php echo AdvancedState::getTitle(); ?> </label> <input type="radio" id="<?php echo LONGTAIL_KEY . LTASState::getID(); ?> " name="breadcrumb" <?php checked(LTASState::getID(), $this->getID()); ?> value="<?php echo LTASState::getID(); ?> " onchange="form.submit();" /> <label for="<?php echo LONGTAIL_KEY . LTASState::getID(); ?> "> <?php echo LTASState::getTitle(); ?> </label> <input type="radio" id="<?php echo LONGTAIL_KEY . PluginState::getID(); ?> " name="breadcrumb" <?php checked(PluginState::getID(), $this->getID()); ?> value="<?php echo PluginState::getID(); ?> " onchange="form.submit();" /> <label for="<?php echo LONGTAIL_KEY . PluginState::getID(); ?> "> <?php echo PluginState::getTitle(); ?> </label> </div> <?php }