Sign in

Flora Concierge / FloraConcierge PHP ApiClient · Files

Logo

GitLab

  • Back to group
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • floraconcierge-php-apiclient
  • flora
  • api
  • service
  • img.php
  • update
    3aa724ab
    Anton Shurashov authored
    2014-09-25 19:40:51 +0400  
    Browse Code ยป
img.php 318 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php
class Flora_Api_Service_Img extends Flora_Api_Service
{
    const API_GET_WATERMARK = "img/watermark";

    /**
     * @param $img_name
     * @return stdClass
     */
    public function getWatermark($img_name)
    {
        return $this->call(self::API_GET_WATERMARK, array("img_name" => $img_name));
    }

}