Plugin vertical timeline (Added in v 3.6)

Creates vertical timeline by passing the required data. You can get data in form of array and use it to create the html block.

 
                            $pdocrud = new PDOCrud();
                            $pdocrud->addPlugin("vertical-timeline-master");//to add plugin     
                            $data = $pdocrud->getPDOModelObj()->orderBy(array("message_date"))->select("message");//get data to be displayed in time line e.g. getting data from message table
                            //Create html from data
                            //You can print_r the $data to understand the column name that needs to be used to create the block.
                            $block = "";
                            if(count($data)){
                                foreach($data as $row){
                                    $block .="

".$row["message_thread_code"]."

".$row["message"]."

Read more ".$row["message_date"]."
"; } } $html_data = array("
$block
"); echo $pdocrud->render("HTML", $html_data);

Plugin vertical timeline example - PDOCrud

x0001

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

Read more 2019-03-01

x0002

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

Read more 2019-03-02

x0003

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

Read more 2019-03-03

x0004

Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.

Read more 2019-03-04