This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php defined('C5_EXECUTE') or die("Access Denied."); ?> | |
<aside class="blog-sidenav__list"> | |
<h5 class="list-title"><?=h($title)?></h5> | |
<p class="view-all"><a href="<?=URL::to('/store/blog/archive')?>">一覧を見る</a></p> | |
<?php if (count($dates)) { ?> | |
<ul class="list-archive row"> | |
<?php foreach ($dates as $date) { ?> | |
<li class="medium-6 columns<?php | |
if($date === end($dates)) { | |
echo ' end'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
application/bootstrap/autoload.php | |
application/bootstrap/start.php | |
application/config/doctrine/ | |
application/config/generated_overrides/ | |
application/config/concrete.php | |
application/config/update.php | |
application/config/database.php | |
application/files/ | |
application/languages/cs_CZ/ | |
application/languages/da_DK/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php defined('C5_EXECUTE') or die("Access Denied."); ?> | |
<p> | |
<button id="ccm-block-advanced-html-page-selector" type="button" class="btn btn-primary btn-xs"><?php echo t('Insert Page Link'); ?></button> | |
<button id="ccm-block-advanced-html-inline-file-selector" type="button" class="btn btn-primary btn-xs"><?php echo t('Insert File Inline Link'); ?></button> | |
<button id="ccm-block-advanced-html-download-file-selector" type="button" class="btn btn-primary btn-xs"><?php echo t('Insert File Download Link'); ?></button> | |
<button id="ccm-block-advanced-html-base-url" type="button" class="btn btn-primary btn-xs"><?php echo t('Insert Base URL'); ?></button> | |
<button id="ccm-block-advanced-html-force-download-file-selector" type="button" class="btn btn-primary btn-xs"><?php echo t('Insert Force File Download Link'); ?></button> | |
</p> | |
<div id="ccm-block-advanced-html-value"><?php echo htmlspecialchars($content,ENT_QUOTES,APP_CHARSET)?></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// application/controllers/api.php | |
namespace Application\Controller; | |
use PageList; | |
use Core; | |
use Page; | |
use URL; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\Src\Workflow; | |
use Concrete\Core\Workflow\HistoryEntry\BasicHistoryEntry as BasicWorkflowHistoryEntry; | |
use Concrete\Core\Workflow\Progress\Progress as WorkflowProgress; | |
use Concrete\Core\Workflow\Progress\BasicData as BasicWorkflowProgressData; | |
use Loader; | |
use Core; | |
use PermissionKey; | |
use User; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\Block\ExpressEntryList; | |
use Concrete\Core\Express\Entry\Search\Result\Result; | |
use Concrete\Core\Express\EntryList; | |
class Controller extends \Concrete\Block\ExpressEntryList\Controller | |
{ | |
public function view() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Application\Src\Workflow; | |
use Concrete\Core\Workflow\Progress\Progress as WorkflowProgress; | |
use Core; | |
use PermissionKey; | |
class BasicWorkflow extends \Concrete\Core\Workflow\BasicWorkflow | |
{ | |
protected function notify( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php defined('C5_EXECUTE') or die("Access Denied."); | |
Loader::library('3rdparty/mobile_detect'); | |
$md = new Mobile_Detect(); | |
$c = Page::getCurrentPage(); | |
if ($c->isEditMode()) { ?> | |
<div class="ccm-edit-mode-disabled-item" style="width: <?php echo $width; ?>; height: <?php echo $height; ?>"> | |
<div style="padding: 80px 0px 0px 0px"><?php echo t('Google Map disabled in edit mode.')?></div> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -- concrete5 urls start -- | |
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteBase / | |
RewriteCond %{HTTP_HOST} ^(tagworks\.jp)$ [NC] | |
RewriteRule (.*) http://www.tagworks.jp%{REQUEST_URI} [R=301,L] | |
RewriteCond %{REQUEST_FILENAME} !-f | |
RewriteCond %{REQUEST_FILENAME}/index.html !-f | |
RewriteCond %{REQUEST_FILENAME}/index.php !-f | |
RewriteRule . index.php [L] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php defined('C5_EXECUTE') or die("Access Denied."); | |
// application/blocks/autonav/templates/grouping_autonav/view.php | |
$navItems = $controller->getNavItems(); | |
$c = Page::getCurrentPage(); | |
function cmp($a, $b) | |
{ | |
$cmp = strcmp($a->cObj->getAttribute('attribute'), $b->cObj->getAttribute('attribute')); |