Skip to content

Commit bc5c7ce

Browse files
committed
initial
0 parents  commit bc5c7ce

14 files changed

+1094
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/vendor/*

app/app.php

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
<?php
2+
3+
require_once __DIR__ . '/bootstrap.php';
4+
5+
use Tipsy\Tipsy;
6+
7+
Tipsy::service('Product', '\Tipsy\Doctrine\Resource\Product');
8+
9+
Tipsy::router()
10+
->post('product', function($Product, $Request) {
11+
$p = $Product->create([
12+
name => $Request->name
13+
]);
14+
if ($p->id) {
15+
header('Location: /product/'.$p->id);
16+
}
17+
})
18+
->get('product/:id', function($Product, $Params, $View) {
19+
$p = $Product->load($Params->id);
20+
if ($p) {
21+
$View->display('product', [product => $p]);
22+
} else {
23+
http_response_code(404);
24+
}
25+
})
26+
->otherwise(function($Db, $Product, $View) {
27+
$View->display('home');
28+
return;
29+
30+
$p1 = new \Tipsy\Doctrine\Resource\Product();
31+
$p1->setName('test1');
32+
33+
$p2 = clone $Product;
34+
$p2->name = 'test2';
35+
$p2->save();
36+
37+
$p3 = $Product->load(55);
38+
39+
$Db->entityManager()->persist($p1);
40+
41+
echo $p1->getId();
42+
echo $p2->getId();
43+
return;
44+
$s = $Db->query('select * from products where name=?',['test']);
45+
46+
$s->execute();
47+
while ($row = $s->fetch(PDO::FETCH_OBJ)) {
48+
print_r($row);
49+
}
50+
});
51+
52+
Tipsy::run();

app/bootstrap.php

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
error_reporting(E_ALL ^ (E_NOTICE | E_STRICT));
4+
ini_set('display_errors',true);
5+
6+
require_once __DIR__ . '/../vendor/autoload.php';
7+
8+
\Tipsy\Tipsy::config();
9+
\Tipsy\Tipsy::config(__DIR__.'/config.ini');

app/config.ini

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[db]
2+
host=127.0.0.1
3+
user=root
4+
pass=root
5+
database=tipsy
6+
7+
[doctrine]
8+
model=model
9+
10+
[view]
11+
path=../app
12+
layout=layout

app/home.phtml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<form method="post" action="/product">
2+
<input type="text" name="name" placeholder="name">
3+
<button type="submit">Save</button>
4+
</form>

app/layout.phtml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<!DOCTYPE html>
2+
<html>
3+
<head>
4+
<title>Tipsy Doctrine</title>
5+
<link rel="stylesheet" type="text/css" href="/style.css">
6+
</head>
7+
<body>
8+
<div class="wrapper">
9+
<header><h1>Tipsy Doctrine</h1></header>
10+
<nav>
11+
<a href="/">home</a>
12+
</nav>
13+
<section>
14+
<?=$this->content?>
15+
</section>
16+
<footer>See <a href="https://github.com/arzynik/tipsy/wiki">Documentation</a> for more info on <a href="http://tipsy.la">Tipsy</a>.</footer>
17+
</div>
18+
</body>
19+
</html>

app/product.phtml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
<p>You are viewing <b><?=$product->id?></b> that is named <b><?=$product->name?>.</p>

cli-config.php

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?php
2+
3+
require_once __DIR__ . '/app/bootstrap.php';
4+
5+
return \Doctrine\ORM\Tools\Console\ConsoleRunner::createHelperSet(\Tipsy\Tipsy::db()->entityManager());

composer.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "arzynik/tipsy-example-doctrine",
3+
"description": "An doctrine example for Tipsy",
4+
"license": "MIT",
5+
"keywords": [
6+
"php",
7+
"doctrine",
8+
"framework",
9+
"extension",
10+
"plugin"
11+
],
12+
"require": {
13+
"arzynik/tipsy": "dev-master",
14+
"arzynik/tipsy-doctrine": "dev-master"
15+
},
16+
"autoload": {
17+
"psr-4": {
18+
"Tipsy\\Doctrine\\Resource\\": "model/"
19+
}
20+
}
21+
}

0 commit comments

Comments
 (0)