You are here

public function NodeResourceFeedModel::valid in Services 6.3

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

File

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

Class

NodeResourceFeedModel
@file This file will parse a node resource feed And will also provide the necessary manip functions

Code

public function valid() {

  // It's safe to use current as there never should be a boolean
  // in the node array.
  return current($this->nodes) !== FALSE;
}