first commit
This commit is contained in:
14
wp/wp-content/plugins/wordfence/lib/wfStyle.php
Normal file
14
wp/wp-content/plugins/wordfence/lib/wfStyle.php
Normal file
@@ -0,0 +1,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';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user