|
1
|
|
|
<?php |
|
2
|
|
|
/* |
|
3
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
|
4
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
|
5
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
|
6
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
|
7
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
8
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
|
9
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
|
10
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
|
11
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
|
12
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
|
13
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
14
|
|
|
* |
|
15
|
|
|
* This software consists of voluntary contributions made by many individuals |
|
16
|
|
|
* and is licensed under the MIT license. |
|
17
|
|
|
*/ |
|
18
|
|
|
|
|
19
|
|
|
namespace Cart\View\Helper; |
|
20
|
|
|
|
|
21
|
|
|
use Cake\View\Helper; |
|
22
|
|
|
use Cake\View\View; |
|
23
|
|
|
|
|
24
|
|
|
/** |
|
25
|
|
|
* @author Rafael Queiroz <[email protected]> |
|
26
|
|
|
*/ |
|
27
|
|
|
class CartHelper extends Helper |
|
28
|
|
|
{ |
|
29
|
|
|
|
|
30
|
|
|
/** |
|
31
|
|
|
* Default configuration. |
|
32
|
|
|
* |
|
33
|
|
|
* @var array |
|
34
|
|
|
*/ |
|
35
|
|
|
protected $_defaultConfig = []; |
|
36
|
|
|
|
|
37
|
|
|
/** |
|
38
|
|
|
* @var array |
|
39
|
|
|
*/ |
|
40
|
|
|
public $helpers = ['Form']; |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* @param $entity |
|
44
|
|
|
* @param string $title |
|
45
|
|
|
* @return string |
|
46
|
|
|
*/ |
|
47
|
|
|
public function buy($entity, $title = "Buy") |
|
48
|
|
|
{ |
|
49
|
|
|
$form = $this->Form->create(null, ['url' => ['controller' => 'Cart', 'action' => 'add'], 'type' => 'post']); |
|
|
|
|
|
|
50
|
|
|
$form .= $this->Form->controll('quantity', ['value' => 1]); |
|
|
|
|
|
|
51
|
|
|
$form .= $this->Form->controll('id', ['value' => $entity->id, 'type' => 'hidden']); |
|
|
|
|
|
|
52
|
|
|
$form .= $this->Form->button(__($title)); |
|
|
|
|
|
|
53
|
|
|
$form .= $this->Form->end(); |
|
|
|
|
|
|
54
|
|
|
|
|
55
|
|
|
return $form; |
|
56
|
|
|
} |
|
57
|
|
|
|
|
58
|
|
|
} |
Since your code implements the magic getter
_get, this function will be called for any read access on an undefined variable. You can add the@propertyannotation to your class or interface to document the existence of this variable.If the property has read access only, you can use the @property-read annotation instead.
Of course, you may also just have mistyped another name, in which case you should fix the error.
See also the PhpDoc documentation for @property.