/**
  * Deletes a license
  *
  * @param int $lid ["path","0"]
  *  The id of the license to delete
  * @return bool
  *
  * @Access(callback='user_access', args={'delete content licenses'}, appendArgs=false)
  */
 public static function delete($lid)
 {
     ContentLicense::delete($lid);
 }