=Maritime Pircacy Reports of 2013
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once _PS_MODULE_DIR_ . 'sfadvancedmailer/models/Client.php'; | |
/** | |
* | |
* @author Christophe Willemsen | |
*/ | |
class SfAdvancedMailer extends Module { | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#install the plugin | |
cp $NEO4J_SPATIAL_HOME/target/neo4j-spatial-XXXX-server-plugin.zip | |
$NEO4J_HOME/plugins | |
cd unzip neo4j-spatial-XXXX-server-plugin.zip -d $NEO4J_HOME/plugins | |
#start the server | |
$NEO4J_HOME/bin/neo4j start | |
curl http://localhost:7474/db/data/ | |
{ "relationship_index" : "http://localhost:7474/db/data/index/relationship", "node" : "http://localhost:7474/db/data/node", "relationship_types" : "http://localhost:7474/db/data/relationship/types", "extensions_info" : "http://localhost:7474/db/data/ext", "node_index" : "http://localhost:7474/db/data/index/node", "reference_node" : "http://localhost:7474/db/data/node/0", "extensions" : { "SpatialPlugin" : { "addSimplePointLayer" : "http://localhost:7474/db/data/ext/SpatialPlugin/graphdb/addSimplePointLayer", "addNodeToLayer" : "http://localhost:7474/db/data/ext/SpatialPlugin/graphdb/addNodeToLayer" } } } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Lunetics\TimezoneBundle\Validator; | |
use Symfony\Component\Validator\Constraint; | |
/** | |
* @Annotation | |
*/ | |
class Timezone extends Constraint |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<ul class="php_users"> | |
<li class="collection_info" id="collection_total">20</li> | |
<li class="collection_info" id="collection_page">1</li> | |
<li id="collection_data"> | |
<ul class="users" id="user1"> | |
<li id="user_name">ludo</li> | |
<li id="user_email">[email protected]</li> | |
</ul> | |
<ul class="users" id="user2"> | |
<li id="user_name">kris</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
require_once('./vendor/autoload.php'); | |
use Kwattro\Neo4jClient; | |
$bclient = new Neo4jClient(); | |
$client = $bclient->getClient(); | |
$request = $client->get('/db/data'); | |
$response = $request->send(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
id | title | desc | |
---|---|---|---|
1 | crayon | ma description en fr | |
2 | palette maquillage | sublime palette de maquillage | |
3 | set de manucure | set de 4 accessoires de manucure |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Foo | |
{ | |
protected $foo; | |
protected $bar; | |
protected $baz; | |
} |