Example #1
0
function JB_delete_candidate_files($id)
{
    $sql = "select * from form_fields where form_id=5 ";
    $result = JB_mysql_query($sql) or die(mysql_error());
    while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
        $field_id = $row['field_id'];
        $field_type = $row['field_type'];
        if ($field_type == "FILE") {
            JB_delete_file_from_field_id("users", "ID", $id, $field_id);
        }
        if ($field_type == "IMAGE") {
            JB_delete_image_from_field_id("users", "ID", $id, $field_id);
        }
    }
}
Example #2
0
function JB_delete_post_files($post_id)
{
    $sql = "select * from form_fields where form_id=1 ";
    $result = JB_mysql_query($sql) or die(mysql_error());
    while ($row = mysql_fetch_array($result, MYSQL_ASSOC)) {
        $field_id = $row['field_id'];
        $field_type = $row['field_type'];
        if ($field_type == "FILE") {
            JB_delete_file_from_field_id("posts_table", "post_id", $post_id, $field_id);
        }
        if ($field_type == "IMAGE") {
            JB_delete_image_from_field_id("posts_table", "post_id", $post_id, $field_id);
        }
    }
}
Example #3
0
 function get_sql_update_values($table_name, $primary_key_name, $primary_key_id, $user_id, &$assign)
 {
     $fields =& JB_schema_get_static_fields($this->form_id, JB_DB_MAP);
     foreach ($fields as $field) {
         if ($field['field_type'] == 'ID') {
             continue;
             // do not update the id
         }
         if (isset($assign[$field['field_id']])) {
             $str .= "{$comma} `" . $field['field_id'] . "` = '" . JB_escape_sql($assign[$field['field_id']]) . "' ";
             $comma = ',';
         }
     }
     foreach ($this->tag_to_field_id as $tag => $field) {
         if (!is_numeric($field['field_id']) || $field['field_type'] == 'BLANK' || $field['field_type'] == 'SEPERATOR' || $field['field_type'] == 'NOTE') {
             continue;
         }
         $tmp = '';
         $comma = '';
         switch ($field['field_type']) {
             case 'GMAP':
                 $str .= ", `" . $field['field_id'] . "_lat` = '" . JB_escape_sql($_REQUEST[$field['field_id'] . '_lat']) . "', `" . $field['field_id'] . "_lng` = '" . JB_escape_sql($_REQUEST[$field['field_id'] . '_lng']) . "', `" . $field['field_id'] . "` = '" . JB_escape_sql($_REQUEST[$field['field_id'] . '_zoom']) . "' ";
                 break;
             case 'IMAGE':
                 if ($_FILES[$field['field_id']]['name'] != '') {
                     $_REQUEST[$field['field_id']] = $file_name;
                     // delete the old image
                     if ($primary_key_id != '') {
                         JB_delete_image_from_field_id($table_name, $primary_key_name, $primary_key_id, $field['field_id']);
                     }
                     $file_name = JB_saveImage($field['field_id'], $user_id);
                     $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($file_name) . "' ";
                 }
                 break;
             case 'FILE':
                 if ($_FILES[$field['field_id']]['name'] != '') {
                     // delete the old file
                     if ($primary_key_id != '') {
                         JB_delete_file_from_field_id($table_name, $primary_key_name, $primary_key_id, $field['field_id']);
                     }
                     $file_name = JB_saveFile($field['field_id'], $user_id);
                     $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($file_name) . "' ";
                 }
                 break;
             case 'DATE':
                 $day = $_REQUEST[$field['field_id'] . "d"];
                 $month = $_REQUEST[$field['field_id'] . "m"];
                 $year = $_REQUEST[$field['field_id'] . "y"];
                 $temp_date = $year . "-" . $month . "-" . $day;
                 if ($temp_time = strtotime($temp_date . ' 00:00:00')) {
                     // convert the date timezone to GMT
                     $temp_time = $temp_time - 3600 * JB_GMT_DIF;
                     $temp_date = gmdate('Y-m-d H:i:s', $temp_time);
                 }
                 $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($temp_date) . "' ";
                 break;
             case 'DATE_CAL':
                 // Convert SCW Date to ISO Date format before saving in the DB
                 $temp_date = JB_SCWDate_to_ISODate($_REQUEST[$field['field_id']]);
                 $temp_date = trim($_REQUEST[$field['field_id']]);
                 if (strlen($temp_date) > 0) {
                     $temp_date = JB_SCWDate_to_ISODate($temp_date);
                     if ($temp_time = strtotime($temp_date . ' 23:59:59')) {
                         // convert the date timezone to GMT
                         $temp_time = $temp_time - 3600 * JB_GMT_DIF;
                         $temp_date = gmdate('Y-m-d H:i:s', $temp_time);
                     } else {
                         $temp_date = '';
                     }
                 }
                 $str .= ", `" . JB_escape_sql($field['field_id']) . "` = '" . JB_escape_sql($temp_date) . "' ";
                 break;
             case 'CHECK':
                 $comma = '';
                 $tmp = '';
                 $selected_codes = array();
                 $selected_codes = $_REQUEST[$field['field_id']];
                 // the field comes in as an array
                 for ($i = 0; $i < sizeof($selected_codes); $i++) {
                     if ($i > 0) {
                         $comma = ',';
                     }
                     $tmp .= $comma . $selected_codes[$i] . "";
                 }
                 $_REQUEST[$field['field_id']] = $tmp;
                 $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($_REQUEST[$field['field_id']]) . "' ";
                 break;
             case 'MSELECT':
                 $tmp = '';
                 $comma = '';
                 $selected_codes = array();
                 $selected_codes = $_REQUEST[$field['field_id']];
                 // the field comes in as an array
                 for ($i = 0; $i < sizeof($selected_codes); $i++) {
                     if ($i > 0) {
                         $comma = ',';
                     }
                     $tmp .= $comma . $selected_codes[$i] . "";
                 }
                 $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($tmp) . "' ";
                 break;
             case 'SKILL_MATRIX':
                 JB_save_skill_matrix_data($field['field_id'], $primary_key_id, $user_id);
                 $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($_REQUEST[$field['field_id']]) . "' ";
                 break;
             case 'TEXT':
             case 'EDITOR':
                 $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($_REQUEST[$field['field_id']]) . "' ";
                 break;
             case 'URL':
                 $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql(strip_tags($_REQUEST[$field['field_id']])) . "' ";
                 break;
             case 'NUMERIC':
             case 'CURRENCY':
             case 'INTEGER':
                 // featch only the numerical part
                 preg_match('/[\\+-]?(\\d+(\\.)?(\\d+)?)/', $_REQUEST[$field['field_id']], $m);
                 if ($m[1] === '0') {
                     // string zero
                     $str .= ", `" . $field['field_id'] . "` = '0' ";
                 } elseif (!$m[1]) {
                     // empty
                     $str .= ", `" . $field['field_id'] . "` = NULL ";
                 } else {
                     $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($m[1]) . "' ";
                 }
                 break;
             case 'YOUTUBE':
                 // extract the video ID form the URL
                 // eg. http://www.youtube.com/watch?v=iuTNdHadwbk - extract iuTNdHadwbk
                 if (preg_match('/watch\\?v=([a-z0-9\\-_]+)/i', $_REQUEST[$field['field_id']], $m)) {
                     $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($m[1]) . "' ";
                 } elseif (preg_match('/src="http:\\/\\/www\\.youtube\\.com\\/v\\/([a-z0-9\\-_]+)/i', $_REQUEST[$field['field_id']], $m)) {
                     $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($m[1]) . "' ";
                 } elseif (preg_match('#http:\\/\\/youtu\\.be\\/([a-z0-9\\-_]+)\\/?#i', $_REQUEST[$field['field_id']], $m)) {
                     $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($m[1]) . "' ";
                 } else {
                     preg_match('/([a-z0-9\\-_]+)/i', $_REQUEST[$field['field_id']], $m);
                     $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($m[1]) . "' ";
                 }
                 break;
             default:
                 $custom_sql = false;
                 // your plugin would have to generate $custom_sql string like the one after the else { starement
                 JBPLUG_do_callback('append_sql_update_values', $custom_sql, $field, $table_name, $primary_key_name, $primary_key_id, $user_id);
                 if ($custom_sql !== false) {
                     $str .= $custom_sql;
                 } else {
                     $str .= ", `" . $field['field_id'] . "` = '" . JB_escape_sql($_REQUEST[$field['field_id']]) . "' ";
                 }
                 break;
         }
     }
     return $str;
 }