Skip to content

Commit 0b21cfc

Browse files
author
Natalia Adamek
committed
add entities & delete default implementation
1 parent 2a28f69 commit 0b21cfc

35 files changed

+1409
-286
lines changed

.DS_Store

-8 KB
Binary file not shown.

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
"symfony/dotenv": "^3.4|^4.1",
3535
"symfony/intl": "^3.4|^4.1",
3636
"symfony/web-profiler-bundle": "^3.4|^4.1",
37-
"symfony/web-server-bundle": "^3.4|^4.1"
37+
"symfony/web-server-bundle": "^3.4|^4.1",
38+
"symfony/maker-bundle": "^1.9"
3839
},
3940
"prefer-stable": true,
4041
"autoload": {

etc/.DS_Store

-6 KB
Binary file not shown.

features/dynamically_greeting_a_customer.feature

-17
This file was deleted.

features/running_a_sylius_feature.feature

-54
This file was deleted.

features/statically_greeting_a_customer.feature

-17
This file was deleted.

src/.DS_Store

-8 KB
Binary file not shown.

src/Controller/.DS_Store

-6 KB
Binary file not shown.

src/DependencyInjection/.DS_Store

-6 KB
Binary file not shown.

src/Entity/FacebookConfig.php

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Setono\SyliusFacebookTrackingPlugin\Entity;
6+
7+
final class FacebookConfig implements FacebookConfigInterface
8+
{
9+
/** @var int */
10+
protected $id;
11+
12+
/** @var string */
13+
protected $insert_pixel_code_here;
14+
15+
public function getId(): int {
16+
return $this->id;
17+
}
18+
19+
public function getInsertPixelCodeHere(): string
20+
{
21+
return $this->insert_pixel_code_here;
22+
}
23+
24+
public function setInsertPixelCodeHere(string $insert_pixel_code_here): void {
25+
$this->insert_pixel_code_here = $insert_pixel_code_here;
26+
}
27+
}
+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Setono\SyliusFacebookTrackingPlugin\Entity;
6+
7+
use Sylius\Component\Resource\Model\ResourceInterface;
8+
9+
interface FacebookConfigInterface extends ResourceInterface
10+
{
11+
public function getId(): int;
12+
public function getInsertPixelCodeHere(): string;
13+
public function setInsertPixelCodeHere(string $insert_pixel_code_here): void;
14+
}

src/Resources/.DS_Store

-6 KB
Binary file not shown.

src/Resources/config/.DS_Store

-6 KB
Binary file not shown.

src/Resources/config/admin_routing.yml

-1
This file was deleted.

src/Resources/config/config.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
imports:
2+
- { resource: "@SetonoSyliusFacebookTrackingPlugin/Resources/config/resources.yml" }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<doctrine-mapping xmlns="http://doctrine-project.org/schemas/orm/doctrine-mapping"
4+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
5+
xsi:schemaLocation="http://doctrine-project.org/schemas/orm/doctrine-mapping
6+
http://doctrine-project.org/schemas/orm/doctrine-mapping.xsd">
7+
8+
<entity name="Setono\SyliusFacebookTrackingPlugin\Entity\FacebookConfig" table="setono_facebook_tracking_plugin">
9+
<id name="id" type="integer">
10+
<generator strategy="AUTO"/>
11+
</id>
12+
13+
<field name="insert_pixel_code_here" type="string" />
14+
</entity>
15+
16+
</doctrine-mapping>

src/Resources/config/resources.yml

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
imports:
2+
- { resource: resources/facebook_config.yml }
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
sylius_resource:
2+
resources:
3+
setono_sylius_facebook_tracking_plugin.facebook_config:
4+
driver: doctrine/orm
5+
classes:
6+
model: Setono\SyliusFacebookTrackingPlugin\Entity\FacebookConfig
7+
interface: Setono\SyliusFacebookTrackingPlugin\Entity\FacebookConfigInterface

src/Resources/config/routing.yml

Whitespace-only changes.

src/Resources/config/services.xml

-7
This file was deleted.

src/Resources/config/services.yml

Whitespace-only changes.

src/Resources/config/shop_routing.yml

-13
This file was deleted.

src/Resources/public/.DS_Store

-6 KB
Binary file not shown.

src/Resources/views/.DS_Store

-6 KB
Binary file not shown.

tests/.DS_Store

-6 KB
Binary file not shown.

tests/Application/.DS_Store

-8 KB
Binary file not shown.

tests/Application/composer.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
{
22
"name": "sylius/plugin-skeleton-test-application",
33
"description": "Sylius application for plugin testing purposes (composer.json needed for project dir resolving)",
4-
"license": "MIT"
4+
"license": "MIT",
5+
"require-dev": {
6+
"symfony/maker-bundle": "^1.9"
7+
}
58
}

0 commit comments

Comments
 (0)