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 | |
| if ( !defined('AREA') ) { die('Access denied'); } | |
| if($mode == cart) { | |
| $_SESSION['cart']['skip_notification'] = TRUE; | |
| } |
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
| Name: Flash | |
| Serial: eNrzzU/OLi0odswsqnHLSSzOqDGoca7JKCkpsNLXLy8v1ytJTczVLUotKNFLzs8FAJHYETc= | |
| if anyone wants to thank ETH: 0x527c2aB55b744D6167dc981576318af96ed26676 | |
| Thank you! |
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 | |
| class Category extends DataObject | |
| { | |
| private static $db = array( | |
| 'Title' => 'Varchar(255)' | |
| ); | |
| private static $belongs_many_many = array( | |
| 'CaseStudies' => 'CaseStudy', |
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 | |
| class CommentingControllerExtension extends DataExtension { | |
| public function alterCommentForm($form) { | |
| $form->fields->removeByName('URL'); | |
| } | |
| } |
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 | |
| global $project; | |
| $project = 'mysite'; | |
| global $database; | |
| $database = ''; | |
| require_once('conf/ConfigureFromEnv.php'); |
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
| class Page_Controller extends ContentController { | |
| private static $allowed_actions = array( | |
| 'LandingPage' | |
| ); | |
| public function LandingPage() { | |
| $this->customise(array( | |
| 'Title' => $this->Title', | |
| 'Content' => $this->Content' |
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 | |
| global $project; | |
| $project = 'mysite'; | |
| global $database; | |
| $database = ''; | |
| require_once('conf/ConfigureFromEnv.php'); |
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 | |
| class ImageTextBlock extends Block { | |
| private static $db = array( | |
| 'Title' => 'Varchar(255)', | |
| 'Content' => 'HTMLText' | |
| ); | |
| private static $has_one = array( | |
| 'Image' => 'Image' | |
| ); | |
| } |
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
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>DB-Convert</title> | |
| <style> | |
| body { font-family:"Courier New", Courier, monospace;" } | |
| </style> | |
| </head> | |
| <body> |
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
| // FONT MIXIN | |
| @mixin Font($Font, $FontFallBack, $Size, $Weight, $Style, $Colour) { | |
| font-family: $Font, $FontFallBack; | |
| font-size: $Size; | |
| font-weight: $Weight; | |
| font-style: $Style; | |
| color: $Colour; | |
| } | |
| body { | |
| @include Font('Open Sans', sans-serif, 16px, 500, normal, #000); |
NewerOlder