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
| instagram.com/{username}?__a=1 |
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 | |
| // Manually specify which contexts/nodes should have a margin below in the :nth-child() part. | |
| $modx->regClientStartupHTMLBlock(' | |
| <style> | |
| #modx-leftbar-tabpanel > .x-tab-panel-bwrap {box-shadow:none;} | |
| .x-tree-root-node {background-color:#f2f2f2;} | |
| .x-tree-root-node > .x-tree-node {background-color:#fff; box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);} | |
| .x-tree-root-node > .x-tree-node:nth-child(3) { margin-bottom:30px;} | |
| .x-tree-root-node > .x-tree-node:nth-child(6) { margin-bottom:30px;} | |
| </style> |
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
| version: '2' | |
| services: | |
| web: | |
| image: php:7.1.7-apache | |
| ports: | |
| - 80:80 | |
| volumes: | |
| - .:/var/www/html | |
| db: | |
| image: mysql |
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 | |
| /** | |
| * eventsCalendar2 | |
| * | |
| * Copyright 2012 by Vasliy Naumkin <bezumkin@yandex.ru> | |
| * | |
| * eventsCalendar2 is free software; you can redistribute it and/or modify it under the | |
| * terms of the GNU General Public License as published by the Free Software | |
| * Foundation; either version 2 of the License, or (at your option) any later | |
| * version. |
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 | |
| // Require composer autoloader for guzzle | |
| require dirname(dirname(dirname(dirname(__FILE__)))).'/model/libs/vendor/autoload.php'; | |
| use GuzzleHttp\Client; | |
| class GetTicketsProcessor extends modProcessor { | |
| /** @var string $defaultSortField The default field to sort by */ | |
| public $defaultSortField = 'id'; | |
| /** @var string $defaultSortDirection The default direction to sort */ | |
| public $defaultSortDirection = 'ASC'; | |
| /** @var string $apiUrl URL of the API */ |