Skip to content

Commit 6b5e713

Browse files
author
Kopylova,Olga(okopylova)
committed
Merge pull request #368 from magento-ogre/PR_Branch
[Ogre's] Sprint 31 - Uninstall, backup and rollback functionality
2 parents ba55724 + a7f7b64 commit 6b5e713

File tree

114 files changed

+23045
-731
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

114 files changed

+23045
-731
lines changed

app/code/Magento/Backend/App/ConfigInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ interface ConfigInterface
1717
*
1818
* @param string $path
1919
* @return mixed
20+
* @api
2021
*/
2122
public function getValue($path);
2223

@@ -26,6 +27,7 @@ public function getValue($path);
2627
* @param string $path
2728
* @param mixed $value
2829
* @return void
30+
* @api
2931
*/
3032
public function setValue($path, $value);
3133

@@ -34,6 +36,7 @@ public function setValue($path, $value);
3436
*
3537
* @param string $path
3638
* @return bool
39+
* @api
3740
*/
3841
public function isSetFlag($path);
3942
}

app/code/Magento/Backend/Block/Widget/Button/ContextInterface.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ interface ContextInterface
1313
*
1414
* @param \Magento\Backend\Block\Widget\Button\Item $item
1515
* @return bool
16+
* @api
1617
*/
1718
public function canRender(\Magento\Backend\Block\Widget\Button\Item $item);
1819
}

app/code/Magento/Backend/Block/Widget/Button/ToolbarInterface.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ interface ToolbarInterface
1414
* @param \Magento\Framework\View\Element\AbstractBlock $context
1515
* @param \Magento\Backend\Block\Widget\Button\ButtonList $buttonList
1616
* @return void
17+
* @api
1718
*/
1819
public function pushButtons(
1920
\Magento\Framework\View\Element\AbstractBlock $context,

app/code/Magento/Backend/Block/Widget/Grid/Column/Filter/FilterInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,20 @@ interface FilterInterface
1616
{
1717
/**
1818
* @return Column
19+
* @api
1920
*/
2021
public function getColumn();
2122

2223
/**
2324
* @param Column $column
2425
* @return AbstractFilter
26+
* @api
2527
*/
2628
public function setColumn($column);
2729

2830
/**
2931
* @return string
32+
* @api
3033
*/
3134
public function getHtml();
3235
}

app/code/Magento/Backend/Block/Widget/Grid/Column/Renderer/RendererInterface.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ interface RendererInterface
2020
* @param Column $column
2121
* @return void
2222
* @abstract
23+
* @api
2324
*/
2425
public function setColumn($column);
2526

@@ -28,6 +29,7 @@ public function setColumn($column);
2829
*
2930
* @abstract
3031
* @return void
32+
* @api
3133
*/
3234
public function getColumn();
3335

@@ -36,6 +38,7 @@ public function getColumn();
3638
*
3739
* @param \Magento\Framework\Object $row
3840
* @return string
41+
* @api
3942
*/
4043
public function render(\Magento\Framework\Object $row);
4144
}

app/code/Magento/Backend/Block/Widget/Grid/ExportInterface.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,15 @@ interface ExportInterface
1111
* Retrieve grid export types
1212
*
1313
* @return array|bool
14+
* @api
1415
*/
1516
public function getExportTypes();
1617

1718
/**
1819
* Retrieve grid id
1920
*
2021
* @return string
22+
* @api
2123
*/
2224
public function getId();
2325

@@ -43,20 +45,23 @@ public function addExportType($url, $label);
4345
* Return array with keys type and value
4446
*
4547
* @return array
48+
* @api
4649
*/
4750
public function getCsvFile();
4851

4952
/**
5053
* Retrieve Grid data as CSV
5154
*
5255
* @return string
56+
* @api
5357
*/
5458
public function getCsv();
5559

5660
/**
5761
* Retrieve data in xml
5862
*
5963
* @return string
64+
* @api
6065
*/
6166
public function getXml();
6267

@@ -67,13 +72,15 @@ public function getXml();
6772
*
6873
* @param string $sheetName
6974
* @return array
75+
* @api
7076
*/
7177
public function getExcelFile($sheetName = '');
7278

7379
/**
7480
* Retrieve grid data as MS Excel 2003 XML Document
7581
*
7682
* @return string
83+
* @api
7784
*/
7885
public function getExcel();
7986
}

app/code/Magento/Backend/Block/Widget/Grid/Massaction/Item/Additional/AdditionalInterface.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ interface AdditionalInterface
1515
/**
1616
* @param array $configuration
1717
* @return $this
18+
* @api
1819
*/
1920
public function createFromConfiguration(array $configuration);
2021
}

app/code/Magento/Backend/Block/Widget/Tab/TabInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,27 +17,31 @@ interface TabInterface
1717
* Return Tab label
1818
*
1919
* @return string
20+
* @api
2021
*/
2122
public function getTabLabel();
2223

2324
/**
2425
* Return Tab title
2526
*
2627
* @return string
28+
* @api
2729
*/
2830
public function getTabTitle();
2931

3032
/**
3133
* Can show tab in tabs
3234
*
3335
* @return boolean
36+
* @api
3437
*/
3538
public function canShowTab();
3639

3740
/**
3841
* Tab is hidden
3942
*
4043
* @return boolean
44+
* @api
4145
*/
4246
public function isHidden();
4347
}

app/code/Magento/Backend/Model/Auth/Credential/StorageInterface.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* Backend Auth Credential Storage interface
1010
*
1111
* @author Magento Core Team <core@magentocommerce.com>
12+
* @api
1213
*/
1314
interface StorageInterface
1415
{

app/code/Magento/Backend/Model/Auth/StorageInterface.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ interface StorageInterface
1515
*
1616
* @return $this
1717
* @abstract
18+
* @api
1819
*/
1920
public function processLogin();
2021

@@ -23,6 +24,7 @@ public function processLogin();
2324
*
2425
* @return $this
2526
* @abstract
27+
* @api
2628
*/
2729
public function processLogout();
2830

@@ -31,6 +33,7 @@ public function processLogout();
3133
*
3234
* @return bool
3335
* @abstract
36+
* @api
3437
*/
3538
public function isLoggedIn();
3639

@@ -39,6 +42,7 @@ public function isLoggedIn();
3942
*
4043
* @return void
4144
* @abstract
45+
* @api
4246
*/
4347
public function prolong();
4448
}

0 commit comments

Comments
 (0)