getRelativePath()), array('code', 'file' => $i), array('class' => 'view-code', 'rel' => $file->path)); ?>
operation === CodeFile::OP_OVERWRITE): ?>
$i), array('class' => 'view-code label label-warning', 'rel' => $file->path)); ?>
|
operation === CodeFile::OP_SKIP) {
echo 'unchanged';
} else {
echo $file->operation;
}
?>
|
operation === CodeFile::OP_SKIP) {
echo ' ';
} else {
$key = md5($file->path);
echo Html::checkBox("answers[$key]", isset($answers) ? isset($answers[$key]) : ($file->operation === CodeFile::OP_NEW));
}
?>
|