Add classes

feature/core
Sven Slootweg 11 years ago
parent 4de7766cb0
commit a2fcca15d2

@ -0,0 +1,72 @@
<?php
/*
* openNG is more free software. It is licensed under the WTFPL, which
* allows you to do pretty much anything with it, without having to
* ask permission. Commercial use is allowed, and no attribution is
* required. We do politely request that you share your modifications
* to benefit other developers, but you are under no enforced
* obligation to do so :)
*
* Please read the accompanying LICENSE document for the full WTFPL
* licensing text.
*/
if(!isset($_APP)) { die("Unauthorized."); }
class Node extends CPHPDatabaseRecordClass
{
public $table_name = "nodes";
public $fill_query = "SELECT * FROM nodes WHERE `Id` = :Id";
public $verify_query = "SELECT * FROM nodes WHERE `Id` = :Id";
public $prototype = array(
'string' => array(
"Name" => "Name",
"Notes" => "Notes"
),
'numeric' => array(
"TypeId" => "TypeId",
"ParentRevisionId" => "ParentRevisionId",
"FirstRevisionId" => "FirstRevisionId",
"UserId" => "UserId"
),
'timestamp' => array(
"CreationDate" => "CreationDate"
),
'boolean' => array(
"LatestRevision" => "LatestRevision"
),
'nodetype' => array(
"Type" => "TypeId"
),
'node' => array(
"ParentRevision" => "ParentRevisionId",
"FirstRevision" => "FirstRevisionId"
),
'user' => array(
"User" => "UserId"
)
);
public function SaveRevision($user)
{
/* Create a working copy of the current object */
$this_copy = clone $this;
/* Create a new object representing the new revision */
$sNode = clone $this;
$sNode->sId = 0;
$sNode->uParentRevisionId = $this->sId;
$sNode->uUserId = $user->sId;
$sNode->uCreationDate = time();
$sNode->InsertIntoDatabase(true);
/* Clear out all changes to the working copy, and save the changed 'latest revision' flag */
$this_copy->RefreshData();
$this_copy->uLatestRevision = false;
$this_copy->InsertIntoDatabase();
/* Set the same flag on the current object, in case of further operations */
$this->uLatestRevision = false;
}
}

@ -0,0 +1,36 @@
<?php
/*
* openNG is more free software. It is licensed under the WTFPL, which
* allows you to do pretty much anything with it, without having to
* ask permission. Commercial use is allowed, and no attribution is
* required. We do politely request that you share your modifications
* to benefit other developers, but you are under no enforced
* obligation to do so :)
*
* Please read the accompanying LICENSE document for the full WTFPL
* licensing text.
*/
if(!isset($_APP)) { die("Unauthorized."); }
class NodeType extends CPHPDatabaseRecordClass
{
public $table_name = "nodetypes";
public $fill_query = "SELECT * FROM nodetypes WHERE `Id` = :Id";
public $verify_query = "SELECT * FROM nodetypes WHERE `Id` = :Id";
public $prototype = array(
'string' => array(
"Name" => "Name"
),
'numeric' => array(
"UserId" => "UserId"
),
'timestamp' => array(
"CreationDate" => "CreationDate"
),
'user' => array(
"User" => "UserId"
)
);
}

@ -0,0 +1,82 @@
<?php
/*
* openNG is more free software. It is licensed under the WTFPL, which
* allows you to do pretty much anything with it, without having to
* ask permission. Commercial use is allowed, and no attribution is
* required. We do politely request that you share your modifications
* to benefit other developers, but you are under no enforced
* obligation to do so :)
*
* Please read the accompanying LICENSE document for the full WTFPL
* licensing text.
*/
if(!isset($_APP)) { die("Unauthorized."); }
class Property extends CPHPDatabaseRecordClass
{
public $table_name = "nodes";
public $fill_query = "SELECT * FROM nodes WHERE `Id` = :Id";
public $verify_query = "SELECT * FROM nodes WHERE `Id` = :Id";
public $prototype = array(
'string' => array(
"Name" => "Name",
"Value" => "Value",
"Source" => "Source"
),
'numeric' => array(
"TypeId" => "TypeId",
"ParentRevisionId" => "ParentRevisionId",
"FirstRevisionId" => "FirstRevisionId",
"UserId" => "UserId",
"NodeId" => "NodeId",
"RelationshipId" => "RelationshipId",
"Reliability" => "Reliability"
),
'timestamp' => array(
"CreationDate" => "CreationDate"
),
'boolean' => array(
"LatestRevision" => "LatestRevision"
),
'propertytype' => array(
"Type" => "TypeId"
),
'property' => array(
"ParentRevision" => "ParentRevisionId",
"FirstRevision" => "FirstRevisionId"
),
'node' => array(
"Node" => "NodeId"
),
'relationship' => array(
"Relationship" => "RelationshipId"
),
'user' => array(
"User" => "UserId"
)
);
public function SaveRevision($user)
{
/* Create a working copy of the current object */
$this_copy = clone $this;
/* Create a new object representing the new revision */
$sNode = clone $this;
$sNode->sId = 0;
$sNode->uParentRevisionId = $this->sId;
$sNode->uUserId = $user->sId;
$sNode->uCreationDate = time();
$sNode->InsertIntoDatabase(true);
/* Clear out all changes to the working copy, and save the changed 'latest revision' flag */
$this_copy->RefreshData();
$this_copy->uLatestRevision = false;
$this_copy->InsertIntoDatabase();
/* Set the same flag on the current object, in case of further operations */
$this->uLatestRevision = false;
}
}

@ -0,0 +1,36 @@
<?php
/*
* openNG is more free software. It is licensed under the WTFPL, which
* allows you to do pretty much anything with it, without having to
* ask permission. Commercial use is allowed, and no attribution is
* required. We do politely request that you share your modifications
* to benefit other developers, but you are under no enforced
* obligation to do so :)
*
* Please read the accompanying LICENSE document for the full WTFPL
* licensing text.
*/
if(!isset($_APP)) { die("Unauthorized."); }
class PropertyType extends CPHPDatabaseRecordClass
{
public $table_name = "propertytypes";
public $fill_query = "SELECT * FROM propertytypes WHERE `Id` = :Id";
public $verify_query = "SELECT * FROM propertytypes WHERE `Id` = :Id";
public $prototype = array(
'string' => array(
"Name" => "Name"
),
'numeric' => array(
"UserId" => "UserId"
),
'timestamp' => array(
"CreationDate" => "CreationDate"
),
'user' => array(
"User" => "UserId"
)
);
}

@ -0,0 +1,81 @@
<?php
/*
* openNG is more free software. It is licensed under the WTFPL, which
* allows you to do pretty much anything with it, without having to
* ask permission. Commercial use is allowed, and no attribution is
* required. We do politely request that you share your modifications
* to benefit other developers, but you are under no enforced
* obligation to do so :)
*
* Please read the accompanying LICENSE document for the full WTFPL
* licensing text.
*/
if(!isset($_APP)) { die("Unauthorized."); }
class Relationship extends CPHPDatabaseRecordClass
{
public $table_name = "relationship";
public $fill_query = "SELECT * FROM relationship WHERE `Id` = :Id";
public $verify_query = "SELECT * FROM relationship WHERE `Id` = :Id";
public $prototype = array(
'string' => array(
"Name" => "Name",
"Source" => "Source",
"Notes" => "Notes"
),
'numeric' => array(
"TypeId" => "TypeId",
"ParentRevisionId" => "ParentRevisionId",
"FirstRevisionId" => "FirstRevisionId",
"UserId" => "UserId",
"FromNodeId" => "FromNodeId",
"ToNodeId" => "ToNodeId",
"Reliability" => "Reliability"
),
'timestamp' => array(
"CreationDate" => "CreationDate"
),
'boolean' => array(
"LatestRevision" => "LatestRevision",
"IsBidirectional" => "IsBidirectional"
),
'relationshiptype' => array(
"Type" => "TypeId"
),
'relationship' => array(
"ParentRevision" => "ParentRevisionId",
"FirstRevision" => "FirstRevisionId"
),
'node' => array(
"FromNode" => "FromNodeId",
"ToNode" => "ToNodeId"
),
'user' => array(
"User" => "UserId"
)
);
public function SaveRevision($user)
{
/* Create a working copy of the current object */
$this_copy = clone $this;
/* Create a new object representing the new revision */
$sNode = clone $this;
$sNode->sId = 0;
$sNode->uParentRevisionId = $this->sId;
$sNode->uUserId = $user->sId;
$sNode->uCreationDate = time();
$sNode->InsertIntoDatabase(true);
/* Clear out all changes to the working copy, and save the changed 'latest revision' flag */
$this_copy->RefreshData();
$this_copy->uLatestRevision = false;
$this_copy->InsertIntoDatabase();
/* Set the same flag on the current object, in case of further operations */
$this->uLatestRevision = false;
}
}

@ -0,0 +1,36 @@
<?php
/*
* openNG is more free software. It is licensed under the WTFPL, which
* allows you to do pretty much anything with it, without having to
* ask permission. Commercial use is allowed, and no attribution is
* required. We do politely request that you share your modifications
* to benefit other developers, but you are under no enforced
* obligation to do so :)
*
* Please read the accompanying LICENSE document for the full WTFPL
* licensing text.
*/
if(!isset($_APP)) { die("Unauthorized."); }
class RelationshipType extends CPHPDatabaseRecordClass
{
public $table_name = "relationshiptypes";
public $fill_query = "SELECT * FROM relationshiptypes WHERE `Id` = :Id";
public $verify_query = "SELECT * FROM relationshiptypes WHERE `Id` = :Id";
public $prototype = array(
'string' => array(
"Name" => "Name"
),
'numeric' => array(
"UserId" => "UserId"
),
'timestamp' => array(
"CreationDate" => "CreationDate"
),
'user' => array(
"User" => "UserId"
)
);
}

@ -0,0 +1,33 @@
<?php
/*
* openNG is more free software. It is licensed under the WTFPL, which
* allows you to do pretty much anything with it, without having to
* ask permission. Commercial use is allowed, and no attribution is
* required. We do politely request that you share your modifications
* to benefit other developers, but you are under no enforced
* obligation to do so :)
*
* Please read the accompanying LICENSE document for the full WTFPL
* licensing text.
*/
if(!isset($_APP)) { die("Unauthorized."); }
class Tag extends CPHPDatabaseRecordClass
{
public $table_name = "table";
public $fill_query = "SELECT * FROM table WHERE `Id` = :Id";
public $verify_query = "SELECT * FROM table WHERE `Id` = :Id";
public $prototype = array(
'string' => array(
"Name" => "Name"
),
'numeric' => array(
"NodeId" => "NodeId"
),
'node' => array(
"Node" => "NodeId"
)
);
}
Loading…
Cancel
Save