You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
285 B

<?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';
}
}