You are here

function hackedProject::title in Hacked! 8.2

Get the Human readable title of this project.

4 calls to hackedProject::title()
hackedProject::compute_report in src/hackedProject.php
Return a nice report, a simple overview of the status of this project.
hackedProject::download_remote_project in src/hackedProject.php
Downloads the remote project to be hashed later.
hackedProject::hash_local_project in src/hackedProject.php
Hash the local version of the project.
hackedProject::hash_remote_project in src/hackedProject.php
Hashes the remote project downloaded earlier.

File

src/hackedProject.php, line 63

Class

hackedProject
Encapsulates a Hacked! project.

Namespace

Drupal\hacked

Code

function title() {
  $this
    ->identify_project();
  return isset($this->project_info['title']) ? $this->project_info['title'] : $this->name;
}