| Conditions | 2 | 
| Paths | 2 | 
| Total Lines | 26 | 
| Code Lines | 11 | 
| Lines | 0 | 
| Ratio | 0 % | 
| Tests | 0 | 
| CRAP Score | 6 | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php namespace EmailLog\Core\UI\Component;  | 
            ||
| 28 | 	public function render_page() { | 
            ||
| 29 | // Enqueue the required styles  | 
            ||
| 30 | wp_enqueue_style( 'el_addon_adm_pg', $this->plugin_dir_url . 'assets/css/AddonController.css', array(), false, 'all' )  | 
            ||
| 31 | ?>  | 
            ||
| 32 | <p>  | 
            ||
| 33 | <?php _e( 'These extensions <em><strong>add functionality</strong></em> to your existing Email logs.', 'email-log' ); ?>  | 
            ||
| 34 | </p>  | 
            ||
| 35 | <div class="el-container">  | 
            ||
| 36 | 		<?php for( $i = 0; $i < 4; $i++ ) { ?> | 
            ||
| 37 | <div class="el-addon">  | 
            ||
| 38 | <h3 class="el-addon-title">Resend Email</h3>  | 
            ||
| 39 | |||
| 40 | <a href="#" title="Starter Package">  | 
            ||
| 41 | <img src="https://8333-presscdn-0-98-pagely.netdna-ssl.com/wp-content/themes/edd-v2/images/starter-package.png" class="attachment-showcase wp-post-image" alt="Alternate Title" title="Some Good Title" />  | 
            ||
| 42 | </a>  | 
            ||
| 43 | |||
| 44 | <p>This addon will emerge of our Sun bursts and will do this.</p>  | 
            ||
| 45 | |||
| 46 | <a href="#" class="button-secondary">Gear up!</a>  | 
            ||
| 47 | </div> <!-- .el-addon -->  | 
            ||
| 48 | |||
| 49 | <?php } ?>  | 
            ||
| 50 | <div class="clear"></div>  | 
            ||
| 51 | </div> <!-- .el-container -->  | 
            ||
| 52 | <?php  | 
            ||
| 53 | }  | 
            ||
| 54 | }  | 
            ||
| 55 |