blob: 8b4313bbac44e78fec3da73ff5477881844d6bf5 [file] [log] [blame]
kitlod66aa992010-01-22 17:18:19 +00001<?php
2/*******************************************************************************
3 * Copyright (c) 2010 Eclipse Foundation and others.
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Eclipse Foundation - Initial API and implementation
11 * Kit Lo (IBM) - Bug 299402, Extract properties files from Eclipse project update sites for translation
12*******************************************************************************/
13require_once("cb_global.php");
14
15$return = array();
16
17$project_id = getHTTPParameter("project_id", "POST");
18$version = getHTTPParameter("version", "POST");
19
20$query = "SELECT is_map_file FROM map_files WHERE project_id = " . returnQuotedString(sqlSanitize($project_id, $dbh)) .
21 " AND version = " . returnQuotedString(sqlSanitize($version, $dbh)) . " LIMIT 1";
22
kitlo2c8d8a92018-04-19 13:25:09 -040023$res = mysqli_query($dbh, $query);
kitlo1d027092018-04-19 17:44:07 -040024if (mysqli_affected_rows($dbh) > 0) {
droya3815a52019-09-25 12:49:18 -040025 while ($line = mysqli_fetch_array($res, MYSQLI_ASSOC)) {
kitlod66aa992010-01-22 17:18:19 +000026 echo $line['is_map_file'];
27 }
28} else {
29 echo "No plugin exclude patterns found for $project_id $version.";
30}
31?>