Skip to content
This repository has been archived by the owner on Dec 26, 2022. It is now read-only.

Commit

Permalink
Add GPL v3 file-headers, adjust README, add LICENSE-file
Browse files Browse the repository at this point in the history
  • Loading branch information
fabianlupa committed Aug 24, 2015
1 parent 0627e8d commit 3e67c83
Show file tree
Hide file tree
Showing 20 changed files with 985 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Config.template.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS;

/**
Expand Down
674 changes: 674 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,8 @@ updated in test/development/production environments.

Documentation is currently mostly done in the project's [wiki](https://github.com/kairet/kairet-cms/wiki) or in code
using PHPDoc.

### License

kairet-cms is licensed under GPL v3, see the included
[LICENSE](https://github.com/kairet/kairet-cms/blob/master/LICENSE)-file for more information.
17 changes: 17 additions & 0 deletions app/classes/Controller/UserController.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS\Controller;

use Doctrine\ORM\EntityManager;
Expand Down
17 changes: 17 additions & 0 deletions app/classes/Converter/AbstractConverter.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS\Converter;

use Doctrine\ORM\EntityManager;
Expand Down
17 changes: 17 additions & 0 deletions app/classes/Converter/ConverterAdapter.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS\Converter;

/**
Expand Down
17 changes: 17 additions & 0 deletions app/classes/Converter/UserConverter.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS\Converter;

use KCMS\Models\User;
Expand Down
17 changes: 17 additions & 0 deletions app/classes/Models/Group.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS\Models;

use Doctrine\Common\Collections\ArrayCollection;
Expand Down
17 changes: 17 additions & 0 deletions app/classes/Models/User.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS\Models;

use DateTime;
Expand Down
17 changes: 17 additions & 0 deletions app/classes/Services/ServiceContext.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS\Services;

use Doctrine\ORM\EntityManager;
Expand Down
17 changes: 17 additions & 0 deletions app/classes/Validation/ValidationException.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS\Validation;

use Exception;
Expand Down
17 changes: 17 additions & 0 deletions app/classes/Validation/ValidationHelper.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS\Validation;

use KCMS\Services\ServiceContext;
Expand Down
17 changes: 17 additions & 0 deletions app/classes/Validation/ValidationInterface.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS\Validation;

use Doctrine\ORM\Mapping as ORM;
Expand Down
17 changes: 17 additions & 0 deletions app/public/index.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

require __DIR__ . "/../../bootstrap.php";

$app = new Silex\Application();
Expand Down
17 changes: 17 additions & 0 deletions bootstrap.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

use Doctrine\Common\Annotations\AnnotationRegistry;

if (!file_exists(__DIR__ . "/Config.php")) {
Expand Down
17 changes: 17 additions & 0 deletions config/cli-config.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

/**
* Helper file for database schema update
* Use "vendor\bin\doctrine orm:schema-tool:update --force --dump-sql" to update db-schema
Expand Down
17 changes: 17 additions & 0 deletions test/CiConfig.template.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
<?php
/*************************************************************************
* Copyright (C) 2015 kairet *
* *
* This program is free software: you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation, either version 3 of the License, or *
* (at your option) any later version. *
* *
* This program is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
*************************************************************************/

namespace KCMS;

/**
Expand Down

0 comments on commit 3e67c83

Please sign in to comment.