File "wfStyle.php"
Full Path: /var/www/bvnghean.vn/save_bvnghean.vn/wp-content/plugins/wordfence/lib/wfStyle.php
File size: 285 bytes
MIME-type: text/x-php
Charset: utf-8
<?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';
}
}