static function configCron($target)
 {
     $notif = new PluginBadgesNotificationState();
     $config = new PluginBadgesConfig();
     $config->showForm($target, 1);
     $notif->showForm($target);
     $notif->showAddForm($target);
 }
Esempio n. 2
0
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.

Badges is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with Badges. If not, see <http://www.gnu.org/licenses/>.
--------------------------------------------------------------------------
*/
include '../../../inc/includes.php';
Session::checkRight("config", "w");
$config = new PluginBadgesConfig();
$notif = new PluginBadgesNotificationState();
if (isset($_POST["add"])) {
    $notif->addNotificationState($_POST['states_id']);
    Html::back();
} else {
    if (isset($_POST["delete"])) {
        foreach ($_POST["item"] as $key => $val) {
            if ($val == 1) {
                $notif->delete(array('id' => $key));
            }
        }
        Html::back();
    } else {
        if (isset($_POST["update"])) {
            $config->update($_POST);
Esempio n. 3
0
 static function configCron($target)
 {
     $config = new PluginBadgesConfig();
     $config->showFormBadgeReturn($target, 1);
 }