Example #1
0
 public function __construct()
 {
     parent::__construct();
     $options = XenForo_Application::get('options');
     // TODO: end-user ability to disable auto-embedding on a per-post basis
     $this->_autoEmbed = $options->autoEmbedMedia;
     $this->_autoEmbedRemaining = $options->messageMaxMedia ? $options->messageMaxMedia : PHP_INT_MAX;
 }