Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- class td_module_mx4 extends td_module {
- function __construct($post) {
- //run the parrent constructor
- parent::__construct($post);
- }
- function render() {
- ob_start();
- ?>
- <div class="<?php echo $this->get_module_classes();?>">
- <div class="td-module-image">
- <?php echo $this->get_image('td_218x150');?>
- <span class="td-author-date">
- <?php echo $this->get_author();?>
- </span>
- </div>
- <?php echo $this->get_title(); ?>
- </div>
- <?php
- return ob_get_clean();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment