1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/documentation.php

889 lines
37 KiB
PHP
Raw Normal View History

<?php
require_once("highlight.php");
error_reporting(E_ALL);
$h = new PHP_Highlight();
function render($title,$t,$e) {
global $h;
print $e." <a name=\"$e\"><u>".$t."</u></a><br><br>\n";
$c = "";
if(file_exists("docs/$e.php")) {
rename("docs/$e.php","docs/$title - $t.php");
}
if(file_exists("docs/$t.php")) {
rename("docs/$t.php","docs/$title - $t.php");
}
if(file_exists("docs/$title - $t.php")) {
$c = file_get_contents("docs/$title - $t.php");
if(substr($c,0,5) == "<?php") {
include("docs/$title - $t.php");
} else
print $c."<br><br>";
}
$c = "";
if(file_exists("codes/$e.php")) {
rename("codes/$e.php","codes/$title - $t.php");
}
if(file_exists("codes/$t.php")) {
rename("codes/$t.php","codes/$title - $t.php");
}
if(file_exists("codes/$title - $t.php")) {
print "<table border=1 class='dashed' cellpadding=0 cellspacing=0>";
print "<tr><td>";
$c = file_get_contents("codes/$title - $t.php");
$c = trim($c);
$h->loadString($c);
print $h->toHtml();
print "</td></tr>";
print "</table>";
}
print "<br>";
}
2007-02-23 22:41:42 +03:00
/**
public function parseIndex($index, $path = array(), $counters = array())
{
$ret = array();
2007-02-23 22:41:42 +03:00
foreach ($index as $k => $v) {
$i = count($path) - 1;
$counters[$i]++;
if (is_array($v)) {
if ( ! is_numeric($k)) {
$tmp = $path;
$tmp[] = $k;
$chapterName = ( ! empty($path)) ? implode(' - ', $path) . ' - ' . $k : $k;
$ret[] = array('index' => implode('.', $counters),
'name' => $chapterName);
}
$ret = array_merge($ret, $this->parseIndex($v, $tmp, $counters));
} else {
$chapterName = ( ! empty($path)) ? implode(' - ', $path) . ' - ' . $v : $v;
$ret[] = array('index' => implode('.', $counters),
'name' => $chapterName);
}
}
return $ret;
}*/
function render_block($name) {
if(file_exists("docs/$name.php")) {
$c = file_get_contents("docs/$name.php");
if(substr($c,0,5) == "<?php") {
include("docs/$name.php");
} else {
print $c."<br><br>";
}
}
if(file_exists("codes/$name.php")) {
$c = file_get_contents("codes/$name.php");
$c = trim($c);
renderCode($c);
}
}
2006-11-11 00:29:13 +03:00
function renderCode($c = null) {
2006-11-11 00:29:13 +03:00
global $h;
if( ! empty($c)) {
2006-11-11 00:29:13 +03:00
$h->loadString($c);
print "<table width=500 border=1 class='dashed' cellpadding=0 cellspacing=0>";
2006-12-04 02:41:38 +03:00
print "<tr><td><b>";
2006-11-11 00:29:13 +03:00
$h->toHtml();
2006-12-04 02:41:38 +03:00
print "</b></td></tr>";
print "</table>";
}
}
function array2path($array, $path = '') {
$arrayValues = array();
$index = 1;
foreach ($array as $k => $value) {
$p = ($path !== '')?$path.".".$index:$index;
if (is_scalar($value) || is_resource($value)) {
$arrayValues[$p] = $value;
} elseif (is_array($value)) {
$arrayValues[$p] = $k;
$arrayValues = $arrayValues + array2path($value, $p);
}
$index++;
}
return $arrayValues;
}
2006-12-16 01:31:28 +03:00
$menu = array('Getting started' =>
array(
2006-12-16 01:31:28 +03:00
'Requirements',
'Installation',
'Compiling',
'Starting new project',
'Setting table definition' => array(
'Introduction',
'Table and class naming',
'Field(Column) naming',
2007-02-09 23:56:04 +03:00
'Column aliases',
2007-01-12 03:40:50 +03:00
'Table options',
2006-12-16 01:31:28 +03:00
'Data types and lengths',
'Constraints and validators',
'Default values',
'Enum emulation',
),
2007-02-11 14:13:37 +03:00
'Working with existing databases' => array(
'Introduction',
'Making the first import',
'Import options',
),
2006-12-16 01:31:28 +03:00
'Record identifiers' => array(
'Introduction',
'Autoincremented',
'Natural',
'Composite',
2007-02-09 23:56:04 +03:00
'Sequence'),
'Indexes' => array(
'Introduction',
'Adding indexes',
'Index options',
'Special indexes',
),
2007-02-11 14:13:37 +03:00
),
2006-12-16 01:31:28 +03:00
'Connection management' =>
2006-12-15 00:03:58 +03:00
array(
2006-12-16 01:31:28 +03:00
'Opening a new connection',
'Lazy-connecting to database',
'Managing connections',
'Connection-component binding'
2006-12-15 00:03:58 +03:00
),
2006-12-16 01:31:28 +03:00
'Schema reference' =>
array(
2006-12-16 01:31:28 +03:00
'Data types' => array(
'Introduction',
'Type modifiers',
'Boolean',
'Integer',
'Float',
'String',
'Array',
'Object',
'Blob',
'Clob',
'Timestamp',
'Time',
'Date',
'Enum',
'Gzip',
),
2007-02-11 14:13:37 +03:00
'Foreign keys' => array(
'Introduction',
),
2006-12-22 01:06:08 +03:00
/**
2006-12-16 01:31:28 +03:00
'Column attributes' => array(
'Introduction',
'Primary',
'Autoincrement',
'Default',
'Zerofill',
'Collation',
'Charset',
'Unsigned',
'Fixed',
'Enum',
'Unique',
'Nospace',
'Notblank',
'Notnull',
'Email',
'Date',
'Range',
'Numeric',
'Regexp',
'Ip',
'Usstate',
2006-12-15 00:03:58 +03:00
),
2006-12-16 01:31:28 +03:00
'Identifiers' => array(
'Introduction',
'Autoincremented',
'Natural',
'Composite',
2006-12-22 01:06:08 +03:00
'Sequential')*/
),
2006-12-16 01:31:28 +03:00
'Basic Components' =>
array(
2006-12-16 01:31:28 +03:00
'Manager'
=> array('Introduction',
'Opening a new connection',
'Managing connections'),
'Record'
=> array('Introduction',
'Creating new records',
'Retrieving existing records',
'Accessing properties',
'Updating records',
'Deleting records',
'Getting record state',
'Getting object copy',
'Serializing',
'Checking Existence',
'Callbacks'),
'Connection'
=> array('Introduction',
'Available drivers',
'Getting a table object',
'Flushing the connection',
'Querying the database',
'Getting connection state'),
'Collection'
=> array('Introduction',
'Accessing elements',
'Adding new elements',
'Getting collection count',
'Saving the collection',
'Deleting collection',
//'Fetching strategies',
'Key mapping',
'Loading related records',
'Collection expanding',
),
2006-12-16 01:31:28 +03:00
'Table' => array('Introduction',
'Getting table information',
'Finder methods',
'Custom table classes',
'Custom finders',
'Getting relation objects'),
'Query' => array('Introduction',
'FROM - selecting tables',
'LIMIT and OFFSET - limiting the query results',
'WHERE - setting query conditions',
'HAVING conditions',
'ORDER BY - sorting query results',
),
'RawSql' => array(
'Introduction',
'Using SQL',
'Adding components',
'Method overloading'),
'Db' => array(
'Introduction',
'Connecting to a database',
'Using event listeners',
'Chaining listeners'),
/**
2006-12-16 01:31:28 +03:00
'Statement - <font color='red'>UNDER CONSTRUCTION</font>' => array('Introduction',
'Setting parameters',
'Getting parameters',
'Getting row count',
'Executing the statement'),
*/
2006-12-16 01:31:28 +03:00
'Exceptions' => array(
'Overview',
'List of exceptions'
)
),
2006-12-16 01:31:28 +03:00
'Mapping object relations' =>
array(
2006-12-16 01:31:28 +03:00
'Introduction',
'Composites and aggregates',
'Relation aliases',
'Foreign key associations' => array(
'One-to-One',
'One-to-Many, Many-to-One',
'Tree structure'),
'Join table associations' => array(
'One-to-One',
'One-to-Many, Many-to-One',
'Many-to-Many',
'Self-referencing'),
'Dealing with relations' => array(
'Creating related records',
'Retrieving related records',
'Updating related records',
'Deleting related records',
'Working with associations'),
'Inheritance' =>
array('One table many classes',
'One table one class',
'Column aggregation'
),
),
2007-01-12 15:04:55 +03:00
'Hierarchical data' => array(
'Introduction' => array(
'About', 'Setting up', 'Node interface', 'Tree interface', 'Traversing or Walking Trees', 'Read me'),
2007-01-12 15:04:55 +03:00
'Adjacency list' => array(
'Introduction'),
'Nested set' => array(
'Introduction', 'Setting up', 'Tree options', 'Node support', 'Tree support', 'Read me'),
2007-01-12 15:04:55 +03:00
'Materialized path' => array(
'Introduction',
),
'Examples'
2007-01-12 15:04:55 +03:00
),
2006-12-16 01:31:28 +03:00
'Configuration' =>
array(
2006-12-16 01:31:28 +03:00
'Introduction',
'Levels of configuration',
'Setting attributes' => array(
'Portability',
'Identifier quoting',
'Table creation',
'Fetching strategy',
'Batch size',
'Session lockmode',
'Event listener',
'Validation',
'Offset collection limit'
)
),
2006-12-16 01:31:28 +03:00
'Advanced components' => array(
'Eventlisteners' =>
array(
2006-12-16 01:31:28 +03:00
'Introduction',
'Creating new listener',
'List of events',
'Listening events',
'Chaining',
'AccessorInvoker',
'Creating a logger',
),
2006-12-16 01:31:28 +03:00
'Validators' => array(
'Introduction',
'More Validation',
'Valid or Not Valid',
'List of predefined validators'
),
2006-12-16 01:31:28 +03:00
'View' => array(
'Intoduction',
'Managing views',
'Using views'
),
2006-12-16 01:31:28 +03:00
'Cache' => array(
'Introduction',
'Query cache'),
'Locking Manager' => array(
'Introduction',
'Examples',
'Planned',
'Technical Details',
2007-01-11 00:16:27 +03:00
'Maintainer'),
'Db_Profiler' => array(
'Introduction',
'Basic usage',
'Advanced usage',
),
2006-12-24 01:45:36 +03:00
'Hook' => array(
'Introduction',
'Building queries',
'List of parsers',
),
/**
2006-12-16 01:31:28 +03:00
'Debugger' => array(
'Introduction',
'Debugging actions'),
'Library' => array(
'Introduction',
'Using library functions'),
'Iterator' => array(
'Introduction',
'BatchIterator',
'ExpandableIterator',
'OffsetIterator')
*/
),
2006-12-16 01:31:28 +03:00
'DQL (Doctrine Query Language)' =>
array(
'Introduction',
2007-02-09 23:56:04 +03:00
'SELECT queries' =>
array('DISTINCT keyword',
'Aggregate values',
),
'UPDATE queries',
'DELETE queries',
'FROM clause',
'WHERE clause',
'Conditional expressions' =>
array('Literals',
'Input parameters',
'Operators and operator precedence',
'Between expressions',
'In expressions',
'Like Expressions',
'Null Comparison Expressions',
'Empty Collection Comparison Expressions',
'Collection Member Expressions',
'Exists Expressions',
'All and Any Expressions',
'Subqueries'),
'Functional Expressions' =>
array('String functions',
'Arithmetic functions',
'Datetime functions',
'Collection functions'),
'GROUP BY, HAVING clauses',
2007-02-09 23:56:04 +03:00
'ORDER BY clause'
=> array('Introduction',
'Sorting by an aggregate value',
'Using random order'),
2006-10-29 13:51:12 +03:00
'LIMIT and OFFSET clauses' =>
array('Introduction',
'Driver portability',
'The limit-subquery-algorithm',
),
'Examples',
'BNF'),
2006-12-16 01:31:28 +03:00
'Transactions' => array(
'Introduction',
'Unit of work',
'Nesting',
'Savepoints',
'Locking strategies' =>
array('Pessimistic locking',
'Optimistic locking'),
2006-12-16 01:31:28 +03:00
'Lock modes',
'Isolation levels',
'Deadlocks',
2007-02-09 23:56:04 +03:00
),
'Caching' => array(
'Introduction',
'Availible options',
'Drivers' =>
array('Memcache',
'APC',
'Sqlite'
),
2006-10-29 13:51:12 +03:00
),
2006-12-16 01:31:28 +03:00
'Native SQL' => array(
'Scalar queries',
'Component queries',
'Fetching multiple components',
),
/**
2006-12-16 01:31:28 +03:00
'Developer components' => array(
'DataDict' => array(
'Introduction',
'Usage'
),
2006-12-16 01:31:28 +03:00
'IndexGenerator' =>
array(
2006-12-16 01:31:28 +03:00
'Introduction',
'Usage'),
'Relation' => array(
'Introduction',
'Types of relations',
),
2006-12-16 01:31:28 +03:00
'Null' => array(
'Introduction',
'Extremely fast null value checking'
),
2006-12-16 01:31:28 +03:00
'Access' => array(
'Introduction',
'Usage'
),
2006-12-16 01:31:28 +03:00
'Configurable' => array(
'Introduction',
'Usage'
),
),
*/
2006-11-11 23:15:08 +03:00
/**
2006-12-16 01:31:28 +03:00
'Improving performance' => array(
'Introduction',
'Data types' =>
2006-10-29 13:51:12 +03:00
array(
2006-12-16 01:31:28 +03:00
'Enum',
2006-10-29 13:51:12 +03:00
),
2006-12-16 01:31:28 +03:00
'Primary keys' => array(
'When to use surrogate primary keys',
2006-10-29 13:51:12 +03:00
),
2006-12-16 01:31:28 +03:00
'Constraints' => array(
'General tips',
'Foreign keys',
'Triggers',
2006-10-29 13:51:12 +03:00
),
2006-12-16 01:31:28 +03:00
'Data manipulation' => array(
'INSERT queries',
'UPDATE queries',
'DELETE queries',
2006-10-29 13:51:12 +03:00
),
2006-12-16 01:31:28 +03:00
'Indexes' => array(
'General tips',
'Using compound indexes',
2006-10-29 13:51:12 +03:00
),
2006-12-16 01:31:28 +03:00
'Transactions' => array(
'General tips',
'Locks',
'Isolation',
2006-10-29 13:51:12 +03:00
),
2006-12-16 01:31:28 +03:00
'Data fetching' => array(
'General tips',
2006-10-29 13:51:12 +03:00
),
2006-12-16 01:31:28 +03:00
'Normalization' => array(
2006-10-29 13:51:12 +03:00
),
2006-12-16 01:31:28 +03:00
'Caching' => array(
'General tips'
2006-10-29 13:51:12 +03:00
),
2006-12-16 01:31:28 +03:00
'Performance monitoring' => array( 'Using the database profiler')
2006-10-29 13:51:12 +03:00
),
2006-11-11 23:15:08 +03:00
*/
2006-12-16 01:31:28 +03:00
'Connection modules' => array(
'Export' => array('Introduction',
'Creating new table',
'Altering table'
2006-12-15 00:03:58 +03:00
),
2006-12-16 01:31:28 +03:00
'Import' => array('Introduction',
'Getting table info',
'Getting foreign key info',
'Getting view info',
2006-12-15 00:03:58 +03:00
),
2006-12-16 01:31:28 +03:00
'Util' => array('Using explain'),
'DataDict' => array('Getting portable type',
'Getting database declaration',
'Reserved keywords'),
2006-12-15 00:03:58 +03:00
),
2006-12-29 02:46:12 +03:00
'Drivers' =>
array('Oracle'
=> array('Making unsuported functions work'),
'Mysql'
=> array('Tips and tricks'),
),
2006-12-16 01:31:28 +03:00
'Technology' => array(
'Architecture',
'Design patterns used',
'Speed',
'Internal optimizations' =>
array('DELETE',
'INSERT',
'UPDATE'),
),
2006-12-16 01:31:28 +03:00
'Real world examples' => array('User management system','Forum application','Album lister'),
2006-12-16 01:31:28 +03:00
'Coding standards' => array(
'Overview' =>
array(
2006-12-16 01:31:28 +03:00
'Scope',
'Goals'
),
2006-12-16 01:31:28 +03:00
'PHP File Formatting' => array(
'General',
'Indentation',
'Maximum line length',
'Line termination'
),
2006-12-16 01:31:28 +03:00
'Naming Conventions' => array(
'Classes',
'Interfaces',
'Filenames',
'Functions and methods',
'Variables',
'Constants',
'Record columns',
),
2006-12-16 01:31:28 +03:00
'Coding Style' => array(
'PHP code demarcation',
'Strings',
'Arrays',
'Classes',
'Functions and methods',
'Control statements',
'Inline documentation'
),
2006-12-29 02:46:12 +03:00
'Testing' => array(
'Writing tests',
))
);
2007-02-06 17:22:51 +03:00
$title = '';
if (!empty($_REQUEST['index'])){
$ex = explode(".",$_REQUEST["index"]);
$paths = array2path($menu);
2007-02-06 17:22:51 +03:00
if( isset($paths[$ex[0]])){
$currIndex = '';
for($i=0; $i<count($ex); $i++){
if ($currIndex) {$currIndex.=".";}
$currIndex .= $ex[$i];
if (!isset($paths[$currIndex])){ break; }
$title .= " - ". $paths[$currIndex];
}
}
}
include("top.php");
?>
<table width="100%" cellspacing=0 cellpadding=0>
<tr>
<td width=50>
<td>
<td align="left" valign="top">
<table width="100%" cellspacing=1 cellpadding=1>
<tr>
<td colspan=2 bgcolor="white">
<img src="images/logo.jpg" align="left"><b class="title">Doctrine - PHP Data Persistence and ORM Tool</b>
<hr>
</td>
</tr>
<tr>
<td bgcolor="white" valign="top">
2006-10-21 13:13:32 +04:00
<?php
if( ! isset($_REQUEST["index"])) {
$i = 1;
$missing = array();
$missing[0] = 0;
$missing[1] = 0;
2006-10-21 13:13:32 +04:00
print "<dl>\n";
foreach($menu as $title => $titles) {
2006-10-21 13:13:32 +04:00
print "<dt>" . $i . ". <a href=\"".$_SERVER['PHP_SELF']."?index=$i#$i\">".$title."</a></dt>\n";
print "<dd><dl>";
$i2 = 1;
foreach($titles as $k => $t) {
$e = "$i.".$i2."";
if(is_array($t)) {
2006-10-21 13:13:32 +04:00
print "<dt>".$e." <a href=\"".$_SERVER['PHP_SELF']."?index=$i.$i2#$e\">".$k."</a><dt>\n";
$i3 = 1;
2006-10-21 13:13:32 +04:00
print "<dd><dl>";
foreach($t as $k2 => $v2) {
$str = "";
if( ! file_exists("docs/$title - $k - $v2.php")) {
$missing[0]++;
$str .= " [ <font color='red'>doc</font> ] ";
//touch("docs/$title - $k - $v2.php");
}
if( ! file_exists("codes/$title - $k - $v2.php")) {
$missing[1]++;
$str .= " [ <font color='red'>code</font> ] ";
//touch("codes/$title - $k - $v2.php");
}
$e = implode(".",array($i,$i2,$i3));
2006-11-11 23:15:08 +03:00
print "<dt>".$e." <a href=\"".$_SERVER['PHP_SELF']."?index=$i.$i2#$e\">".$v2."</a></dt>\n";
$i3++;
}
2006-10-21 13:13:32 +04:00
print "</dl></dd>";
} else {
$str = "";
if( ! file_exists("docs/$title - $t.php")) {
$missing[0]++;
$str .= " [ <font color='red'>doc</font> ] ";
//touch("docs/$title - $t.php");
}
if( ! file_exists("codes/$title - $t.php")) {
$missing[1]++;
$str .= " [ <font color='red'>code</font> ] ";
//touch("codes/$title - $t.php");
}
2006-11-11 23:15:08 +03:00
print "<dt>".$e." <a href=\"".$_SERVER['PHP_SELF']."?index=$i#$e\">".$t."</a></dt>\n";
}
$i2++;
2006-10-21 13:13:32 +04:00
}
$i++;
2006-10-21 13:13:32 +04:00
print "</dl></dd>";
}
2006-10-21 13:13:32 +04:00
print "</dl>\n";
} else {
$i = 1;
// $paths was generated before, to display a correct document title
if( ! isset($paths[$ex[0]]))
exit;
$break = false;
$tmp = $paths;
2006-10-20 23:34:07 +04:00
foreach($tmp as $path => $title) {
$e = explode(".", $path);
if(count($e) > 2) {
unset($tmp[$path]);
}
}
2006-10-20 23:34:07 +04:00
$prev = 1;
2006-10-20 23:34:07 +04:00
foreach($tmp as $path => $title) {
if($break)
break;
2006-10-20 23:34:07 +04:00
if($path === $_REQUEST["index"]) {
$break = true;
} else {
$prev = $path;
}
}
2006-10-20 23:34:07 +04:00
$index = $_REQUEST['index'];
2006-10-20 23:34:07 +04:00
print "<table width='100%'>";
print "<tr><td colspan=3 align='center'><b></td></tr>";
print "<tr><td colspan=3 align='center'><b class='title'>".$paths[$ex[0]]."</b></td></tr>";
print "<tr><td align='left'><b><a href=documentation.php?index=$prev>Prev</a></b></td>";
print "<td align='right'><b><a href=documentation.php?index=$path>Next</a></b></td></tr>";
print "<tr><td>&nbsp;</td></tr>";
print "</table>";
$tmp = $ex;
if(count($tmp) > 2) {
//array_pop($tmp);
}
foreach($tmp as $k => $v) {
$numbers[] = $v;
$curr = implode(".",$numbers);
$stack[] = $paths[$curr];
}
if(isset($ex[1])) {
$name = implode(" - ", $stack);
print "<a name='$path'><b class='title'>".$paths[$curr]."</b></a><hr>";
$n = $numbers;
$o = $paths[$n[0]];
$numpath = implode(".", array($n[0], $n[1]));
$o2 = $paths[$numpath];
$value = $menu[$o];
if( ! is_array($value))
exit;
if(in_array($o2, $value)) {
render_block($name);
} else {
$value = $menu[$o][$o2];
if(is_array($value)) {
foreach($value as $k => $title) {
$numpath2 = $numpath . '.' . ($k + 1);
print "<br \><a name='".$numpath2."'><b class='title'>".$title."</b></a><hr style='height: 1px' \>";
$s = $name." - ".$title;
render_block($s);
}
}
}
} else {
2006-10-20 23:34:07 +04:00
$tmp = $paths[$ex[0]];
$i = 1;
foreach($menu[$tmp] as $title => $value) {
$n = $ex[0].".".$i;
if(is_scalar($value)) {
print "<dd>".$n.". <a href=\"documentation.php?index=".$n."\">".$value."</a><br \>\n";
} else {
print "<dd>".$n.". <a href=\"documentation.php?index=".$n."\">".$title."</a><br \>\n";
}
$i++;
}
}
}
?>
<td bgcolor="white" align="left" valign="top" width=300>
<?php
$i = 1;
print "<dd>-- <b><a href=documentation.php>index</a></b><br>\n";
foreach($menu as $title => $titles) {
print "<dd>".$i.". <a href=\"".$_SERVER['PHP_SELF']."?index=$i\">".$title."</a><br>\n";
$i++;
}
?>
</td>
<td>
<tr>
<td bgcolor="white" valign="top" colspan="2">
<?php
/**
foreach($menu as $title => $titles) {
if($i == $ex[0]) {
print $i.". <b><a class=\"big\" name=\"$i\">".$title."</a></b><hr><br>\n";
$i2 = 1;
foreach($titles as $k => $t) {
$e = "$i.".$i2;
if(is_array($t)) {
$tmp = "$title - $k";
if( ! isset($ex[1]) || $i2 != $ex[1]) {
$i2++;
continue;
}
print $e." <b><a class=\"big\" name=\"$e\">".$k."</a></b><hr><br><br>\n";
foreach($t as $k2 => $t2) {
if( ! isset($ex[1]) || $i2 != $ex[1])
break;
$e = "$i.".$i2.".".($k2+1);
render($tmp,$t2,$e);
}
} else {
if( ! isset($ex[1])) {
render($title,$t,$e);
}
}
$i2++;
}
}
$i++;
}
*/
?>
</td>
</tr>
</td>
<td>
</td>
</tr>
</table>