Skip to content

Instantly share code, notes, and snippets.

View hissy's full-sized avatar
💭
😄

Takuro Hishikawa hissy

💭
😄
View GitHub Profile
@hissy
hissy / Output.md
Last active August 7, 2025 09:13
[Concrete CMS][9.4.x] Show cache settings of block types ブロックタイプごとのキャッシュ設定
Name Handle Cache Settings Cache Output Cache Output on Post Cache Output For Registered Users Output Cache Lifetime
アコーディオン accordion Enable Enable Enable Enable 0
オートナビ autonav Enable Enable Enable Disable 300
ボード board Enable Disable Disable Disable 0
パンくず breadcrumbs Enable Enable Enable Enable 0
カレンダー calendar Enable Disable Disable Disable 0
カレンダーイベント calendar_event Enable Disable Disable Disable 0
Concrete ステータスメッセージ desktop_app_status Enable Enable Enable Enable 86400
記事 content Enable Enable Enable Disable 0
@hissy
hissy / readme.md
Last active October 26, 2024 04:51
#ConcreteCMS Migrate legacy database connection to doctrine
@hissy
hissy / anonymize.php
Created February 11, 2022 12:20
#ConcreteCMS Tiny script to anonymize users
<?php
use Concrete\Core\Support\Facade\Application;
use Concrete\Core\User\UserInfoRepository;
$app = Application::getFacadeApplication();
/** @var UserInfoRepository $repository */
$repository = $app->make(UserInfoRepository::class);
$updated = 0;
$failed = 0;
@hissy
hissy / five_columns_grid.php
Created December 20, 2021 19:00
#ConcreteCMS #Containers Dynamic Grid Columns Container example
<?php
defined('C5_EXECUTE') or die("Access Denied.");
/** @var $c \Concrete\Core\Page\Page */
/** @var $container \Concrete\Core\Entity\Page\Container */
use Concrete\Core\Area\ContainerArea;
?>
<div class="grid grid-cols-2 md:grid-cols-4 xl:grid-cols-5 gap-x-4 gap-y-8">
@hissy
hissy / README.md
Last active January 17, 2022 23:57
#ConcreteCMS #V8 Override jQuery to 3.5, jQuery UI to 1.13.0 on Concrete CMS version 8.5.x

English

Overview

Concrete CMS version 8 uses jQuery 1.22.2 and jQuery UI 1.12.1, but these versions have officially been marked as the end of life. These libraries have some vulnerabilities, but the jQuery team won't fix them. They announced you should upgrade jQuery 3.5.0 or later.

The core team of Concrete CMS does not plan to update jQuery on version 8.x for backward compatibility. If you can update to Concrete CMS version 9, it'd be best to fix those vulnerabilities.

@hissy
hissy / view.php
Last active December 1, 2021 00:35
#ConcreteCMS Get conversation messages count by Page object
<?php
/** @var \Concrete\Core\Page\Page $page */
$totalMessages = 0;
foreach ($page->getBlocks() as $block) {
if ($block->getBlockTypeHandle() === 'core_conversation') {
/** @var \Concrete\Core\Conversation\Conversation $conversation */
$conversation = $block->getController()->getConversationObject();
if ($conversation) {
$totalMessages = $conversation->getConversationMessagesTotal();
}
@hissy
hissy / page_forbidden.php
Created July 5, 2021 09:16
[concrete5][V8] Keep query parameters on forwarding to login page from page forbidden
<?php
namespace Application\Controller\SinglePage;
use Concrete\Core\Http\ResponseFactoryInterface;
use Concrete\Core\Url\Resolver\Manager\ResolverManagerInterface;
use Concrete\Core\Url\UrlImmutable;
use Concrete\Core\User\User;
use Symfony\Component\HttpFoundation\Response;
@hissy
hissy / EventService.php
Created April 6, 2021 20:22
[concrete5] [V8] Create a draft detail page if you make a draft calendar event, and approve the page when you publish that event.
<?php
// application/src/Calendar/Event/EventService.php
namespace Application\Calendar\Event;
use Concrete\Core\Entity\Calendar\Calendar;
use Concrete\Core\Entity\Calendar\CalendarEvent;
use Concrete\Core\Entity\Calendar\CalendarEventVersion;
use Concrete\Core\Page\Page;
use Concrete\Core\Page\Type\Type;
@hissy
hissy / README.md
Last active March 23, 2021 17:03
[concrete5][V8] Check all database migrations already run or missed

This script is related with migration error on upgrade from 8.5.2 or before.

concretecms/concretecms#8771

You can check if there're missing migrations on your concrete5 site before upgrade it.

How to run the script

  1. Download checkMigrations.php and upload it
  2. Run it with c5:exec command
@hissy
hissy / HttpServiceProvider.php
Last active December 16, 2020 18:29
[concrete5] [V8] Fix: IE tries to download json file when you hit save button of content block
<?php
namespace Application\Http;
use Concrete\Core\Http\ResponseFactoryInterface;
class HttpServiceProvider extends \Concrete\Core\Http\HttpServiceProvider
{
public function register()
{
parent::register();