PDOCrud Add action switch for columns

You can make any column to action switch or url with primary key as query parameter. For example, if you want to change the value from approve to reject or reject to approve, you can use this feature to switch values. Also, if you want to make a column to url with primary key as query paramater then you can also do this using function for example you can make firstname to firstname. You can pass extra data attributes in 4th parameter of function.

  
                                $pdocrud = new PDOCrud();
                                $pdocrud->crudTableCol(array("first_name","last_name","no_of_adult","no_of_child","booking_amount","booking_status"));

                                //action type switch - on click on column, value will be changed and saved
                                $action = array("1"=>"0","0"=>"1");//action to be performed, like when value is 1 set it to 0
                                $text = array("1" => "approved","0"=>"unapproved");
                                $pdocrud->enqueueActions($action,"switch",$text,"booking_status",array());

                                //action type url - redirect to another page with primary key
                                $action = "http://www.google.com?url={pk}";//{another example of adding url {} text will be replaced by the primary key value
                                $pdocrud->enqueueActions($action,"url","","first_name",array());
                                echo $pdocrud->dbTable("bookroom")->render();
                                

Deprecated: Required parameter $field follows optional parameter $op in /home/javad/domains/javadfk.ir/public_html/pdocrud/script/classes/PDOCrud.php on line 924

Deprecated: Required parameter $task follows optional parameter $op in /home/javad/domains/javadfk.ir/public_html/pdocrud/script/classes/PDOCrud.php on line 924

Deprecated: Required parameter $totalrecords follows optional parameter $page in /home/javad/domains/javadfk.ir/public_html/pdocrud/script/classes/PDOCrudHelper.php on line 191

Bookroom

Showing 1 to 1 of 1 entries

# First name Last name No of adult No of child Booking amount Booking status Actions
1 W P 1 0 5 approved
# First name Last name No of adult No of child Booking amount Booking status Actions