You are here

function hackedProject::title in Hacked! 7.2

Same name and namespace in other branches
  1. 6.2 includes/hacked_project.inc \hackedProject::title()

Get the Human readable title of this project.

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

File

includes/hackedProject.inc, line 48

Class

hackedProject
Encapsulates a Hacked! project.

Code

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