You are here

public function NodeResourceFeedModelItem::getEnds in Services 6.3

Same name and namespace in other branches
  1. 6.2 services/node_service/node_resource.models.inc \NodeResourceFeedModelItem::getEnds()
  2. 7 services/node_service/node_resource.models.inc \NodeResourceFeedModelItem::getEnds()

Gets the created time for the node

Return value

int The created time of the node as a timestamp

Overrides ResourceTimeFeedModelItem::getEnds

File

servers/rest_server/includes/node_resource.models.inc, line 217
This file will parse a node resource feed And will also provide the necessary manip functions

Class

NodeResourceFeedModelItem

Code

public function getEnds() {
  return $this->node->created;
}