Created
November 18, 2014 21:32
-
-
Save jhartman86/aa1715b7fbef82e22c89 to your computer and use it in GitHub Desktop.
gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Concrete\Package\Focal\Theme\Focalize; | |
class PageTheme extends \Concrete\Core\Page\Theme\Theme { | |
protected $pThemeGridFrameworkHandle = 'bootstrap3'; | |
public function __construct(){ | |
parent::__construct(); | |
} | |
/** | |
* @return array|void | |
*/ | |
public function getThemeAreaClasses(){ | |
return array( | |
'Solid Green' => array('background-green'), | |
'Solid Blue' => array('background-blue'), | |
'Solid Red' => array('background-red') | |
); | |
} | |
public function getThemeBlockClasses(){ | |
return array( | |
'content' => 'fullzy-yo' | |
); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment