コード例 #1
0
ファイル: Inputs.php プロジェクト: dafik/cc-tests-reverse
 private static function findLabelByValue(FormElement $input)
 {
     if ($input->getType() === 'submit' && $input->hasAttribute('value') && $input->getAttribute('value')) {
         return $input->getAttribute('value');
     }
     return false;
 }