Created
January 28, 2014 17:26
-
-
Save brandonkelly/8672116 to your computer and use it in GitHub Desktop.
A function for converting an entry in Craft to JSON
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 | |
public function getEntryJson(EntryModel $entry) | |
{ | |
$entryData = array(); | |
foreach ($entry->getType()->getFieldLayout()->getFields() as $field) | |
{ | |
$field = $field->getField(); | |
$handle = $field->handle; | |
$value = $entry->$handle; | |
if ($field instanceof BaseElementFieldType) | |
{ | |
$entryData[$handle] = array(); | |
foreach ($value as $relElement) | |
{ | |
$entryData[$handle][] = array( | |
'id' => $relElement->id, | |
'label' => (string) $relElement | |
); | |
} | |
} | |
else if ($field instanceof MatrixFieldType) | |
{ | |
$entryData[$handle] = array(); | |
foreach ($value as $block) | |
{ | |
$entryData[$handle][] = array( | |
// ... | |
); | |
} | |
} | |
else | |
{ | |
// Deal with Checkboxes and Multi-select fields | |
if ($value instanceof \ArrayObject) | |
{ | |
$value = array_merge($value); | |
} | |
if (is_array($value)) | |
{ | |
$entryData[$handle] = $value; | |
} | |
else | |
{ | |
// Let's just force anything else to a string, in case it's something like a SingleOptionFieldData class | |
$entryData[$handle] = (string) $value; | |
} | |
$entryData[$handle] = $value; | |
} | |
} | |
return JsonHelper::encode($entryData); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Scratch that was able to make some more progress and getting custom fields nicely on related elements regardless of type.
Still going through other field types but making progress on a plugin here
https://github.com/familiar-studio/craft-json-expand