/**
  * Index the given page
  *
  * @param string $id
  */
 function index($id)
 {
     $this->quietecho("{$id}... ");
     return enhanced_idx_addPage($id, !$this->quiet, $this->force || $this->clear);
 }
 /**
  * Index the given page
  *
  * @param string $id
  * @param        $position
  * @param        $total
  * @return bool
  */
 function index($id, $position, $total)
 {
     $this->quietecho("{$position} of {$total}: {$id}... ");
     return enhanced_idx_addPage($id, !$this->quiet, $this->force || $this->clear);
 }