Skip to content

Instantly share code, notes, and snippets.

@jhartman86
Created November 18, 2014 21:32
Show Gist options
  • Save jhartman86/aa1715b7fbef82e22c89 to your computer and use it in GitHub Desktop.
Save jhartman86/aa1715b7fbef82e22c89 to your computer and use it in GitHub Desktop.
gist
<?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