Esempio n. 1
0
 public function getForm($action)
 {
     global $allGroupAvilable;
     global $pageList;
     global $module_id;
     $res = "";
     $res .= "<div class='box box-danger form-horizontal'><div class='box-body'>";
     if ($this->steps == true) {
         $res .= $this->create_gen_path($_SESSION['cmsMID'], $this->stepsArray, $this->stepsPages);
     }
     if ($this->AsForm == true) {
         $res .= "<form method='post' class='{$this->cssForm}' name='{$this->nameForm}' id='{$this->idForm}'><input type='hidden' name='backLink' value='" . $_SERVER['HTTP_REFERER'] . "'>";
     }
     $res .= "<div class='Form-Field form-generate-voila {$this->cssForm}'>";
     $countColumns = 0;
     if ($this->countCell > 0) {
         $countColumns = round(count($this->columns) / $this->countCell);
         $res .= "<div class='{$this->cellClassWithCount}'>";
     }
     $i = 0;
     $classSubmit = "";
     $dataObjectForPageBuilder = "";
     foreach ($this->columns as $column) {
         if ($this->types[$column] == "pageBuilder") {
             $classSubmit = "SubmitPageBuilder";
             $currentGroup = $_REQUEST['gr_id_pg'];
             $dataObjectForPageBuilder = " data-cuuenr-file='" . basename($_SERVER["PHP_SELF"]) . "' data-cms-id='{$module_id}' data-avilable-groups='{$allGroupAvilable}' data-current-page='{$currentGroup}' data-list-page='{$pageList}' ";
         }
         if (!$countColumns) {
             $res .= "<div class='{$this->ClassMain}'>";
         }
         if ($countColumns > 0) {
             if (fmod($i, $countColumns) == 0 && $i != 0) {
                 $res .= "</div><div class='{$this->cellClassWithCount}'>";
             }
         }
         $i++;
         $res .= "<div class='form-group'>";
         $span = "";
         if ($this->requireds[$column] == 'required' || in_array($column, $this->requireds)) {
             $span = "<span class='red  required' >* </span>";
         } else {
             $span = "<span class=' req'>&nbsp; </span>";
         }
         $SubMainClass = $this->SubMain[0];
         $SubMainClass2 = $this->SubMain[2];
         $labelClass = "control-label";
         if ($this->types[$column] == "pageBuilder") {
             $SubMainClass = $SubMainClass2 = "col-sm-12";
             $labelClass = "";
         } else {
             if ($this->LangEffected[$column] != "") {
                 $lang_org = str_replace($this->LangEffected[$column] . "_", "", $column);
                 $orgin_col = str_replace("_" . $lang_org, "", $column);
                 $res .= "<label class='" . $SubMainClass . " {$labelClass}'>" . $span . $this->getConstant($orgin_col, $this->constants[$orgin_col]) . " (" . $this->getConstant($lang_org) . ")" . ": </label>";
             } else {
                 $res .= "<label class='" . $SubMainClass . " {$labelClass}'>" . $span . $this->getConstant($column, $this->constants[$column]) . ": </label>";
             }
         }
         $field_ob = new field();
         if ($this->types[$column] == 'map') {
             $field_ob->setMap($this->values[$column]);
         }
         $field_ob->SetIdField($column);
         $field_ob->SetNameField($column);
         $field_ob->SetCssClass($this->classes[$column] . " form-control");
         $field_ob->SetValueField($this->values[$column]);
         $field_ob->SetTypeField($this->types[$column]);
         $field_ob->SetTable($this->extendTables[$column][0]);
         $field_ob->SetTname($this->extendTables[$column][1]);
         $field_ob->SetTvalue($this->extendTables[$column][2]);
         $field_ob->setWhere($this->extendTables[$column][3]);
         $field_ob->SetRequiredField($this->requireds[$column]);
         if (!$this->extendTables[$column][4]) {
             $this->extendTables[$column][4] = true;
         }
         $field_ob->setWithAdd($this->extendTables[$column][4]);
         $field_ob->SetExtra($this->extra[$column]);
         $field_ob->SetInputLength($this->legths[$column]);
         $res .= "<div class='" . $SubMainClass2 . "'>";
         $res .= $field_ob->getField();
         $res .= "<small class='field-description'>" . $this->FieldDescription[$column] . "</small>";
         $res .= "</div></div>";
         // echo $this->tableName;
         //    global $fpdo;
         //  $get_description= $fpdo->from('cms_module_fields')->where("table_id='".$_SESSION['cmsMID']."'")->fetch();
         //  echo $get_description['description'];
         $res .= "<div class='hr'><hr></div>";
         if (!$countColumns) {
             $res .= "</div>";
         }
     }
     if ($this->countCell) {
         $res .= "</div>";
     }
     $res .= $this->AppendToForm;
     $res .= "  <div class='col-sm-12'>";
     $res .= "   <input type='hidden' value='{$action}' name='action' id='action'>";
     if ($this->backBtn == true) {
         $res .= $this->back($this->backLink);
         /* alaa */
     }
     if ($this->submit == true) {
         if ($this->steps == true) {
             $res .= "<Button type='submit' class='btn btn-submit {$classSubmit}' data-btn-type='continue' {$dataObjectForPageBuilder} name='saveContinue' value='saveContinue'>" . $this->getConstant("save_continue") . "</button>&nbsp;";
             $res .= "<Button type='submit' class='btn btn-new {$classSubmit}' data-btn-type='close' {$dataObjectForPageBuilder} name='saveClose' >" . $this->getConstant("save_close") . "</button>";
         } else {
             $res .= "<Button type='submit' class='btn btn-submit {$dataObjectForPageBuilder} {$classSubmit}' >" . $this->getConstant("save") . "</button>";
         }
     }
     $res .= "  </div>";
     $res .= " </div>";
     if ($this->AsForm == true) {
         $res .= "</form>";
     }
     $res .= "</div></div>";
     return $res;
 }
Esempio n. 2
0
</small>
                                        </div></div>
                                </td>
                            </tr>


                            <tr>
                                <td colspan="4">
                                    <div class="form-group"><label class="col-xs-3 control-label"><span class="red  required"> </span><?php 
echo $utils->getConstant("sortable");
?>
: </label>
                                        <div class="col-sm-9">
                                            <?php 
$field_ob3 = new field();
$field_ob3->SetIdField('sortable');
$field_ob3->SetNameField('sortable');
$field_ob3->SetTypeField('select');
$field_ob3->SetTable();
$field_ob3->SetCssClass("form-control");
$field_ob3->setWhere();
$field_ob3->SetExtra($extra_sortable);
echo $field_ob3->getField();
?>
                                         <small class="field-description"><?php 
echo constant("sortable_desc");
?>
</small>   
                                        </div></div>
                                </td>
                            </tr>
Esempio n. 3
0
   public function GetList($parent = '', $value = '')
   {
       if ($parent == '') {
           $parent = $this->field_Parent;
       }
       if ($value == '') {
           $value = $this->parentValue;
       }
       $columns = implode(',', $this->columns);
       $this->where[$this->field_Parent] = $value;
       $list = $this->fpdo->from($this->table)->select($columns)->where($this->where)->orderBy($this->order)->fetchAll();
       $result = "";
       if (count($list) > 0) {
           $result .= '<ol class="dd-list" data-id="' . $value . '">' . "\r\n";
           foreach ($list as $row) {
               $bool = false;
               $result .= '<li class="dd-item dd3-item" data-id="' . $row[$this->field_id] . '">' . "\r\n";
               $result .= '<div class="dd-handle dd3-handle"></div>' . '<div class="dd3-content form-inline">';
               if ($this->checkEditParmeters($row)) {
                   $result .= "<form method='post' action='" . basename($_SERVER['PHP_SELF']) . "'>";
               }
               $result .= "<div class='left-item'>";
               $arrayCols = array();
               $editLink = basename($_SERVER['PHP_SELF']) . "?action=_edit";
               foreach ($this->columns as $col) {
                   if ($col != $this->field_id && $col != $this->field_Parent && $col != $this->field_active && $col != $this->field_static) {
                       $column = "<label>" . $row[$col] . "</label>";
                       if ($_REQUEST['action'] == '_edit') {
                           if ($this->checkEditParmeters($row)) {
                               $field_ob = new field();
                               $field_ob->SetIdField($col);
                               $field_ob->SetNameField($col);
                               $field_ob->SetValueField($row[$col]);
                               $field_ob->SetTypeField($this->types[$col]);
                               $field_ob->SetCssClass($this->cssClass[$col]);
                               $field_ob->SetTable($this->source[$col][0]);
                               $field_ob->SetTname($this->source[$col][1]);
                               $field_ob->SetTvalue($this->source[$col][2]);
                               $field_ob->setWhere($this->source[$col][3]);
                               $column = $field_ob->getField();
                           }
                       }
                       array_push($arrayCols, "<div class='form-group'><label class='red'><strong class='red'>" . $this->getConstant($col) . ":</strong></label> " . $column . "</div>");
                   }
               }
               foreach ($this->editParameters as $parmeter) {
                   $editLink .= "&" . $parmeter . "=" . $row[$parmeter];
               }
               $arrayCols[0] = "<b>" . $arrayCols[0] . "</b>";
               $result .= implode(" &nbsp; ", $arrayCols);
               $result .= "</div>";
               $result .= "<div class='second-item'>";
               if ($this->checkEditParmeters($row)) {
                   foreach ($this->editParameters as $parameter) {
                       $result .= "<input type='hidden' value='" . $_REQUEST[$parameter] . "' name='{$parameter}'>";
                   }
                   $result .= "<input type='hidden' value='Edit' name='action'>";
                   $result .= "<button type='submit' class='btn-e-r btn btn-danger btn-sm'>" . $this->icons->ico['save'] . "</button>";
               } else {
                   if ($this->delete) {
                       $result .= "<div class='right-item'><input type='checkbox' value='" . $row[$this->field_id] . "' name='DeleteRow[]' class='checkbox'></div>\n";
                   }
                   $result .= '<div class="dropdown nestable-dropdown">
 <button class="btn-option dropdown-toggle" type="button" id="dropdownMenu1" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
   <i class="glyphicon glyphicon-cog"></i></button>
 <ul class="dropdown-menu" aria-labelledby="dropdownMenu1">';
                   if ($this->edit != "") {
                       $result .= "<li><a href='{$editLink}'>" . $this->icons->ico['edit'] . " " . $this->getConstant("Edit") . "</a></li>";
                   }
                   if ($this->static == true) {
                       $result .= "<div class='right-item'>" . _Static . "</div>";
                   }
                   if ($this->active == true) {
                       $result .= "<li>" . $this->switcher($this->table, $row[$this->field_id], $this->field_active, $row[$this->field_active], "SwitcherV", $this->field_id, "Active") . "</li>";
                   }
                   foreach ($this->extraflag as $flag) {
                       $result .= "<li>" . $this->switcher($this->table, $row[$this->field_id], $flag, $row[$flag], "SwitcherV", $this->field_id, $flag) . "</li>";
                   }
                   $result .= ' </ul>
                </div>';
               }
               $result .= "</div>";
               if ($this->checkEditParmeters($row)) {
                   $result .= "</form>";
               }
               $result .= "</div>";
               $result .= $this->GetList($this->field_Parent, $row[$this->field_id]);
               $result .= '</li>' . "\r\n";
           }
           $result .= '</ol> ' . "\r\n";
           return $result;
       } else {
           return false;
       }
   }
Esempio n. 4
0
}
$moduleDynamic = $fpdo->from('cms_modules')->where("table_name='" . $extra_table . "'")->fetch();
file_put_contents("dd", json_encode($moduleDynamic) . "\r\n");
$fileds = $fpdo->from('cms_module_fields')->where("table_id='" . $moduleDynamic['id'] . "' and is_main='1'")->fetch();
file_put_contents("dd", json_encode($fileds) . "\r\n", FILE_APPEND);
/*
  if ($type === 'checkbox') {
  $module = $this->fpdo->from('cms_modules')->where('id', $_SESSION['cmsMID'])->fetch();
  $table = $module['table_name'];
  $langType = $module['lang_type'];
  $fileds = $this->fpdo->from('cms_module_fields')->where("table_id='" . $_SESSION['cmsMID'] . "' and plus !='' and type='checkbox'")->fetch();
  foreach ()
  } */
if ($action == 'edit') {
    $field_ob = new field();
    $field_ob->SetIdField($field);
    $field_ob->SetNameField($field);
    $field_ob->SetTypeField($type == "DynamicSelect" ? "select" : $type);
    $field_ob->SetTable($t_table);
    $field_ob->SetCssClass("form-control input-sm");
    // $field_ob->SetRequiredField($this->requireds[$col]);
    $field_ob->SetTname($t_name);
    $field_ob->SetTvalue($t_value);
    $field_ob->SetValueField($extra_value);
    $field_ob->setWhere();
    if ($extra_table == "") {
        $field_ob->SetExtra(array($extra_id));
    }
    if ($laneffected[$field] != "") {
        $lang_org = str_replace($laneffected[$field] . "_", "", $field);
        $orgin_col = str_replace("_" . $lang_org, "", $field);
 if ($_REQUEST["edited"] != "" && $_REQUEST["edited"] == "true") {
     //$operations.="<div class='btn-group' style='margin-top:10px;'><button id='WidgetRemoveWidget' class='btn btn-danger'>" . $utils->getConstant("remove") . "</button><button id='WidgetEditWidget' class='btn btn-warning'>" . $utils->getConstant("DynamicEdit") . "</button></div>";
 }
 $operations .= "<div class='row'><div class='col-sm-6'><table class='table table-striped table-bordered table-hover' style='margin-top:10px'> <tbody>" . "<tr><td colspan='3' class='danger'><label>" . $utils->getConstant("conditions") . "</label></td></tr>";
 $dateTypeArray = array("date", "datepicker");
 $sortingField = "";
 foreach ($queryFieldModule as $field) {
     $sortingField .= "<option value='" . $field['title'] . "'>" . $field['title'] . "</option>";
     $dataModule = "";
     $options = "<option value='='>=</option>" . "<option value='>'>></option>" . "<option value='>='>>=</option>" . "<option value='<'><</option>" . "<option value='<='><=</option>" . "<option value='!='>!=</option>" . "<option value='LIKE'>LIKE</option>" . "<option value='LIKEPER'>LIKE %...%</option>" . "<option value='NOTLIKE'>NOT LIKE</option>" . "<option value='IN'>IN(...)</option>" . "<option value='NOTIN'>NOT IN(...)</option>" . "<option value='ISNULL'>IS NULL</option>" . "<option value='ISNOTNULL'>IS NOT NULL</option>";
     if (in_array($field['type'], $dateTypeArray)) {
         $input = "<div class='input-group date date-widget' ><input type='text' class='form-control valueOperation' data-id='" . $field["id"] . "' />" . "<span class='input-group-addon'>\n                        <span class='glyphicon glyphicon-calendar'></span>\n                    </span></div>" . "";
         $options = "<option value='='>=</option>" . "<option value='>'>></option>" . "<option value='>='>>=</option>" . "<option value='<'><</option>" . "<option value='<='><=</option>" . "<option value='!='>!=</option>" . "<option value='ISNULL'>IS NULL</option>" . "<option value='ISNOTNULL'>IS NOT NULL</option>";
     } elseif ($field['type'] == "DynamicSelect") {
         $field_ob = new field();
         $field_ob->SetIdField();
         $field_ob->SetNameField();
         $field_ob->SetCssClass("valueOperation form-control");
         $field_ob->SetTypeField($field['type']);
         $plus = explode(',', $field['plus']);
         $field_ob->SetExtra($plus);
         $field_ob->setWithObjectsExtra(true);
         $field_ob->setDataObjects(array("id" => $field["id"]));
         $res = $field_ob->getField();
         $dataModule = "data-module='" . $plus[0] . "'";
         $input = "<div class='input-group' style='width:100%' >{$res}</div>";
         $options = "<option value='='>=</option>" . "<option value='!='>!=</option>" . "<option value='IN'>IN(...)</option>" . "<option value='NOTIN'>NOT IN(...)</option>" . "<option value='ISNULL'>IS NULL</option>" . "<option value='ISNOTNULL'>IS NOT NULL</option>";
     } else {
         $input = "<div class='input-group' style='width:100%' ><input type='text' class='form-control valueOperation' data-id='" . $field["id"] . "' ></div>";
     }
     $operations .= "<tr>" . "<td><label>" . $utils->getConstant($field["title"]) . "</label></td>" . "<td><select data-field='" . $field["title"] . "' {$dataModule} data-type='" . $field['type'] . "' class='operation form-control' style='min-width:150px;' data-id='" . $field["id"] . "'>" . $options . "</select></td>" . "<td>{$input}</td>" . "</tr>";
Esempio n. 6
0
 function GetListTable()
 {
     $this->updateOrderItems();
     $query = $this->fpdo->from($this->db_table)->where($this->where_str);
     if ($this->orderBy != '') {
         $query->orderBy($this->orderBy);
     }
     if ($this->limit != '') {
         $query->limit($this->limit);
     }
     if ($this->debug == true) {
         echo $query->getQuery();
     }
     $count = $query->execute();
     $countTable = count($query->execute());
     if ($_REQUEST['action'] == "add") {
         $countTable = 1;
     }
     if ($countTable > 0) {
         if ($this->order == true) {
             $soratble = "sortable";
             $script = "" . " var order_table='{$this->db_table}';\n" . " var order_filed='{$this->f_order}';\n" . " var order_id='{$this->f_id}';\n" . " ordIds=new Array();\n";
         } else {
             $soratble = "";
         }
         if ($_REQUEST['action'] == "_edit") {
             $linkAction = $_SERVER['PHP_SELF'] . "?action=Edit";
         } elseif ($_REQUEST['action'] == "add") {
             $linkAction = $_SERVER['PHP_SELF'] . "?action=Insert";
         }
         $result .= $this->getParentAttr();
         $result .= " <div class='box box-danger'>\n";
         $result .= " <div class='box-header with-border'>\n";
         $result .= $this->FilterTable();
         $result .= " </div>\n";
         $result .= " <div class='box-header with-border'>\n";
         $result .= $this->getModuleButtons();
         $result .= " </div>\n";
         $result .= " <div class='box-body'>\n";
         $result .= "<form name='TableForm' action='{$linkAction}' method='post'>";
         $result .= "<table id='TableForm' class='{$this->class}  table table-bordered table-hover' >\n";
         $result .= "<thead>\n";
         $result .= "<tr>\n";
         foreach ($this->columns as $column) {
             $result .= "<th>";
             if ($this->LangEffected[$column] != "") {
                 $lang_org = str_replace($this->LangEffected[$column] . "_", "", $column);
                 $orgin_col = str_replace("_" . $lang_org, "", $column);
                 $result .= $this->getConstant($orgin_col, "") . " (" . $this->getConstant($lang_org) . ")";
             } else {
                 $result .= $this->getConstant($column, "");
             }
             $result .= "</th>";
         }
         foreach ($this->extraLinks as $exlink) {
             $result .= "<th width=30 align='center'>" . $exlink[0] . "</th>\n";
         }
         if ($this->active == true) {
             $result .= "<th width=30 align='center'>" . active . "</th>\n";
         }
         $i_page = 0;
         foreach ($query as $row_seo) {
             if ($i_page < 1) {
                 if ($row_seo[$this->page_id] > 0) {
                     $result .= "<th width=30 align='center'>" . seo . "</th>\n";
                     $i_page++;
                 }
             }
         }
         $i_dublicate = 0;
         foreach ($query as $row_dublicate) {
             if ($i_dublicate < 1) {
                 if ($this->display == true) {
                     $result .= "<th width=30 align='center'>" . dublicate . "</th>\n";
                     $i_dublicate++;
                 }
             }
         }
         if ($this->special == true) {
             $result .= "<th width=30 align='center'>" . special . "</th>\n";
         }
         if ($this->static != '') {
             $result .= "<th width=30 align='center'>" . _static . "</th>\n";
         }
         if ($this->seo == true) {
             $result .= "<th width=30 align='center'>" . seo . "</th>\n";
         }
         if ($this->widget == true) {
             $result .= "<th width=30 align='center'>" . widget . "</th>\n";
         }
         if ($this->view_page == true) {
             $result .= "<th width=30 align='center'>" . view . "</th>\n";
         }
         if ($this->edit != '') {
             $result .= "<th width=30 align='center'>" . edit . "</th>\n";
         }
         if ($this->delete == true) {
             $result .= "<th width=30><input type='checkbox' id='SelectAll'></th>\n";
         }
         $result .= "</tr>\n";
         $result .= "</thead>\n";
         $result .= "<tbody id='{$soratble}' class='sortable ui-sortable'>\n";
         $m = 1;
         if ($_REQUEST['action'] == 'add' && $this->isGridList == true) {
             if (count($this->types) > 0) {
                 $result .= "<tr>";
                 $result .= $this->getParametersToPassIt(true);
                 $result .= $this->getParametersToPassIt();
                 foreach ($this->columns as $col) {
                     $field_ob = new field();
                     $field_ob->SetIdField($col);
                     $field_ob->SetNameField($col);
                     $field_ob->SetCssClass($this->classes[$col]);
                     $required = $this->requireds[$col];
                     if ($required == "" && in_array($col, $this->requireds)) {
                         $required = "required";
                     }
                     $field_ob->SetRequiredField($required);
                     $field_ob->SetValueField($this->source[$col][3]);
                     $field_ob->SetTypeField($this->types[$col]);
                     $field_ob->SetTable($this->extendTables[$col][0]);
                     $field_ob->SetTname($this->extendTables[$col][1]);
                     $field_ob->SetTvalue($this->extendTables[$col][2]);
                     $field_ob->setWhere($this->extendTables[$col][3]);
                     $field_ob->WithLabel(false);
                     if (!$this->extendTables[$col][4]) {
                         $this->extendTables[$col][4] = true;
                     }
                     if (in_array($col, $this->parentAttr)) {
                         $field_ob->SetValueField($_REQUEST[$col]);
                     }
                     $field_ob->setWithAdd($this->extendTables[$col][4]);
                     $field_ob->SetExtra($this->extra[$col]);
                     $field_ob->SetInputLength($this->legths[$col]);
                     $result .= "<td>" . $field_ob->getField() . "</td>";
                 }
                 foreach ($this->extraLinks as $exlink) {
                     $result .= "<td></td>\n";
                 }
                 if ($this->active == true) {
                     $result .= "<td></td>\n";
                 }
                 $i_page = 0;
                 foreach ($query as $row_seo) {
                     if ($i_page < 1) {
                         if ($row_seo[$this->page_id] > 0) {
                             $result .= "<td></td>\n";
                             $i_page++;
                         }
                     }
                 }
                 $i_dublicate = 0;
                 foreach ($query as $row_dublicate) {
                     if ($i_dublicate < 1) {
                         if ($this->display == true) {
                             $result .= "<td></td>\n";
                             $i_dublicate++;
                         }
                     }
                 }
                 if ($this->special == true) {
                     $result .= "<td></td>\n";
                 }
                 if ($this->static != '') {
                     $result .= "<td></td>\n";
                 }
                 if ($this->seo == true) {
                     $result .= "<td></td>\n";
                 }
                 if ($this->widget == true) {
                     $result .= "<td></td>\n";
                 }
                 if ($this->view_page == true) {
                     $result .= "<td></td>\n";
                 }
                 if ($this->edit != '') {
                     $result .= "<td><button type='submit' class='btn-e-r btn btn-danger btn-sm'>" . $this->icons->ico['save'] . "</button></td>\n";
                 }
                 if ($this->delete == true) {
                     $result .= "<td></td>\n";
                 }
                 $result .= "</tr>";
             }
         }
         foreach ($query as $row) {
             $id = stripcslashes($row[$this->f_id]);
             if ($id == $_REQUEST['id'] && $_REQUEST['action'] == '_edit') {
                 $result .= "<tr><input type='hidden' name='{$this->f_id}' value='" . $_REQUEST[$this->f_id] . "'>";
                 $result .= $this->getParametersToPassIt();
                 $result .= $this->getParentAttr();
                 if ($this->order == true) {
                     $script .= "ordIds[{$m}]='{$id}';";
                 }
                 $m++;
                 foreach ($this->columns as $column) {
                     $value = "";
                     $value = stripcslashes($row[$column]);
                     if (isset($this->source[$column]) && $this->source[$column] != '') {
                         $value = $this->lookupField($this->source[$column][0], $this->source[$column][1], $this->source[$column][2], $row[$column]);
                     }
                     if ($this->types[$column] == 'photos') {
                         $value = $this->ViewPhotos($value, 1, 1, 50, 50);
                     }
                     $field_ob = new field();
                     $field_ob->SetIdField($column);
                     $field_ob->SetNameField($column);
                     $field_ob->SetCssClass($this->classes[$column]);
                     $field_ob->SetTypeField($this->types[$column]);
                     $field_ob->SetTable($this->extendTables[$column][0]);
                     $field_ob->SetRequiredField($this->requireds[$col]);
                     $field_ob->SetTname($this->extendTables[$column][1]);
                     $field_ob->SetTvalue($this->extendTables[$column][2]);
                     $field_ob->SetValueField(stripcslashes($row[$column]));
                     $field_ob->setWhere($this->extendTables[$column][3]);
                     $field_ob->WithLabel($withLabel);
                     if (!$this->extendTables[$column][4]) {
                         $this->extendTables[$column][4] = true;
                     }
                     $field_ob->setWithAdd($this->extendTables[$column][4]);
                     $field_ob->SetExtra($this->extra[$column]);
                     $field_ob->SetInputLength($this->legths[$column]);
                     if ($this->types[$column] != "") {
                         $result .= "<td>" . $field_ob->getField() . "</td>";
                     } elseif ($this->types[$column] == "" && $column == 'l_key') {
                         $result .= "<td>" . $field_ob->getField() . "</td>";
                     } else {
                         $result .= "<td>" . $value . $field_ob->getField() . "</td>";
                     }
                 }
                 foreach ($this->extraLinks as $exlink) {
                     $result .= "<td></td>\n";
                 }
                 if ($this->active == true) {
                     $result .= "<td></td>\n";
                 }
                 $i_page = 0;
                 foreach ($query as $row_seo) {
                     if ($i_page < 1) {
                         if ($row_seo[$this->page_id] > 0) {
                             $result .= "<td></td>\n";
                             $i_page++;
                         }
                     }
                 }
                 $i_dublicate = 0;
                 foreach ($query as $row_dublicate) {
                     if ($i_dublicate < 1) {
                         if ($this->display == true) {
                             $result .= "<td></td>\n";
                             $i_dublicate++;
                         }
                     }
                 }
                 if ($this->special == true) {
                     $result .= "<td></td>\n";
                 }
                 if ($this->static != '') {
                     $result .= "<td></td>\n";
                 }
                 if ($this->seo == true) {
                     $result .= "<td></td>\n";
                 }
                 if ($this->widget == true) {
                     $result .= "<td></td>\n";
                 }
                 if ($this->view_page == true) {
                     $result .= "<td></td>\n";
                 }
                 if ($this->edit != '') {
                     $result .= "<td><button type='submit' class='btn-e-r btn btn-danger btn-sm'>" . $this->icons->ico['save'] . "</button></td>\n";
                 }
                 if ($this->delete == true) {
                     $result .= "<td></td>\n";
                 }
                 $result .= "</tr>\n";
             } else {
                 $result .= "<tr id=" . $id . ">\n";
                 if ($this->order == true) {
                     $script .= "ordIds[{$m}]='{$id}';";
                 }
                 $m++;
                 foreach ($this->columns as $column) {
                     $value = "";
                     $value = stripcslashes($row[$column]);
                     if (isset($this->source[$column]) && $this->source[$column] != '') {
                         $value = $this->lookupField($this->source[$column][0], $this->source[$column][1], $this->source[$column][2], $row[$column]);
                     }
                     if ($this->types[$column] == 'photos') {
                         $value = $this->ViewPhotos($value, 1, 1, 50, 50);
                     }
                     if ($this->types[$column] == 'flag') {
                         $value = "" . $this->switcher($this->db_table, $row[$this->f_id], $column, $row[$column], "SwitcherV") . "";
                     }
                     if ($this->types[$column] == 'checkbox' && $this->source[$column][0] != "") {
                         $value = $this->getValuesImplode($this->source[$column][0], $this->source[$column][1], $this->source[$column][2], stripcslashes($row[$column]));
                     }
                     if ($this->types[$column] == 'checkbox' && $this->source[$column][0] == "") {
                         $module = $this->fpdo->from('cms_modules')->where('id', $_SESSION['cmsMID'])->fetch();
                         $table = $module['table_name'];
                         $langType = $module['lang_type'];
                         $fileds = $this->fpdo->from('cms_module_fields')->where("table_id='" . $_SESSION['cmsMID'] . "' and plus !='' and type='checkbox'")->fetch();
                         if ($fileds['plus']) {
                             $value = $fileds['plus'];
                         }
                         //  $value = $this->getValuesImplode($this->source[$column][0], $this->source[$column][1], $this->source[$column][2], stripcslashes($row[$column]));
                     }
                     $result .= "<td data-type='" . $this->types[$column] . "' data-table='" . $this->db_table . "' data-id='" . $row[$this->f_id] . "' data-field='" . $column . "' data-extratable='" . $this->source[$column][0] . "' data-extraid='" . $this->source[$column][1] . "' data-extraname='" . $this->source[$column][2] . "' data-extravalue='" . $row[$column] . "'   class='EditInline'>" . $value . "<span></span></td>\n";
                 }
                 foreach ($this->extraLinks as $exlink) {
                     $linkAttr = $exlink[3];
                     $linkO = array();
                     foreach ($linkAttr as $key => $attr) {
                         if (is_int($attr)) {
                             array_push($linkO, "{$key}=" . $attr);
                         } else {
                             array_push($linkO, "{$key}=" . $row[$attr]);
                         }
                     }
                     $linkO = implode('&', $linkO);
                     $result .= "<td align='center'><a title='" . $exlink[0] . "' data-toggle='tooltip' href='{$exlink['2']}?{$linkO}' target='{$exlink['4']}'>{$exlink['1']}</a></td>\n";
                 }
                 if ($this->active == true) {
                     $result .= "<td align='center'>" . $this->switcher($this->db_table, $row[$this->f_id], $this->f_active, $row[$this->f_active], "SwitcherV") . "</td>\n";
                 }
                 if ($this->special == true) {
                     $result .= "<td align='center'>" . $this->switcher($this->db_table, $row[$this->f_id], $this->f_special, $row[$this->f_special], "SwitcherV") . "</td>\n";
                 }
                 if ($this->static != '') {
                     $result .= "<td align='center'>" . $this->switcher($this->db_table, $row[$this->f_id], $this->f_static, $row[$this->f_static], "SwitcherV") . "</td>\n";
                 }
                 if ($row[$this->page_id] != "") {
                     $id_seo = $row[$this->page_id];
                     $result .= "<td align='center'><a href='javascript:;' data-id='{$id_seo}' class='seoModal'>" . $this->icons->ico['seo'] . "</a></td>\n";
                     $i_page++;
                 }
                 if ($this->display == true) {
                     $cols_pass = "";
                     foreach ($this->cols_insert as $col_insert) {
                         $cols_pass .= $col_insert . ",";
                     }
                     $result .= "<td align='center'><a href='javascript:;' data-id='" . $row[$this->record_id] . "' data-redirect='" . $this->redirect . "' data-table='" . $this->table_name . "' data-cols='" . $cols_pass . "' data-module='" . $this->module_id . "' data-ajax='" . $this->ajaxFile . "' class='dublicate-button'>" . $this->icons->ico['dublicate'] . "</a></td>\n";
                 }
                 if ($this->seo == true) {
                     $result .= "<td align='center'><a href='{$this->seo}' >" . $this->icons->ico['seo'] . "</a></td>\n";
                 }
                 if ($this->widget == true) {
                     $result .= "<td align='center'><a href='{$this->widget}'>" . $this->icons->ico['widget'] . "</a></td>\n";
                 }
                 if ($this->view_page == true) {
                     $link_page = $this->view_page . "page" . $id . '/page-title';
                     $result .= "<td align='center'><a href='{$link_page}' target='_blank'>" . $this->icons->ico['view'] . "</a></td>\n";
                 }
                 if ($this->edit != '') {
                     $editLink = $this->edit;
                     $i = 0;
                     foreach ($this->editParametar as $par) {
                         if ($i > 0) {
                             $editLink .= "&";
                         } else {
                             $editLink .= "?";
                         }
                         $editLink .= $par . "=" . $row[$par];
                         $i++;
                     }
                     if ($this->isGridList) {
                         $con = "";
                         foreach ($_REQUEST as $key => $v) {
                             if ($key != "PHPSESSID" && $key != "site_id" && $key != "action" && $key != $this->f_id) {
                                 $con .= "&{$key}={$v}";
                             }
                         }
                         $editLink = $_SERVER['PHP_SELF'] . "?action=_edit&{$this->f_id}={$id}" . $con;
                     }
                     $result .= "<td align='center'><a href='{$editLink}' title='" . $this->getConstant("edit") . "' data-toggle='tooltip'>" . $this->icons->ico['edit'] . "</a></td>\n";
                 }
                 if ($this->delete == true) {
                     $result .= "<td><input type='checkbox' name='DeleteRow[]' value='{$id}' class='checkbox'></td>\n";
                 }
                 $result .= "</tr>\n";
             }
         }
         $result .= "</tbody>\n";
         $result .= "</table>\n";
         $result .= "</form>\n";
         $result .= " </div>\n";
         $result .= "<div class='box-footer'>";
         if ($this->extraHtml != "") {
             $result .= $this->extraHtml;
         }
         if ($this->backBtn != "" || $this->backBtn != false) {
             $result .= $this->back($this->backBtn, 'pull-left');
         }
         if ($this->saveAndContinue != "" && count($this->saveAndContinue) > 0) {
             $result .= $this->back($this->saveAndContinue['link'], "pull-left " . $this->saveAndContinue['class'], $this->saveAndContinue['title']);
         }
         if ($this->saveAndClose != "" && count($this->saveAndClose) > 0) {
             $result .= $this->back($this->saveAndContinue['link'], 'pull-left' . $this->saveAndContinue['class'], $this->saveAndContinue['title']);
         }
         global $pn, $LPP;
         $pageLink = $this->pageList . "?pn=^";
         foreach ($this->filter as $f) {
             if ($_REQUEST[$f[0]] != "") {
                 $pageLink .= "&{$f['0']}=" . $_REQUEST[$f[0]];
             }
         }
         foreach ($this->parentAttr as $f) {
             if ($_REQUEST[$f] != "") {
                 $pageLink .= "&{$f}=" . $_REQUEST[$f];
             }
         }
         if ($_REQUEST["lpp"] != "") {
             $pageLink .= "&lpp=" . $_REQUEST["lpp"];
         }
         $result .= $this->create_pagination($this->getCount(), $pn, $LPP, $pageLink, 'en', 'pull-right');
         $result .= "</div>";
         $result .= " </div>\n";
     } else {
         echo $this->getConstant("NoResult");
     }
     $result .= "<script>{$script}</script>\n";
     return $result;
 }
<?php

include "../../common/top_ajax.php";
$field_ob = new field();
$field_ob->SetIdField("SelectWidget");
$field_ob->SetNameField("SelectWidget");
$field_ob->SetCssClass(" form-control");
$field_ob->SetValueField();
$field_ob->SetTypeField("select");
$field_ob->SetTable("cms_widgets");
$field_ob->SetTname("title");
$field_ob->SetTvalue("id");
$field_ob->setWhere("");
$field_ob->SetRequiredField("");
echo $res = $field_ob->getField();