1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Contact\Block;
use Magento\Framework\View\Element\Template;
/**
* Main contact form block
*
* @api
* @since 100.0.2
*/
class ContactForm extends Template
{
/**
* @param Template\Context $context
* @param array $data
*/
public function __construct(Template\Context $context, array $data = [])
{
parent::__construct($context, $data);
$this->_isScopePrivate = true;
}
/**
* Returns action url for contact form
*
* @return string
*/
public function getFormAction()
{
return $this->getUrl('contact/index/post', ['_secure' => true]);
}
}