Pocket::repeat PHP Method

repeat() public method

@param string $Type The repeat type, contained in the various Pocket::REPEAT_* constants. - every: Repeats every x times. If $Frequency is an array then it will be interpretted as array($Frequency, $Begin). - indexes: Renders only at the given indexes, starting at 1.
public repeat ( string $Type, integer | array $Frequency )
$Type string
$Frequency integer | array The frequency of the repeating, see the $Type parameter for how this works.
    public function repeat($Type, $Frequency)
    {
        $this->RepeatType = $Type;
        $this->RepeatFrequency = $Frequency;
    }