View file application/modules/Network/views/scripts/admin-manage/deleteselected.tpl

File size: 1.41Kb
<?php
/**
 * SocialEngine
 *
 * @category   Application_Core
 * @package    Network
 * @copyright  Copyright 2006-2020 Webligo Developments
 * @license    http://www.socialengine.com/license/
 * @version    $Id: deleteselected.tpl 9747 2012-07-26 02:08:08Z john $
 * @author     Jung
 */
?>

<div class="settings">
  <div class='global_form'>
    <form method="post" action="<?php echo $_SERVER['REQUEST_URI'] ?>">
      <div>
        <h3><?php echo $this->translate("Delete the selected networks?") ?></h3>
        <p>
          <?php echo $this->translate(
                  array(
                    "Are you sure that you want to delete the %s network? It will not be recoverable after being deleted.",
                    "Are you sure that you want to delete the %s networks? They will not be recoverable after being deleted.",
                    $this->count),
                  $this->locale()->toNumber($this->count)) ?>
        </p>
        <br />
        <p>
          <input type="hidden" name="confirm" value='true'/>
          <input type="hidden" name="ids" value="<?php echo $this->idsString ?>"/>
          <button type='submit'><?php echo $this->translate("Delete") ?></button>
          <?php echo $this->translate("or") ?>
          <a href='<?php echo $this->url(array('action' => 'index')) ?>'>
            <?php echo $this->translate("cancel") ?>
          </a>
        </p>
      </div>
    </form>
  </div>
</div>