firstcommit
This commit is contained in:
14
Modules/Admin/app/Repositories/FieldInterface.php
Normal file
14
Modules/Admin/app/Repositories/FieldInterface.php
Normal file
@ -0,0 +1,14 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\Admin\Repositories;
|
||||
|
||||
interface FieldInterface
|
||||
{
|
||||
public function findAll();
|
||||
public function getFieldById($FieldId);
|
||||
public function getList();
|
||||
public function getDropdownByAlias($alias);
|
||||
public function delete($FieldId);
|
||||
public function create(array $FieldDetails);
|
||||
public function update($FieldId, array $newDetails);
|
||||
}
|
Reference in New Issue
Block a user