RuleStorageInterface.php in Smart Date 3.3.x
Same filename and directory in other branches
- 8.2 modules/smart_date_recur/src/RuleStorageInterface.php
- 3.x modules/smart_date_recur/src/RuleStorageInterface.php
- 3.0.x modules/smart_date_recur/src/RuleStorageInterface.php
- 3.1.x modules/smart_date_recur/src/RuleStorageInterface.php
- 3.2.x modules/smart_date_recur/src/RuleStorageInterface.php
- 3.4.x modules/smart_date_recur/src/RuleStorageInterface.php
Namespace
Drupal\smart_date_recurFile
modules/smart_date_recur/src/RuleStorageInterface.phpView source
<?php
namespace Drupal\smart_date_recur;
use Drupal\Core\Entity\ContentEntityStorageInterface;
/**
* Defines an interface for Smart Date recur rule entity storage classes.
*/
interface RuleStorageInterface extends ContentEntityStorageInterface {
/**
* Returns the fids of feeds that need to be refreshed.
*
* @return array
* A list of feed ids to be refreshed.
*/
public function getRuleIdsToCheck();
}
Interfaces
Name | Description |
---|---|
RuleStorageInterface | Defines an interface for Smart Date recur rule entity storage classes. |