SeeD That's correct. What kind of calendar would you want to embed? I feel like the forum layout is too narrow to hold a calendar.

  • SeeD replied to this.

    JoshyPHP Was thinking of embedding a Google calendar. It's responsive and should fit.

    Well the only way to do this is to add it directly in phpmyadmin. LOL!

    5 days later
    9 days later

    JoshyPHP Thank you for made this amazing extension. I have a question about manually add a website. I already read the link of the MediaEmbed configurator. But I dont know how to create an extension to run it.
    I already finished the composer.json file. But I dont know what code should be the bootstrap.php file.
    The website what I want to add:

     $configurator->MediaEmbed->add(
        'tucao',
            [
                'host'    => 'tucao.tv',
                'extract' => "!tucao\\.tv/play/h(?'id'[-0-9A-Z_a-z]+)!",
                'iframe'  => [
                    'width'  => 560,
                    'height' => 315,
                    'src'    => 'http://www.tucao.tv/mini/{@id}.swf'
                ]
            ]
        );

      AthenaTennos Using the extension's own bootstrap as a template, here's what I'd use:

      namespace AthenaTennos\Tucao;
      
      use Flarum\Event\ConfigureFormatter;
      use Illuminate\Events\Dispatcher;
      
      function subscribe(Dispatcher $events)
      {
      	$events->listen(
      		ConfigureFormatter::class,
      		function (ConfigureFormatter $event)
      		{
      			$event->configurator->MediaEmbed->add(
      				'tucao',
      				[
      					'host'    => 'tucao.tv',
      					'extract' => "!tucao\\.tv/play/h(?'id'[-0-9A-Z_a-z]+)!",
      					'iframe'  => ['src' => 'http://www.tucao.tv/mini/{@id}.swf']
      				]
      			);
      		}
      	);
      };
      
      return __NAMESPACE__ . '\\subscribe';

      In this example I omitted the iframe's dimensions, which will default to 640 × 360. Of course if you prefer it to be smaller you can use the same dimensions as your previous example.

        JoshyPHP
        I have a url

        and

        $event->configurator->MediaEmbed->add(
        			'ggmaps',
        			[
        				'host'    => 'google.com',
        				'extract' => "!www\\.google\\.com/maps/place/(?'address'[\S|\s]+)!",
        				'iframe'  => ['src' => 'https://www.google.com/maps/place/{@address}']
        			]
        		);

        but It don't work.

          BinhQuang The URL you use for your iframe cannot be embedded. Google explicitly instruct your browser not to display it in an third party iframe, that's why. If you have an API key you can use the Google Maps Embed API.

            a month later

            JoshyPHP Hi, how do I edit the youtube video parameters that output in the forum. I would like customize the embed player options. I'm unsure of which file that I'm suppose to edit, could you direct me please.

              witech You should be able to make a small extension rather than edit files but it would have to run after this one. I believe that Illuminate\Events\Dispatcher::listen() has a third optional parameter that sets the priority. Subscribe to the ConfigureFormatter event and you'll have the original template in $event->configurator->tags['YOUTUBE']->template. It's an object that you can read/write as a string.

              If you want to manipulate the template as a DOM, grep Flarum's source for configureExternalLinks and it'll give you an example.

              2 months later

              jacko Yep, many extensions are going to need to be updated. Have patience, and once you see this thread updated with Beta 5 information, you should be able to update.

              Kakifrucht That's because migrations are the big change from Beta 4. For extensions that were already installed in an upgraded Beta 5 install, the migration generally doesn't need to run (it basically sets up the database to work with the extension values). So you may see some extensions that still work fine in your upgraded install, but not in a fresh install.

              Kakifrucht I installed it again using

              php composer.phar require s9e/flarum-ext-mediaembed

              and it is back on again! It just disappeared from my installation after the upgrade but it works after reinstalling it.

              Hey @JoshyPHP, is it possible to set a maximum height for things like Gist embeds? Well, I'm sure there is. But is there something already built-in in TextFormatter that we just have to turn on / configure?