Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 1
CRAP
0.00% covered (danger)
0.00%
0 / 1
core_kernel_rules_OperationFactory
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 1
2
0.00% covered (danger)
0.00%
0 / 1
 createOperation
0.00% covered (danger)
0.00%
0 / 14
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2007-2010 (original work) Public Research Centre Henri Tudor & University of Luxembourg
19 *                         (under the project TAO-QUAL);
20 *               2008-2010 (update and modification) Deutsche Institut für Internationale Pädagogische Forschung
21 *                         (under the project TAO-TRANSFER);
22 *               2017 (update and modification) Open Assessment Technologies SA (under the project TAO-PRODUCT);
23 *
24 *
25 */
26
27use oat\generis\model\RulesRdf;
28
29/**
30 * Short description of class core_kernel_rules_OperationFactory
31 *
32 * @access public
33 * @author firstname and lastname of author, <author@example.org>
34 * @package generis
35
36 */
37class core_kernel_rules_OperationFactory
38{
39    // --- ASSOCIATIONS ---
40
41
42    // --- ATTRIBUTES ---
43
44    // --- OPERATIONS ---
45
46    /**
47     * Short description of method createOperation
48     *
49     * @access public
50     * @author firstname and lastname of author, <author@example.org>
51     * @param  Term term1
52     * @param  Term term2
53     * @param  Resource operator
54     * @return core_kernel_rules_Operation
55     */
56    public static function createOperation(
57        core_kernel_rules_Term $term1,
58        core_kernel_rules_Term $term2,
59        core_kernel_classes_Resource $operator
60    ) {
61        $returnValue = null;
62        $operationClass = new core_kernel_classes_Class(RulesRdf::CLASS_OPERATION, __METHOD__);
63        $label = 'Def Operation Label ' . $term1->getLabel() . ' ' . $operator->getLabel() . ' ' . $term2->getLabel();
64        $comment = 'Def Operation Comment ' . $term1->getUri() . ' ' . $operator->getUri() . ' ' . $term2->getUri();
65        $operatorProperty = new core_kernel_classes_Property(RulesRdf::PROPERTY_OPERATION_OPERATOR, __METHOD__);
66        $firstOperand = new core_kernel_classes_Property(RulesRdf::PROPERTY_OPERATION_FIRST_OP, __METHOD__);
67        $secondOperand = new core_kernel_classes_Property(RulesRdf::PROPERTY_OPERATION_SECOND_OP, __METHOD__);
68        $termOperationInstance = core_kernel_classes_ResourceFactory::create($operationClass, $label, $comment);
69        $returnValue = new core_kernel_rules_Operation($termOperationInstance->getUri());
70        $returnValue->debug = __METHOD__;
71        $returnValue->setPropertyValue($operatorProperty, $operator->getUri());
72        $returnValue->setPropertyValue($firstOperand, $term1->getUri());
73        $returnValue->setPropertyValue($secondOperand, $term2->getUri());
74        return $returnValue;
75    }
76}