Skip to content

Commit 0689f91

Browse files
committed
Merge tag '2.0.0'
Stable release 2.0.0
2 parents 365c0be + c6914b2 commit 0689f91

20 files changed

+292
-104
lines changed

.gitattributes

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
.check-author.yml
1+
.check-author.yml export-ignore
22
.gitattributes export-ignore
33
.gitignore export-ignore
44
.travis.yml export-ignore
55
build.default.properties export-ignore
66
build.xml export-ignore
77
phpunit.xml.dist export-ignore
8+
/.github export-ignore
89
/tests export-ignore

.github/CONTRIBUTING.md

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# How to contribute
2+
3+
We are really glad you're reading this, because we need volunteer developers to
4+
help this project come to fruition.
5+
6+
If you haven't already, come find us in IRC (#contao.mm on freenode).
7+
We want you working on things you're excited about.
8+
9+
The following is a set of guidelines for contributing to MetaModels and its
10+
packages, which are hosted in the [MetaModels organization][1] on GitHub. These
11+
are just guidelines, not rules, use your best judgement and feel free to
12+
propose changes to this document in a pull request.
13+
14+
## Submitting issues
15+
16+
* Use the search function to see if a similar issue has already been submitted.
17+
* Describe the issue in detail and include all the steps to follow in order to
18+
reproduce the bug.
19+
* Include the version of Contao, PHP and MetaModels you are using (if possible
20+
with a detailed list of other installed extensions that might be related).
21+
* Include screenshots or screencasts if possible; they are immensely helpful.
22+
* If you are reporting a bug, please include any related error message you are
23+
seeing and also check the `system/logs/error.log` file. The error message is
24+
not just the message but also the complete(!) stack trace below the message.
25+
This trace is a long list of function calls which helps us to diagnose the
26+
problem en detail.
27+
28+
## Submitting changes
29+
30+
* Please send a [GitHub Pull Request to MetaModels][1] with a clear list of what
31+
you've done (read more about [pull requests][2]).
32+
* When you send a pull request, we will love you forever if you include
33+
phpunit tests. We can always use more test coverage.
34+
* Please follow the [phpcq 2.0][3] coding standards.
35+
* Please make sure all of your commits are atomic (only one feature or fix per
36+
commit).
37+
* We use phpcq/all-tasks in these projects, so please check your changes
38+
using phpcq when submitting a pull request.
39+
* Create your pull request against the [`master`][4] branch for bug fixes or the
40+
[`develop`][5] branch for new features.
41+
* Include screenshots in your pull request whenever possible.
42+
43+
Always write a clear log message for your commits.
44+
One-line messages are fine for small changes, but bigger changes should look
45+
like this:
46+
47+
$ git commit -m "A brief summary of the commit
48+
>
49+
> A paragraph describing what changed and its impact."
50+
51+
## Testing
52+
53+
We have a handful of unit tests. Please write unit tests for new code you
54+
create.
55+
56+
## Git commit messages
57+
58+
* Use the present tense ("Add feature" not "Added feature").
59+
* Use the imperative mood ("Move cursor to …" not "Moves cursor to …").
60+
* Reference issues and pull requests liberally.
61+
62+
[1]: https://github.com/MetaModels
63+
[2]: http://help.github.com/pull-requests/
64+
[3]: https://github.com/phpcq/coding-standard
65+
[4]: https://github.com/MetaModels/attribute_select/pull/new/master
66+
[5]: https://github.com/MetaModels/attribute_select/pull/new/develop

.github/ISSUE_TEMPLATE.md

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
## Checklist before I submit this issue report
2+
3+
I confirm that:
4+
- [ ] I have tested this with the latest version available
5+
- [ ] I have read documentation @ http://metamodels.readthedocs.org/en/ or http://metamodels.readthedocs.org/de/
6+
- [ ] I have checked the Contao community forums for references https://community.contao.org/
7+
- [ ] I have checked existing issues for duplicates and found none @ https://github.com/MetaModels/attribute_select/issues?q=is%3Aissue
8+
9+
## My environment is:
10+
11+
(Please fill in the actual values from your environment)
12+
13+
| Key | Value | Comments |
14+
| ----------------------------------- | ---------| ---------------------------------|
15+
| PHP version: | | |
16+
| Contao version: | | |
17+
| MetaModels version: | | |
18+
| Installation via composer | (yes/no) | |
19+
| Installed MetaModels packages | | |
20+
21+
## Issue description
22+
23+
(Describe the problem you are having)
24+
25+
## Steps to reproduce
26+
27+
1. [First Step]
28+
2. [Second Step]
29+
3. [and so on…]
30+
31+
## Describe the behaviour of the application
32+
33+
(Tell us what happens)
34+
35+
## Describe the expected behaviour of the application
36+
37+
(Tell us what should have happened)
38+
39+
## Screenshots
40+
41+
(Add some visual love or even a video if you can)

.github/PULL_REQUEST_TEMPLATE.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
## Description
2+
3+
Please explain the detailed changes you made here.
4+
Reference any issue number this pull request fixes.
5+
6+
## Checklist
7+
- [ ] Read and understood the [CONTRIBUTING guidelines](CONTRIBUTING.md)
8+
- [ ] Created tests, if possible
9+
- [ ] All tests passing
10+
- [ ] Extended the README / documentation, if necessary
11+
- [ ] Added myself to the `@authors` in touched PHP files
12+
- [ ] Checked the changes with phpcq and introduced no new issues

.travis.yml

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,17 @@
11
language: php
22

33
php:
4-
- "5.3"
54
- "5.4"
65
- "5.5"
76
- "5.6"
87
- "7.0"
8+
- "7.1"
99

1010
env:
11-
- CONTAO_VERSION=~3.2.0
12-
- CONTAO_VERSION=~3.3.0
13-
- CONTAO_VERSION=~3.4.0
1411
- CONTAO_VERSION=~3.5.0
1512

1613
# Exclude impossible Contao Version combinations.
1714
matrix:
18-
exclude:
19-
- php: "5.3"
20-
env: CONTAO_VERSION=~3.5.0
2115

2216
sudo: false
2317

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
[![Latest Version tagged](http://img.shields.io/github/tag/MetaModels/attribute_select.svg)](https://github.com/MetaModels/attribute_select/tags)
33
[![Latest Version on Packagist](http://img.shields.io/packagist/v/MetaModels/attribute_select.svg)](https://packagist.org/packages/MetaModels/attribute_select)
44
[![Installations via composer per month](http://img.shields.io/packagist/dm/MetaModels/attribute_select.svg)](https://packagist.org/packages/MetaModels/attribute_select)
5+
[![Dependency Status](https://www.versioneye.com/php/metamodels:attribute_select/badge.svg)](https://www.versioneye.com/php/metamodels:attribute_select)
56

67
Select
78
======

composer.json

+5-10
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,17 @@
2626
"source":"https://github.com/MetaModels/attribute_select"
2727
},
2828
"require":{
29-
"php":">=5.3",
30-
"contao/core": ">=3.2,<3.6",
29+
"php": ">=5.4",
30+
"contao/core": "^3.5.5",
3131
"contao-community-alliance/composer-plugin": "~2.0",
32-
"contao-community-alliance/dc-general": "~2.0",
33-
"metamodels/core":"~2.0"
32+
"contao-community-alliance/dc-general": "~2.0@beta",
33+
"metamodels/core":"~2.0@alpha"
3434
},
3535
"require-dev": {
3636
"cyberspectrum/contao-toolbox": "~0.6",
3737
"phpcq/all-tasks": "~1.1",
3838
"metamodels/base-unit-tests": "~1.0"
3939
},
40-
"conflict": {
41-
"contao/core": "3.4.0"
42-
},
4340
"autoload": {
4441
"psr-0": {
4542
"MetaModels\\": "src"
@@ -66,7 +63,5 @@
6663
"dev-master": "2.0.x-dev",
6764
"dev-develop": "2.1.x-dev"
6865
}
69-
},
70-
"minimum-stability": "dev",
71-
"prefer-stable": true
66+
}
7267
}

contao/config/autoload.php

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
<?php
2+
23
/**
3-
* The MetaModels extension allows the creation of multiple collections of custom items,
4-
* each with its own unique set of selectable attributes, with attribute extendability.
5-
* The Front-End modules allow you to build powerful listing and filtering of the
6-
* data in each collection.
4+
* This file is part of MetaModels/attribute_select.
5+
*
6+
* (c) 2012-2016 The MetaModels team.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* This project is provided in good faith and hope to be usable by anyone.
712
*
813
* @package MetaModels
914
* @subpackage AttributeSelect

contao/config/event_listeners.php

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
<?php
2+
23
/**
3-
* The MetaModels extension allows the creation of multiple collections of custom items,
4-
* each with its own unique set of selectable attributes, with attribute extendability.
5-
* The Front-End modules allow you to build powerful listing and filtering of the
6-
* data in each collection.
4+
* This file is part of MetaModels/attribute_select.
5+
*
6+
* (c) 2012-2016 The MetaModels team.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* This project is provided in good faith and hope to be usable by anyone.
712
*
813
* @package MetaModels
914
* @subpackage AttributeSelect
@@ -22,10 +27,14 @@
2227

2328
return array
2429
(
30+
MetaModelsEvents::SUBSYSTEM_BOOT => array(
31+
function (MetaModelsBootEvent $event) {
32+
new BackendSubscriber($event->getServiceContainer());
33+
}
34+
),
2535
MetaModelsEvents::SUBSYSTEM_BOOT_BACKEND => array(
2636
function (MetaModelsBootEvent $event) {
2737
new Subscriber($event->getServiceContainer());
28-
new BackendSubscriber($event->getServiceContainer());
2938
}
3039
),
3140
MetaModelsEvents::ATTRIBUTE_FACTORY_CREATE => array(

contao/dca/tl_metamodel_attribute.php

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,20 @@
11
<?php
2+
23
/**
3-
* The MetaModels extension allows the creation of multiple collections of custom items,
4-
* each with its own unique set of selectable attributes, with attribute extendability.
5-
* The Front-End modules allow you to build powerful listing and filtering of the
6-
* data in each collection.
4+
* This file is part of MetaModels/attribute_select.
5+
*
6+
* (c) 2012-2016 The MetaModels team.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* This project is provided in good faith and hope to be usable by anyone.
712
*
813
* @package MetaModels
914
* @subpackage AttributeSelect
1015
* @author Christian Schiffler <[email protected]>
1116
* @author Christian de la Haye <[email protected]>
12-
* @author Stefan heimes <[email protected]>
17+
* @author Stefan Heimes <[email protected]>
1318
* @author Andreas Isaak <[email protected]>
1419
* @copyright 2012-2016 The MetaModels team.
1520
* @license https://github.com/MetaModels/attribute_select/blob/master/LICENSE LGPL-3.0

contao/dca/tl_metamodel_dcasetting.php

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,20 @@
11
<?php
2+
23
/**
3-
* The MetaModels extension allows the creation of multiple collections of custom items,
4-
* each with its own unique set of selectable attributes, with attribute extendability.
5-
* The Front-End modules allow you to build powerful listing and filtering of the
6-
* data in each collection.
4+
* This file is part of MetaModels/attribute_select.
5+
*
6+
* (c) 2012-2016 The MetaModels team.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* This project is provided in good faith and hope to be usable by anyone.
712
*
813
* @package MetaModels
914
* @subpackage AttributeSelect
1015
* @author Christian Schiffler <[email protected]>
1116
* @author Andreas Isaak <[email protected]>
17+
* @author Andreas Isaak <[email protected]>
1218
* @author Oliver Hoff <[email protected]>
1319
* @author Stefan heimes <[email protected]>
1420
* @copyright 2012-2016 The MetaModels team.

contao/languages/en/tl_metamodel_attribute.php

+15-11
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,21 @@
11
<?php
2+
23
/**
3-
* The MetaModels extension allows the creation of multiple collections of custom items,
4-
* each with its own unique set of selectable attributes, with attribute extendability.
5-
* The Front-End modules allow you to build powerful listing and filtering of the
6-
* data in each collection.
4+
* This file is part of MetaModels/attribute_select.
5+
*
6+
* (c) 2012-2016 The MetaModels team.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* This project is provided in good faith and hope to be usable by anyone.
712
*
8-
* PHP version 5
9-
* @package MetaModels
10-
* @subpackage AttributeSelect
11-
* @author Christian Schiffler <[email protected]>
12-
* @author Christian de la Haye <[email protected]>
13-
* @copyright The MetaModels team.
14-
* @license LGPL.
13+
* @package MetaModels
14+
* @subpackage AttributeSelect
15+
* @author Christian Schiffler <[email protected]>
16+
* @author Christian de la Haye <[email protected]>
17+
* @copyright 2012-2016 The MetaModels team.
18+
* @license https://github.com/MetaModels/attribute_select/blob/master/LICENSE LGPL-3.0
1519
* @filesource
1620
*/
1721

contao/languages/en/tl_metamodel_dcasetting.php

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,22 @@
11
<?php
2+
23
/**
3-
* The MetaModels extension allows the creation of multiple collections of custom items,
4-
* each with its own unique set of selectable attributes, with attribute extendability.
5-
* The Front-End modules allow you to build powerful listing and filtering of the
6-
* data in each collection.
4+
* This file is part of MetaModels/attribute_select.
5+
*
6+
* (c) 2012-2016 The MetaModels team.
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*
11+
* This project is provided in good faith and hope to be usable by anyone.
712
*
8-
* PHP version 5
9-
* @package MetaModels
10-
* @subpackage AttributeSelect
11-
* @author Christian Schiffler <[email protected]>
13+
* @package MetaModels
14+
* @subpackage AttributeSelect
15+
* @author Christian Schiffler <[email protected]>
1216
* @author Christian de la Haye <[email protected]>
1317
* @author Stefan Heimes <[email protected]>
14-
* @copyright The MetaModels team.
15-
* @license LGPL.
18+
* @copyright 2012-2016 The MetaModels team.
19+
* @license https://github.com/MetaModels/attribute_select/blob/master/LICENSE LGPL-3.0
1620
* @filesource
1721
*/
1822

0 commit comments

Comments
 (0)