<?php
/**
* ServicesWebHostingPage.class.php
*
* This file contains the definition for the ServicesWebHostingPage class
*
* @package Pages
* @author John Diamond <hide@address.com>
* @copyright John Diamond <hide@address.com>
* @license http://www.opensource.org/licenses/gpl-license.php GNU Public License
*/
// Include the parent class
require BASE_PATH . "solidworks/SolidStatePage.class.php";
/**
* ServicesWebHosting
*
* Display all web hosting services offered by the provider.
*
* @package Pages
* @author John Diamond <hide@address.com>
*/
class ServicesWebHosting extends SolidStatePage {
/**
* Action
*
* Actions handled by this page:
* none
*
* @param string $action_name Action
*/
function action( $action_name ) {
switch( $action_name ) {
default:
// No matching action - refer to base class
parent::action( $action_name );
}
}
}
?>