76 lines
2.0 KiB
PHP
76 lines
2.0 KiB
PHP
<h1><?php echo __('Available Classes') ?></h1>
|
|
|
|
<label>Filter:</label>
|
|
<input type="text" id="api-filter-box" />
|
|
|
|
<script type="text/javascript">
|
|
(function($) {
|
|
$.fn.extend({
|
|
filter_content: function(search){
|
|
var search_regex = new RegExp(search,'gi');
|
|
|
|
// Run through each .class definition
|
|
$('.class', this).each(function(k, container){
|
|
if (search == '') {
|
|
// If search box is empty show everything without doing any regex
|
|
$(container).show();
|
|
$('li', container).show();
|
|
|
|
// Continue
|
|
return true;
|
|
}
|
|
|
|
// Run through every anchor
|
|
$('a', $(container)).each(function(k, anchor){
|
|
// Keep track of the li
|
|
var $parent = $(anchor).closest('li');
|
|
|
|
if ($(anchor).text().match(search_regex)) {
|
|
// Show the li and .class parent if its a match
|
|
$parent.show();
|
|
$(container).show();
|
|
} else {
|
|
// Otherwise we can only assume to hide the li
|
|
$parent.hide();
|
|
}
|
|
});
|
|
|
|
if ($('li:visible', $(container)).length == 0) {
|
|
// If there are not any visible li's, the entire .class section needs to hide
|
|
$(container).hide();
|
|
} else {
|
|
// Otherwise show the .class container
|
|
$(container).show();
|
|
}
|
|
});
|
|
},
|
|
|
|
api_filter: function(api_container_selector){
|
|
$(this).keyup(function(){
|
|
// Run the filter method on this value
|
|
$(api_container_selector).filter_content($(this).val());
|
|
});
|
|
}
|
|
})
|
|
})(jQuery);
|
|
|
|
$(document).ready(function(){
|
|
$('#api-filter-box').api_filter('#kodoc-main');
|
|
});
|
|
</script>
|
|
|
|
<div class="class-list">
|
|
|
|
<?php foreach ($classes as $class => $methods): $link = $route->uri(array('class' => $class)) ?>
|
|
<div class="class <?php echo Text::alternate('left', 'right') ?>">
|
|
<h2><?php echo HTML::anchor($link, $class) ?></h2>
|
|
<ul class="methods">
|
|
<?php foreach ($methods as $method): ?>
|
|
<li><?php echo HTML::anchor("{$link}#{$method}", "{$class}::{$method}") ?></li>
|
|
<?php endforeach ?>
|
|
</ul>
|
|
</div>
|
|
<?php endforeach ?>
|
|
|
|
</div>
|