ConfigParser parser = new ConfigParser(YiiStormProjectComponent.getInstance(project));
if (yiiLitePath.getText().length() > 0) {
if (parser.testYiiLitePath(yiiLitePath.getText())) {
yiiLitePath.setBackground(JBColor.GREEN);
if (yiiConfigPath.getText().length() > 0) {
if (parser.testYiiConfigPath(yiiConfigPath.getText())) {
yiiConfigPath.setBackground(JBColor.GREEN);
} else {
yiiConfigPath.setBackground(JBColor.PINK);
}
} else {