b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / dev2.destoffenstraat.com / app / code / SR / Theme / Api / Data /
Filename/home/dev2.destoffenstraat.com/app/code/SR/Theme/Api/Data/ThemeInterface.php
Size1.96 kb
Permissionrwxrwxrwx
Ownerroot : root
Create time17-Aug-2025 10:26
Last modified06-Apr-2021 18:06
Last accessed22-Aug-2025 23:40
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php


namespace SR\Theme\Api\Data;

interface ThemeInterface extends \Magento\Framework\Api\ExtensibleDataInterface
{

const POSITION = 'position';
const STATUS = 'Status';
const TITLE = 'Title';
const THEME_ID = 'theme_id';
const IMAGE = 'Image';

/**
* Get theme_id
* @return string|null
*/
public function getThemeId();

/**
* Set theme_id
* @param string $themeId
* @return \SR\Theme\Api\Data\ThemeInterface
*/
public function setThemeId($themeId);

/**
* Get Title
* @return string|null
*/
public function getTitle();

/**
* Set Title
* @param string $title
* @return \SR\Theme\Api\Data\ThemeInterface
*/
public function setTitle($title);

/**
* Retrieve existing extension attributes object or create a new one.
* @return \SR\Theme\Api\Data\ThemeExtensionInterface|null
*/
public function getExtensionAttributes();

/**
* Set an extension attributes object.
* @param \SR\Theme\Api\Data\ThemeExtensionInterface $extensionAttributes
* @return $this
*/
public function setExtensionAttributes(
\SR\Theme\Api\Data\ThemeExtensionInterface $extensionAttributes
);

/**
* Get Image
* @return string|null
*/
public function getImage();

/**
* Set Image
* @param string $image
* @return \SR\Theme\Api\Data\ThemeInterface
*/
public function setImage($image);

/**
* Get Status
* @return string|null
*/
public function getStatus();

/**
* Set Status
* @param string $status
* @return \SR\Theme\Api\Data\ThemeInterface
*/
public function setStatus($status);

/**
* Get position
* @return string|null
*/
public function getPosition();

/**
* Set position
* @param string $position
* @return \SR\Theme\Api\Data\ThemeInterface
*/
public function setPosition($position);
}