This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* See http://wpengineer.com/2426/wp_list_table-a-step-by-step-guide/ | |
* | |
*/ | |
if (! class_exists ( 'WP_List_Table' )) { | |
require_once (ABSPATH . 'wp-admin/includes/class-wp-list-table.php'); | |
} | |
class PostmanEmailLogView extends WP_List_Table { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@inherits umbraco.MacroEngines.DynamicNodeContext | |
@using umbraco; | |
@using umbraco.NodeFactory; | |
@using System.Xml; | |
@{ | |
// Clear any current response | |
Response.Clear(); | |
// Set new response type to rss | |
Response.ContentType = "text/xml"; |