How to make custom block available
Permalink 1 user found helpfulHow do I get a custom block to show up as "Awaiting Installation" and/or to be available for selection from a page in edit mode?
I need to build a custom block so I cloned the HTML block and renamed the folder to symas_test. I put the folder in /myWeb/packages/symas_test/blocks/ and put a controller.php in the symas_test directory. I edited the controller.php based on some sample code I found, but nowhere does it suggest how to get my concrete5 web to "see" this new block.
What am I missing here?
<?php
defined('C5_EXECUTE') or die(_("Access Denied."));
class Symas_Test extends Package {
protected $pkgHandle = 'iframe';
protected $appVersionRequired = '5.2.0';
protected $pkgVersion = '1.0';
public function getPackageDescription() {
return t("Insert a Symas Test.");
}
public function getPackageName() {
return t("Iframe");
}
public function install() {
$pkg = parent::install();
// install block
BlockType::installBlockTypeFromPackage('symas_test', $pkg);
}
}
I am using the Designer Content Add-On. I created the block locally, then I uploaded the new block to the /blocks/ folder on my server, but it does not show up in the Add Block list.
Any help with this would be greatly appreciated.
When u upload a costume block you have to upload it in your dir: root/blocks, and then go to your dashboard on the your site and under /Stacks & Blocks/Block Types and install it first! Now it will be available in the ADD block list.
/Mike
I didn't see this step in the documentation, I probably just passed it up.
Thanks again!
Take care
/Mike
Thanks again though! :)
class SymasTestController extends BlockController{
}
also your pkgHandle is using the iFrame handle this should be something Like
"Symas Test"
If you want something simple I reccomend using the Designer Content Block this takes the hassle out of all this for you
http://www.concrete5.org/marketplace/addons/designer-content/...
If you only want to install a block you do not need to use a package, to do so you would only need to place the block folder in the /root/blocks/ folder
and then you can install things from there.
But go and take a look at Jordans Block it really is a great time saver