本文整理汇总了PHP中BlockType::getByHandle方法的典型用法代码示例。如果您正苦于以下问题:PHP BlockType::getByHandle方法的具体用法?PHP BlockType::getByHandle怎么用?PHP BlockType::getByHandle使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类BlockType
的用法示例。
在下文中一共展示了BlockType::getByHandle方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: run
public function run()
{
$bt = BlockType::getByHandle('guestbook');
if (is_object($bt)) {
$bt->refresh();
}
}
示例2: run
public function run()
{
// Since we added the origfilename column in 5.0.0b1 we need to populate it
Loader::block('library_file');
$bl = new LibraryFileBlockController();
$bl->populateOriginalFilenames();
// install the new block types made available
BlockType::installBlockType('flash_content');
BlockType::installBlockType('guestbook');
BlockType::installBlockType('slideshow');
BlockType::installBlockType('search');
BlockType::installBlockType('google_map');
BlockType::installBlockType('video');
BlockType::installBlockType('rss_displayer');
BlockType::installBlockType('youtube');
BlockType::installBlockType('survey');
// rename external form
$bt = BlockType::getByHandle('custom_form');
$db = Loader::db();
$tables = $db->MetaTables('TABLES');
if (isset($tables['btCustomForm']) && !isset($tables['btExternalForm'])) {
$db->Execute("alter table btCustomForm rename btExternalForm");
}
if (is_object($bt)) {
BlockType::installBlockType('external_form', $bt->getBlockTypeID());
}
// add new theme
$th = PageTheme::getByHandle('greensalad');
if (!is_object($th)) {
PageTheme::add('greensalad');
}
}
示例3: run
public function run()
{
$sp = Page::getByPath('/dashboard/system/seo/excluded');
if (!is_object($sp) || $sp->isError()) {
$sp = SinglePage::add('/dashboard/system/seo/excluded');
$sp->update(array('cName' => t('Excluded URL Word List')));
$sp->setAttribute('meta_keywords', 'pretty, slug');
}
$bt = BlockType::getByHandle('next_previous');
if (is_object($bt)) {
$bt->refresh();
}
$db = Loader::db();
$columns = $db->MetaColumns('Pages');
if (isset($columns['PTID'])) {
$db->Execute('alter table Pages drop column ptID');
}
if (isset($columns['CTID'])) {
$db->Execute('alter table Pages drop column ctID');
}
$bt = BlockType::getByHandle('search');
if (is_object($bt)) {
$bt->refresh();
}
}
示例4: up
public function up(Schema $schema)
{
$bt = \BlockType::getByHandle('image_slider');
if (is_object($bt)) {
$bt->refresh();
}
}
示例5: run
public function run()
{
$bt = BlockType::getByHandle('google_map');
if (is_object($bt) && !$bt->isError()) {
$bt->refresh();
}
}
示例6: view
public function view()
{
$uh = Loader::helper('concrete/urls');
$bt = BlockType::getByHandle('switch_language');
Loader::model('section', 'multilingual');
$ml = MultilingualSection::getList();
$c = Page::getCurrentPage();
$al = MultilingualSection::getBySectionOfSite($c);
$languages = array();
$locale = ACTIVE_LOCALE;
if (is_object($al)) {
$locale = $al->getLanguage();
}
foreach ($ml as $m) {
$languages[$m->getCollectionID()] = $m->getLanguageText($locale) . ' ' . (strlen($m->msIcon) ? '(' . $m->msIcon . ')' : '');
}
$this->set('languages', $languages);
$this->set('languageSections', $ml);
$this->set('action', $uh->getBlockTypeToolsURL($bt) . '/switch');
if (is_object($al)) {
$this->set('activeLanguage', $al->getCollectionID());
}
$pkg = Package::getByHandle('multilingual');
$mdl = Loader::helper('default_language', 'multilingual');
$this->set('defaultLanguage', $mdl->getSessionDefaultLocale());
$this->set('cID', $c->getCollectionID());
}
示例7: addBlock
public function addBlock($blockTypeHandle)
{
$bt = BlockType::getByHandle($blockTypeHandle);
$cct = ComposerControlType::getByHandle('block');
$control = $ctca->getPageTypeComposerControlByIdentifier($bt->getBlockID());
// add control
$composerFLS = $control->addToPageTypeComposerFormLayoutSet($this->layoutSet);
}
示例8: save
public function save() {
if (isset($this->notesBlock)) {
$this->notesBlock->delete();
}
$data['content'] = $this->post('dashboard_notes');
$bt = BlockType::getByHandle('content');
$this->uc->addBlock($bt, 'dashboard_notes', $data);
$this->redirect('/dashboard/', 'module','notes','notes_saved');
}
示例9: getOrInstallBlockType
private function getOrInstallBlockType($pkg, $btHandle)
{
$bt = BlockType::getByHandle($btHandle);
if (empty($bt)) {
BlockType::installBlockTypeFromPackage($btHandle, $pkg);
$bt = BlockType::getByHandle($btHandle);
}
return $bt;
}
示例10: block_name_for_handle
private function block_name_for_handle($handle)
{
if (empty($handle)) {
return '';
} else {
$bt = BlockType::getByHandle($handle);
return is_object($bt) ? $bt->getBlockTypeName() : '';
}
}
示例11: uninstall
public function uninstall()
{
BlockType::getByHandle('tweetcrete')->controller->uninstall();
parent::uninstall();
//make sure the block table gets dropped
$db = Loader::db();
$db->Execute('DROP TABLE IF EXISTS btTweetcrete');
$db->Execute('DROP TABLE IF EXISTS btTweetcreteUserOrHashSettings');
}
示例12: up
public function up(Schema $schema)
{
$bt = \BlockType::getByHandle('file');
if (is_object($bt)) {
$bt->refresh();
}
if (\Config::get('conversation.banned_words')) {
\Config::set('conversations.banned_words', true);
}
}
示例13: run
public function run() {
$bt = BlockType::getByHandle('image');
if (is_object($bt)) {
$bt->refresh();
}
$bt = BlockType::getByHandle('form');
if (is_object($bt)) {
$bt->refresh();
}
}
示例14: up
public function up(Schema $schema)
{
try {
$table = $schema->getTable('SystemDatabaseQueryLog');
$table->addColumn('ID', 'integer', array('unsigned' => true, 'autoincrement' => true));
$table->setPrimaryKey(array('ID'));
} catch (\Exception $e) {
}
$db = \Database::connection();
$db->executeQuery("DELETE FROM FileSetFiles WHERE fID NOT IN (SELECT fID FROM Files)");
$db->executeQuery("DELETE FROM FileSearchIndexAttributes WHERE fID NOT IN (SELECT fID FROM Files)");
$db->executeQuery("DELETE FROM DownloadStatistics WHERE fID NOT IN (SELECT fID FROM Files)");
$db->executeQuery("DELETE FROM FilePermissionAssignments WHERE fID NOT IN (SELECT fID FROM Files)");
$bt = \BlockType::getByHandle('page_list');
if (is_object($bt)) {
$bt->refresh();
}
}
示例15: testCoreImageBlockWithNoOverridesHasCorrectTemplates
function testCoreImageBlockWithNoOverridesHasCorrectTemplates()
{
// Test a.
$p = Page::getByID(1);
$blocks = $p->getBlocks('Header');
$b = $blocks[0];
$bvt = new BlockViewTemplate($b);
$this->assertEqual($bvt->getTemplate(), DIR_BASE_CORE . '/blocks/image/view.php', 'Test A');
// Test b.
$bt = BlockType::getByHandle('image');
global $a, $ap, $c, $cp;
if (is_object($bt)) {
ob_start();
$bv = new BlockView();
$bv->render($bt, 'add', array('a' => $a, 'ap' => $ap, 'c' => $c, 'cp' => $cp));
ob_end_clean();
}
$this->assertEqual($bv->getTemplate(), DIR_BASE_CORE . '/blocks/image/add.php', 'Test B');
}