for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
*
* Advanced BBCode Box
* @copyright (c) 2015 Matt Friedman
* @license GNU General Public License, version 2 (GPL-2.0)
*/
namespace vse\abbc3\migrations;
class v310_m6_update_bbcodes extends bbcodes_migration_base
{
* {@inheritdoc}
public static function depends_on()
return array('\vse\abbc3\migrations\v310_m5_update_bbcodes');
}
public function update_data()
return array(
array('custom', array(array($this, 'install_abbc3_bbcodes'))),
);
protected static $bbcode_data = array(
'soundcloud' => array(
'bbcode_helpline' => 'ABBC3_SOUNDCLOUD_HELPLINE',
'bbcode_match' => '[soundcloud]{URL}[/soundcloud]',
'bbcode_tpl' => '<iframe width="100%" height="166" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?url={URL}&color=ff5500&auto_play=false&hide_related=false&show_comments=true&show_user=true&show_reposts=false"></iframe>',
),