Delete unused method

This commit is contained in:
weryques 2018-02-28 15:21:53 -03:00
parent 58084759c0
commit 070b0931ed
1 changed files with 0 additions and 52 deletions

View File

@ -22,58 +22,6 @@ class TAINACAN_REST_Controller extends WP_REST_Controller {
return $object;
}
// /**
// * @param $entity
// *
// * @param $map
// * @param $context
// *
// * @return array
// */
// protected function get_only_needed_attributes($entity, $map, $context = null){
//
// $entity_prepared = [
// 'id' => $entity->get_id(),
// 'description' => $entity->get_description(),
// ];
//
// if($context === 'edit'){
// $entity_prepared['current_user_can_edit'] = $entity->can_edit();
// }
//
// if(array_key_exists('modification_date', $map)){
// $entity_prepared['modification_date'] = $entity->get_modification_date();
// }
//
// if(array_key_exists('creation_date', $map)){
// $entity_prepared['creation_date'] = $entity->get_creation_date();
// }
//
// if(array_key_exists('author_id', $map)){
// $entity_prepared['author_id'] = $entity->get_author_id();
// }
//
// if(array_key_exists('name', $map)){
// $entity_prepared['name'] = $entity->get_name();
// } elseif(array_key_exists('title', $map)){
// $entity_prepared['title'] = $entity->get_title();
// }
//
// if(array_key_exists('featured_image', $map)){
// $entity_prepared['featured_image'] = $entity->get_featured_img();
// }
//
// if(array_key_exists('columns', $map)){
// $entity_prepared['columns'] = $entity->get_columns();
// }
//
// if(array_key_exists('status', $map)){
// $entity_prepared['status'] = $entity->get_status();
// }
//
// return $entity_prepared;
// }
/**
* @param $request
*