You are here

public function Content::getFiles in GatherContent 8.3

Same name and namespace in other branches
  1. 8 src/DAO/Content.php \Drupal\gathercontent\DAO\Content::getFiles()

Get list of files.

Parameters

int $content_id: ID of content, we want to fetch files for.

Return value

array Array with accounts.

File

src/DAO/Content.php, line 187

Class

Content
Class Account.

Namespace

Drupal\gathercontent\DAO

Code

public function getFiles($content_id) {
  $accounts = [];
  try {
    $response = $this->client
      ->get('/items/' . $content_id . '/files');
    if ($response
      ->getStatusCode() === 200) {
      $data = json_decode($response
        ->getBody());
      $accounts = $data->data;
    }
    else {
      drupal_set_message(t("User with provided credentials wasn't found."), 'error');
    }
  } catch (\Exception $e) {
    drupal_set_message($e
      ->getMessage(), 'error');
    \Drupal::logger('gathercontent')
      ->error($e
      ->getMessage(), []);
  }
  return $accounts;
}