You are here

function hackedProject::file_is_diffable in Hacked! 7.2

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

File

includes/hackedProject.inc, line 360

Class

hackedProject
Encapsulates 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);
}