Skip to content

Commit 0e0f3be

Browse files
authored
Merge pull request #1 from landofcoder/feature/rest-api
Feature/rest api
2 parents ee78429 + 3bdfa68 commit 0e0f3be

15 files changed

+1703
-22
lines changed

Api/CategoryRepositoryInterface.php

+72
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
<?php
2+
/**
3+
* Copyright © Landofcoder.com All rights reserved.
4+
* See COPYING.txt for license details.
5+
*/
6+
declare(strict_types=1);
7+
8+
namespace Ves\Testimonial\Api;
9+
10+
use Magento\Framework\Api\SearchCriteriaInterface;
11+
12+
interface CategoryRepositoryInterface
13+
{
14+
15+
/**
16+
* Save Category
17+
* @param \Ves\Testimonial\Api\Data\CategoryInterface $category
18+
* @return \Ves\Testimonial\Api\Data\CategoryInterface
19+
* @throws \Magento\Framework\Exception\LocalizedException
20+
*/
21+
public function save(
22+
\Ves\Testimonial\Api\Data\CategoryInterface $category
23+
);
24+
25+
/**
26+
* Retrieve category
27+
* @param string $categoryId
28+
* @return \Ves\Testimonial\Api\Data\CategoryInterface
29+
* @throws \Magento\Framework\Exception\LocalizedException
30+
*/
31+
public function get($categoryId);
32+
33+
/**
34+
* Retrieve Category matching the specified criteria.
35+
* @param \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
36+
* @return \Ves\Testimonial\Api\Data\CategorySearchResultsInterface
37+
* @throws \Magento\Framework\Exception\LocalizedException
38+
*/
39+
public function getList(
40+
\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
41+
);
42+
43+
/**
44+
* Retrieve Category matching the specified criteria.
45+
* @param \Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
46+
* @return \Ves\Testimonial\Api\Data\CategorySearchResultsInterface
47+
* @throws \Magento\Framework\Exception\LocalizedException
48+
*/
49+
public function getPublishList(
50+
\Magento\Framework\Api\SearchCriteriaInterface $searchCriteria
51+
);
52+
53+
/**
54+
* Delete Category
55+
* @param \Ves\Testimonial\Api\Data\CategoryInterface $category
56+
* @return bool true on success
57+
* @throws \Magento\Framework\Exception\LocalizedException
58+
*/
59+
public function delete(
60+
\Ves\Testimonial\Api\Data\CategoryInterface $category
61+
);
62+
63+
/**
64+
* Delete Category by ID
65+
* @param string $categoryd
66+
* @return bool true on success
67+
* @throws \Magento\Framework\Exception\NoSuchEntityException
68+
* @throws \Magento\Framework\Exception\LocalizedException
69+
*/
70+
public function deleteById($categoryId);
71+
}
72+

Api/Data/CategoryInterface.php

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
<?php
2+
3+
4+
namespace Ves\Testimonial\Api\Data;
5+
6+
interface CategoryInterface extends \Magento\Framework\Api\ExtensibleDataInterface
7+
{
8+
const CATEGORY_ID = 'category_id';
9+
const NAME = 'name';
10+
const CREATION_TIME = 'creation_time';
11+
const IS_ACTIVE = 'is_active';
12+
13+
/**
14+
* Get value
15+
* @return int|null
16+
*/
17+
public function getCategoryId();
18+
19+
/**
20+
* Set value
21+
* @param int|null $value
22+
* @return \Ves\Testimonial\Api\Data\CategoryInterface
23+
*/
24+
public function setCategoryId($value);
25+
26+
/**
27+
* Get value
28+
* @return string
29+
*/
30+
public function getName();
31+
32+
/**
33+
* Set value
34+
* @param string $value
35+
* @return \Ves\Testimonial\Api\Data\CategoryInterface
36+
*/
37+
public function setName($value);
38+
39+
/**
40+
* Get value
41+
* @return string
42+
*/
43+
public function getCreationTime();
44+
45+
/**
46+
* Set value
47+
* @param string $value
48+
* @return \Ves\Testimonial\Api\Data\CategoryInterface
49+
*/
50+
public function setCreationTime($value);
51+
52+
/**
53+
* Get value
54+
* @return int
55+
*/
56+
public function getIsActive();
57+
58+
/**
59+
* Set value
60+
* @param int $value
61+
* @return \Ves\Testimonial\Api\Data\CategoryInterface
62+
*/
63+
public function setIsActive($value);
64+
65+
/**
66+
* Retrieve existing extension attributes object or create a new one.
67+
* @return \Ves\Testimonial\Api\Data\CategoryExtensionInterface|null
68+
*/
69+
public function getExtensionAttributes();
70+
71+
/**
72+
* Set an extension attributes object.
73+
* @param \Ves\Testimonial\Api\Data\CategoryExtensionInterface $extensionAttributes
74+
* @return $this
75+
*/
76+
public function setExtensionAttributes(
77+
\Ves\Testimonial\Api\Data\CategoryExtensionInterface $extensionAttributes
78+
);
79+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
<?php
2+
3+
4+
namespace Ves\Testimonial\Api\Data;
5+
6+
interface CategorySearchResultsInterface extends \Magento\Framework\Api\SearchResultsInterface
7+
{
8+
9+
/**
10+
* Get category list.
11+
* @return \Ves\Testimonial\Api\Data\CategoryInterface[]
12+
*/
13+
public function getItems();
14+
15+
/**
16+
* Set category list.
17+
* @param \Ves\Testimonial\Api\Data\CategoryInterface[] $items
18+
* @return $this
19+
*/
20+
public function setItems(array $items);
21+
}

0 commit comments

Comments
 (0)