From 433c02c6093788822177ce309d2e763d3bc11c1b Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Mon, 30 Apr 2012 01:41:49 +0200 Subject: [PATCH] Frontend display test --- frontend/classes/class.node.php | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/frontend/classes/class.node.php b/frontend/classes/class.node.php index 79cd3a0..34ea79f 100644 --- a/frontend/classes/class.node.php +++ b/frontend/classes/class.node.php @@ -21,17 +21,18 @@ class Node extends CPHPDatabaseRecordClass public $prototype = array( 'string' => array( - 'Name' => "Name", - 'Hostname' => "Hostname", - 'PrivateKey' => "CustomPrivateKey", - 'PublicKey' => "CustomPublicKey", - 'User' => "User" + 'Name' => "Name", + 'Hostname' => "Hostname", + 'PhysicalLocation' => "PhysicalLocation", + 'PrivateKey' => "CustomPrivateKey", + 'PublicKey' => "CustomPublicKey", + 'User' => "User" ), 'numeric' => array( - 'Port' => "Port" + 'Port' => "Port" ), 'boolean' => array( - 'HasCustomKey' => "HasCustomKey" + 'HasCustomKey' => "HasCustomKey" ) );