This file contains 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 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 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 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 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
{# Usage #} | |
{% set transform = { width: 700, height: 247, mode: 'crop' } %} | |
<img class="banner" src="{{ _self.transform(entry.bannerImage.first, transform) }}"> | |
{# Macro to prevent upscaling - something Craft doesn't support just yet... #} | |
{% macro transform(image, transform) %} | |
{% spaceless %} | |
{% set originalWidth = image.getWidth(false) %} | |
{% set transformedWidth = image.getWidth(transform) %} |
This file contains 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 | |
$channel = $_GET['id']; | |
$content = array(); | |
$fields_query = $this->EE->db->query("SELECT * FROM exp_channel_fields LEFT JOIN exp_channels ON exp_channel_fields.group_id = exp_channels.field_group WHERE exp_channels.channel_id = '$channel'"); | |
$entries_query = $this->EE->db->query("SELECT * FROM exp_channel_data cd INNER JOIN exp_channel_titles ct ON cd.entry_id = ct.entry_id WHERE cd.channel_id = '$channel'"); | |
$fields = $fields_query->result_array(); |
This file contains 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( | |
"Workflow" => "Workflow", | |
"Entry submitted for approval." => "Entry submitted for approval.", | |
"Could not submit for approval." => "Could not submit for approval.", | |
"Submission revoked." => "Submission revoked.", | |
"Could not revoke submission." => "Could not revoke submission.", | |
"Entry approved and published." => "Entry approved and published.", |
This file contains 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 FeedMeCustomSortPlugin extends BasePlugin | |
{ | |
// ========================================================================= | |
// PLUGIN INFO | |
// ========================================================================= | |
public function getName() |
This file contains 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 CustomUserDomainPlugin extends BasePlugin | |
{ | |
/* -------------------------------------------------------------- | |
* PLUGIN INFO | |
* ------------------------------------------------------------ */ | |
public function getName() |
This file contains 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 MyPluginNamePlugin extends BasePlugin | |
{ | |
/* -------------------------------------------------------------- | |
* PLUGIN INFO | |
* ------------------------------------------------------------ */ | |
public function getName() |
NewerOlder