18 lines
358 B
PHP
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()
|
|
{
|
|
|
|
}
|
|
}
|
|
?>
|