function enqueue_font_awesome() {
static $done = false;
if (false === $done) {
wp_enqueue_style( 'font-awesome', '//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css' );
$done = true;
}
}
class First
{
protected $elem1;
protected $elem2;
protected $elem3;
protected $second;
public function __construct($elem1, $elem2, $elem3, $second)
{
$this->elem1 = $elem1;
$this->elem2 = $elem2;
$this->elem3 = $elem3;
$this->second = $second;
}
public function start()
{
return $this->second->start();
}
}