Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download
<?php namespace ProcessWire;class JqueryTableSorter extends ModuleJS {public static function getModuleInfo() {return array('title' => 'jQuery Table Sorter Plugin','version' => 221,'summary' => 'Provides a jQuery plugin for sorting tables.','href' => 'http://mottie.github.io/tablesorter/',);}// note ModuleJS automatically loads any JS or CSS files with the same basename as this modulepublic function __construct() {$this->addComponents(array('widgets' => 'widgets.min.js'));}}