Rss-Bridge/bridges/ViadeoCompanyBridge.php
logmanoriginal a4b9611e66 [phpcs] Add missing rules
- Do not add spaces after opening or before closing parenthesis

  // Wrong
  if( !is_null($var) ) {
    ...
  }

  // Right
  if(!is_null($var)) {
    ...
  }

- Add space after closing parenthesis

  // Wrong
  if(true){
    ...
  }

  // Right
  if(true) {
    ...
  }

- Add body into new line
- Close body in new line

  // Wrong
  if(true) { ... }

  // Right
  if(true) {
    ...
  }

Notice: Spaces after keywords are not detected:

  // Wrong (not detected)
  // -> space after 'if' and missing space after 'else'
  if (true) {
    ...
  } else{
    ...
  }

  // Right
  if(true) {
    ...
  } else {
    ...
  }
2017-07-29 19:55:12 +02:00

38 lines
1 KiB
PHP

<?php
class ViadeoCompanyBridge extends BridgeAbstract {
const MAINTAINER = 'regisenguehard';
const NAME = 'Viadeo Company';
const URI = 'https://www.viadeo.com/';
const CACHE_TIMEOUT = 21600; // 6h
const DESCRIPTION = 'Returns most recent actus from Company on Viadeo.
(http://www.viadeo.com/fr/company/<strong style="font-weight:bold;">apple</strong>)';
const PARAMETERS = array( array(
'c' => array(
'name' => 'Company name',
'required' => true
)
));
public function collectData(){
$html = '';
$link = self::URI . 'fr/company/' . $this->getInput('c');
$html = getSimpleHTMLDOM($link)
or returnServerError('Could not request Viadeo.');
foreach($html->find('//*[@id="company-newsfeed"]/ul/li') as $element) {
$title = $element->find('p', 0)->innertext;
if($title) {
$item = array();
$item['uri'] = $link;
$item['title'] = mb_substr($element->find('p', 0)->innertext, 0, 100);
$item['content'] = $element->find('p', 0)->innertext;;
$this->items[] = $item;
$i++;
}
}
}
}