Skip to content

Commit dca50e8

Browse files
author
CedCommerce
committed
updated composer
1 parent 141604c commit dca50e8

13 files changed

Lines changed: 544 additions & 545 deletions

File tree

Block/DevTool/BlockHandles.php

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
1-
<?php
2-
/**
3-
* Copyright © 2015 CedCommerce. All rights reserved.
4-
*/
5-
namespace Ced\DevTool\Block\DevTool;
6-
use Ced\DevTool\Block\DevTool;
7-
class BlockHandles extends DevTool
8-
{
9-
10-
/**
11-
* Function for getting block handle details
12-
* @return array
13-
*/
14-
public function getBlockHandleDetails()
15-
{
16-
return $this->_devToolHelper->getBlockDetails();
17-
}
18-
1+
<?php
2+
/**
3+
* Copyright © 2015 CedCommerce. All rights reserved.
4+
*/
5+
namespace Ced\DevTool\Block\DevTool;
6+
use Ced\DevTool\Block\DevTool;
7+
class BlockHandles extends DevTool
8+
{
9+
10+
/**
11+
* Function for getting block handle details
12+
* @return array
13+
*/
14+
public function getBlockHandleDetails()
15+
{
16+
return $this->_devToolHelper->getBlockDetails();
17+
}
18+
1919
}

Block/DevTool/Collections.php

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
<?php
2-
namespace Ced\DevTool\Block\DevTool;
3-
class Collections extends \Magento\Framework\View\Element\Template
4-
{
5-
/**
6-
* @var \Ced\DevTool\Helper\Data
7-
*/
8-
protected $_devToolHelper;
9-
10-
11-
/**
12-
* @param \Ced\DevTool\Block\Context $context
13-
*/
14-
public function __construct( \Ced\DevTool\Block\Context $context)
15-
{
16-
$this->_devToolHelper = $context->getDevToolHelper();
17-
parent::__construct($context);
18-
19-
}
20-
/**
21-
* Retrun all the details related to collection on a particular page load
22-
*/
23-
public function getCollectionDetails()
24-
{
25-
return $this->_devToolHelper->getDevToolData($this->_devToolHelper->_collectionKey);
26-
}
27-
28-
29-
}
1+
<?php
2+
namespace Ced\DevTool\Block\DevTool;
3+
class Collections extends \Magento\Framework\View\Element\Template
4+
{
5+
/**
6+
* @var \Ced\DevTool\Helper\Data
7+
*/
8+
protected $_devToolHelper;
9+
10+
11+
/**
12+
* @param \Ced\DevTool\Block\Context $context
13+
*/
14+
public function __construct( \Ced\DevTool\Block\Context $context)
15+
{
16+
$this->_devToolHelper = $context->getDevToolHelper();
17+
parent::__construct($context);
18+
19+
}
20+
/**
21+
* Retrun all the details related to collection on a particular page load
22+
*/
23+
public function getCollectionDetails()
24+
{
25+
return $this->_devToolHelper->getDevToolData($this->_devToolHelper->_collectionKey);
26+
}
27+
28+
29+
}

Block/DevTool/Models.php

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
<?php
2-
namespace Ced\DevTool\Block\DevTool;
3-
class Models extends \Magento\Framework\View\Element\Template
4-
{
5-
/**
6-
* @var \Ced\DevTool\Helper\Data
7-
*/
8-
protected $_devToolHelper;
9-
10-
11-
/**
12-
* @param \Ced\DevTool\Block\Context $context
13-
*/
14-
public function __construct( \Ced\DevTool\Block\Context $context)
15-
{
16-
$this->_devToolHelper = $context->getDevToolHelper();
17-
parent::__construct($context);
18-
19-
}
20-
/**
21-
* Retrun all the details related to Models on a particular page load
22-
*/
23-
public function getModelDetails()
24-
{
25-
return $this->_devToolHelper->getDevToolData($this->_devToolHelper->_modelKey);
26-
}
27-
28-
29-
}
1+
<?php
2+
namespace Ced\DevTool\Block\DevTool;
3+
class Models extends \Magento\Framework\View\Element\Template
4+
{
5+
/**
6+
* @var \Ced\DevTool\Helper\Data
7+
*/
8+
protected $_devToolHelper;
9+
10+
11+
/**
12+
* @param \Ced\DevTool\Block\Context $context
13+
*/
14+
public function __construct( \Ced\DevTool\Block\Context $context)
15+
{
16+
$this->_devToolHelper = $context->getDevToolHelper();
17+
parent::__construct($context);
18+
19+
}
20+
/**
21+
* Retrun all the details related to Models on a particular page load
22+
*/
23+
public function getModelDetails()
24+
{
25+
return $this->_devToolHelper->getDevToolData($this->_devToolHelper->_modelKey);
26+
}
27+
28+
29+
}

Block/DevTool/Request.php

Lines changed: 40 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,40 @@
1-
<?php
2-
namespace Ced\DevTool\Block\DevTool;
3-
class Request extends \Magento\Framework\View\Element\Template
4-
{
5-
/**
6-
* @var \Ced\DevTool\Helper\Data
7-
*/
8-
protected $_devToolHelper;
9-
public $_getVariables;
10-
public $_postVariables;
11-
12-
13-
/**
14-
* @param \Ced\DevTool\Block\Context $context
15-
*/
16-
public function __construct( \Ced\DevTool\Block\Context $context, \Magento\Framework\App\RequestInterface $request)
17-
{
18-
$this->_devToolHelper = $context->getDevToolHelper();
19-
$this->_getVariables = $request->getParams();
20-
parent::__construct($context);
21-
22-
}
23-
/**
24-
* Retrun all the details related to Module/Controller/Action on a particular page load
25-
*/
26-
public function getRequestDetails()
27-
{
28-
return $this->_devToolHelper->getDevToolData($this->_devToolHelper->_requestKey);
29-
}
30-
/**
31-
* Retrun all the details related to GET ad POST variables on a particular page load
32-
*/
33-
public function getPostGetVariableDetails()
34-
{
35-
return $this->_getVariables;
36-
}
37-
38-
39-
40-
}
1+
<?php
2+
namespace Ced\DevTool\Block\DevTool;
3+
class Request extends \Magento\Framework\View\Element\Template
4+
{
5+
/**
6+
* @var \Ced\DevTool\Helper\Data
7+
*/
8+
protected $_devToolHelper;
9+
public $_getVariables;
10+
public $_postVariables;
11+
12+
13+
/**
14+
* @param \Ced\DevTool\Block\Context $context
15+
*/
16+
public function __construct( \Ced\DevTool\Block\Context $context, \Magento\Framework\App\RequestInterface $request)
17+
{
18+
$this->_devToolHelper = $context->getDevToolHelper();
19+
$this->_getVariables = $request->getParams();
20+
parent::__construct($context);
21+
22+
}
23+
/**
24+
* Retrun all the details related to Module/Controller/Action on a particular page load
25+
*/
26+
public function getRequestDetails()
27+
{
28+
return $this->_devToolHelper->getDevToolData($this->_devToolHelper->_requestKey);
29+
}
30+
/**
31+
* Retrun all the details related to GET ad POST variables on a particular page load
32+
*/
33+
public function getPostGetVariableDetails()
34+
{
35+
return $this->_getVariables;
36+
}
37+
38+
39+
40+
}

0 commit comments

Comments
 (0)