Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
wp-content
/
plugins
/
royal-elementor-addons
/
modules
/
posts-timeline
:
module.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php namespace WprAddons\Modules\PostsTimeline; use WprAddons\Base\Module_Base; class Module extends Module_Base { public function __construct() { parent::__construct(); // This is here for extensibility purposes - go to town and make things happen! } public function get_name() { return 'wpr-posts-timeline'; } public function get_widgets() { return [ 'Wpr_Posts_Timeline', // This should match the widget/element class. ]; } }