GIF94;
| Path : /var/www/wordpress/wp-content/plugins/oxygen/plugin/dynamic-data/fields/post/ |
| Current File : /var/www/wordpress/wp-content/plugins/oxygen/plugin/dynamic-data/fields/post/post-custom-field.php |
<?php
namespace Breakdance\DynamicData;
class PostCustomField extends StringField
{
/**
* @inheritDoc
*/
public function label()
{
return __('Custom Field', 'breakdance');
}
/**
* @inheritDoc
*/
public function category()
{
return __('Post', 'breakdance');
}
/**
* @inheritDoc
*/
public function slug()
{
return 'post_custom_field';
}
/**
* @inheritDoc
*/
public function controls()
{
return [
\Breakdance\Elements\control('key', __('Key', 'breakdance'), [
'type' => 'text',
'layout' => 'vertical',
]),
];
}
/**
* @inheritDoc
*/
public function returnTypes()
{
return ['string', 'url', 'google_map'];
}
/**
* @inheritDoc
*/
public function handler($attributes): StringData
{
if (empty($attributes['key'])) {
return StringData::emptyString();
}
$value = get_post_meta(get_the_ID(), $attributes['key'], true);
if (!$value) {
return StringData::emptyString();
}
return StringData::fromString($value);
}
/**
* @inheritDoc
*/
function proOnly() {
return false;
}
}