Main__1_5.php in RESTful 7.2
File
tests/modules/restful_test/src/Plugin/resource/entity_test/main/v1/Main__1_5.php
View source
<?php
namespace Drupal\restful_test\Plugin\resource\entity_test\main\v1;
use Drupal\restful\Plugin\resource\ResourceEntity;
use Drupal\restful\Plugin\resource\ResourceInterface;
class Main__1_5 extends ResourceEntity implements ResourceInterface {
protected function publicFields() {
$public_fields = parent::publicFields();
$public_fields['process_callbacks'] = array(
'wrapper_method' => 'label',
'wrapper_method_on_entity' => TRUE,
'process_callbacks' => array(
array(
$this,
'invalidProcessCallback',
),
),
);
return $public_fields;
}
}
Classes
Name |
Description |
Main__1_5 |
Class Main__1_5
@package Drupal\restful_test\Plugin\resource |