Changes

Jump to: navigation, search

Medical Billing Wiki

1,384 bytes removed, 13:38, 1 December 2014
2. Search for the entry you want to add or edit, if not found you can click "create" the page for your search and add it to the wiki. If the page exists, you can click "edit" to add or submit changes to the page.
 
<div id="p-search" role="search">
<h3<?php $this->html( 'userlangattributes' ) ?>><label for="searchInput"><?php $this->msg( 'search' ) ?></label></h3>
<form action="<?php $this->text( 'wgScript' ) ?>" id="searchform">
<?php if ( $wgVectorUseSimpleSearch ) { ?>
<div id="simpleSearch">
<?php } else { ?>
<div>
<?php } ?>
<?php
echo $this->makeSearchInput( array( 'id' => 'searchInput' ) );
echo Html::hidden( 'title', $this->get( 'searchtitle' ) );
// We construct two buttons (for 'go' and 'fulltext' search modes), but only one will be
// visible and actionable at a time (they are overlaid on top of each other in CSS).
// * Browsers will use the 'fulltext' one by default (as it's the first in tree-order), which
// is desirable when they are unable to show search suggestions (either due to being broken
// or having JavaScript turned off).
// * The mediawiki.searchSuggest module, after doing tests for the broken browsers, removes
// the 'fulltext' button and handles 'fulltext' search itself; this will reveal the 'go'
// button and cause it to be used.
echo $this->makeSearchButton( 'fulltext', array( 'id' => 'mw-searchButton', 'class' => 'searchButton mw-fallbackSearchButton' ) );
echo $this->makeSearchButton( 'go', array( 'id' => 'searchButton', 'class' => 'searchButton' ) );
?>
</div>
</form>
</div>