コード例 #1
0
ファイル: ShortenerLink.php プロジェクト: dindigital/din
 public function filter($field)
 {
     if (URL && BITLY && $this->_table->uri) {
         $url = URL . $this->_table->uri;
         try {
             $bitly = new Bitly(BITLY);
             if (defined('BITLY_DOMAIN') && BITLY_DOMAIN) {
                 $bitly->setDomain(BITLY_DOMAIN);
             }
             $bitly->shorten($url);
             $this->_table->short_link = (string) $bitly;
         } catch (\Exception $e) {
             //die($e->getMessage());
         }
     }
 }