~katiekitty/+junk/solidstate

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
 * ServicesHostingServicesPage.class.php
 *
 * This file contains the definition for the ServicesHostingServicesPage class
 *
 * @package Pages
 * @author John Diamond <jdiamond@solid-state.org>
 * @copyright John Diamond <jdiamond@solid-state.org>
 * @license http://www.opensource.org/licenses/gpl-license.php GNU Public License
 */

// Include the parent class
require BASE_PATH . "include/SolidStatePage.class.php";

/**
 * ServicesHostingServicesPage
 *
 * Display all of the hosting services offered by the provider
 *
 * @package Pages
 * @author John Diamond <jdiamond@solid-state.org>
 */
class ServicesHostingServicesPage extends SolidStatePage
{
  /**
   * Action
   *
   * Actions handled by this page:
   *   web_hosting_action (form)
   *
   * @param string $action_name Action
   */
  public function action( $action_name )
  {
    switch( $action_name )
      {
      case "web_hosting_action":
	if( isset( $this->post['add'] ) )
	  {
	    // Goto new user page
	    $this->goto( "services_new_hosting" );
	  }
	break;

      case "search_hosting_services":
	$this->searchTable( "hosting_services", "hosting_services", $this->post );
	break;

      case "hosting_services":
	if( $this->post['remove'] )
	  {
	    $this->deleteService();
	  }
	break;

      default:
	// No matching action, refer to base class
	parent::action( $action_name );
      }
  }

  /**
   * Delete Hosting Service
   */
  protected function deleteService()
  {
    foreach( $this->post['hosting_services'] as $serviceDBO )
      {
	delete_HostingServiceDBO( $serviceDBO );
      }

    $this->setMessage( array( "type" => "[HOSTING_SERVICES_DELETED]" ) );
    $this->reload();
  }
}

?>