×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: PHP
Posted by: AUREO SOUTO
Added: Dec 10, 2018 12:10 PM
Views: 3573
Tags: no tags
  1.   public function beforeSave($insert)
  2.     {
  3.        
  4.  
  5.         if (parent::beforeSave($insert)):
  6.            
  7.          
  8.                 if ($this->cnpj):                      
  9.                         $this->cnpj = MyHelper::retirarMascaraCnpj($this->cnpj);
  10.                          
  11.             endif;            
  12.                
  13.          return true;
  14.         else:
  15.                 return false;
  16.         endif;
  17.        
  18.    }