You are here

function hackedProject::file_is_diffable in Hacked! 6.2

Same name and namespace in other branches
  1. 7.2 includes/hackedProject.inc \hackedProject::file_is_diffable()
1 call to hackedProject::file_is_diffable()
hackedProject::compute_details in includes/hacked_project.inc
Return a nice detailed report.

File

includes/hacked_project.inc, line 302

Class

hackedProject
Ensapsulates a Hacked! project.

Code

function file_is_diffable($file) {
  $this
    ->hash_remote_project();
  $this
    ->hash_local_project();
  return $this->remote_files
    ->is_not_binary($file) && $this->local_files
    ->is_not_binary($file);
}