Home | History | Annotate | Download | only in contrib

Lines Matching defs:ck

540             foreach($language_data['COMMENT_SINGLE'] as $ck => $cv) {
541 if(!is_int($ck)) {
542 report_error(TYPE_WARNING, "Language file contains an key '$ck' in \$language_data['COMMENT_SINGLE'] that is not integer!");
545 report_error(TYPE_WARNING, "Language file contains an non-string entry at \$language_data['COMMENT_SINGLE'][$ck]!");
547 if(!isset($language_data['STYLES']['COMMENTS'][$ck])) {
548 report_error(TYPE_WARNING, "Language file contains no \$language_data['STYLES']['COMMENTS'] specification for comment group $ck!");
552 foreach($language_data['COMMENT_REGEXP'] as $ck => $cv) {
553 if(!is_int($ck)) {
554 report_error(TYPE_WARNING, "Language file contains an key '$ck' in \$language_data['COMMENT_REGEXP'] that is not integer!");
557 report_error(TYPE_WARNING, "Language file contains an non-string entry at \$language_data['COMMENT_REGEXP'][$ck]!");
559 if(!isset($language_data['STYLES']['COMMENTS'][$ck])) {
560 report_error(TYPE_WARNING, "Language file contains no \$language_data['STYLES']['COMMENTS'] specification for comment group $ck!");
564 foreach($language_data['STYLES']['COMMENTS'] as $ck => $cv) {
565 if($ck != 'MULTI' && !isset($language_data['COMMENT_SINGLE'][$ck]) &&
566 !isset($language_data['COMMENT_REGEXP'][$ck])) {
567 report_error(TYPE_NOTICE, "Language file contains an superfluous \$language_data['STYLES']['COMMENTS'] specification for Single Line or Regular-Expression Comment key $ck!");