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 Craft; | |
| class SmartMapPlugin extends BasePlugin | |
| { | |
| public function init() | |
| { | |
| Craft::import('plugins.smartmap.integrations.feedme.fields.SmartMap_AddressFeedMeFieldType'); | |
| } |
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 | |
| // Get all XML files in directory | |
| $files = glob('data/*xml'); | |
| $jsons = array(); | |
| if (isset($_GET['start']) && isset($_GET['end'])) { | |
| $start = $_GET['start']; | |
| $end = $_GET['end']; |
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 lang="en"> | |
| <head> | |
| <!-- Responsive-ness --> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <!-- SE-Oh --> | |
| {% include '_includes/seo_meta' %} | |
| </head> |
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 | |
| // Turn off all error reporting | |
| error_reporting(0); | |
| $dir = new DirectoryIterator($folder); | |
| $json = array(); | |
| foreach ($dir as $index => $fileinfo) { |
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 modules\vizymodule\nodes; | |
| use verbb\vizy\nodes\BulletList; | |
| class CustomBulletList extends BulletList | |
| { | |
| // Properties | |
| // ========================================================================= |
OlderNewer