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
<html> | |
<head> | |
<link rel="stylesheet" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css"> | |
<style type="text/css"> | |
* {box-sizing:border-box;} | |
html, body {font-size:14px;width:100%;height:100%;margin:0;padding:0;} | |
.tabular {width:100%;height:100%;display:table;} | |
.cellular {width:100%;height:100%;display:table-cell;vertical-align:middle;text-align:center;} | |
.container {text-align:right;position:relative;display:inline-block;width:100%;max-width:90%;} | |
main {padding:1rem;text-align:left;font-size:1rem;line-height:1;position:absolute;top:0;left:0;bottom:0;width:65%;} |
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
/** | |
* Consider this function the place where you go through and customize things | |
* after an external script has created some defaults, but you need to customize | |
* things. Everything has to occur w/in this function. If there are things you | |
* would change entirely to make it more understandable, do so. Also, assume you | |
* can use the latest ECMA script standards (no shitty IE8 support, or 9 for | |
* that matter). | |
*/ | |
runtime.initialize(function( $, markupData ){ |
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
/** | |
* Consider this function the place where you go through and customize things | |
* after an external script has created some defaults, but you need to customize | |
* things. Everything has to occur w/in this function. If there are things you | |
* would change entirely to make it more understandable, do so. Also, assume you | |
* can use the latest ECMA script standards (no shitty IE8 support, or 9 for | |
* that matter). | |
*/ | |
runtime.initialize(function( $, markupData ){ |
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
SET @startDate='2015-03-01'; | |
SET @dayLimit='7'; | |
SET @calendarIDs='1,2'; | |
SELECT | |
_eventList._syntheticDate, | |
_eventList.eventID, | |
_eventList.eventTimeID, | |
_eventList.computedStartUTC, |
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
#!/usr/bin/env php | |
<?php | |
use Concrete\Core\Cache\Cache; | |
use Concrete\Core\Package\Package; | |
// Setup as ephemeral cache during install; error logging, constant definitions | |
require_once(__DIR__ . '/_shared.php'); | |
fwrite(STDOUT, "\n************* BEGINNING AFTER_EXEC HOOK *************\n"); |
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 | |
return array( | |
'debug' => array( | |
'detail' => 'debug' | |
), | |
'cache' => array( | |
'levels' => array( | |
'expensive' => array( | |
'drivers' => array( |
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 | |
/** | |
* Ajax data accessors | |
*/ | |
namespace Concrete\Package\Focal\Ajax { | |
defined('C5_EXECUTE') or die(_("Access Denied.")); | |
use Controller; | |
class Data extends Controller { |
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(); | |
} |
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; | |
use Loader; | |
use Package; | |
use PageType; | |
use PageTemplate; | |
use Concrete\Core\Page\Theme\Theme; | |
use Concrete\Core\Page\Type\PublishTarget\Type as PublishTargetType; |
NewerOlder