wfStyle.php 285 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 <?php class wfStyle { /** * Returns the classes for the main content body of the page, adjusting for the paid status. * * @return string */ public static function contentClasses() { if (wfConfig::get('isPaid')) { return 'wf-col-xs-12'; } return 'wf-col-xs-12'; } }