Files
medicalalert-web-reloaded/wp/wp-content/plugins/wordfence/lib/wfStyle.php
Rachit Bhargava 5d0f0734d8 first commit
2023-07-21 17:12:10 -04:00

14 lines
285 B
PHP

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