Files
phpmyadmin/classes/relationSchema.abstract.class.php
2010-06-03 15:28:00 +05:00

18 lines
358 B
PHP

<?php
// Using Abstract Factory Pattern for exporting relational Schema in different Formats !
abstract class exportRelationSchema
{
private $pageTitle; // Title of the page
private $autoLayoutType; // Internal or Foreign Key Relations;
public function setPageTitle($title)
{
$this->pageTitle=$title;
}
public function createPage()
{
}
}
?>