index.phtml 989 B

1234567891011121314151617
  1. <h1>Storage API</h1>
  2. <a href="<?php echo $this->url(array("action" => "index", "controller" => "storage")) ?>">List items</a><br/>
  3. <a href="<?php echo $this->url(array("action" => "upload", "controller" => "storage")) ?>">Upload item</a><br/>
  4. <h1>Queue API</h1>
  5. <a href="<?php echo $this->url(array("action" => "index", "controller" => "queue")) ?>">List queues</a><br/>
  6. <a href="<?php echo $this->url(array("action" => "create", "controller" => "queue")) ?>">Create queue</a><br/>
  7. <a href="<?php echo $this->url(array("action" => "send", "controller" => "queue")) ?>">Send messages</a><br/>
  8. <a href="<?php echo $this->url(array("action" => "receive", "controller" => "queue")) ?>">Receive messages</a><br/>
  9. <h1>Document API</h1>
  10. <a href="<?php echo $this->url(array("action" => "index", "controller" => "document")) ?>">List collections</a><br/>
  11. <a href="<?php echo $this->url(array("action" => "create", "controller" => "document")) ?>">Create collection</a><br/>