This file contains hidden or 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 | |
class ACMS_POST_Download extends ACMS_POST | |
{ | |
var $isCacheDelete = false; | |
protected $isCSRF = false; | |
function post() | |
{ |
This file contains hidden or 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 Acms\Services\Common; | |
use DB; | |
use SQL; | |
use Tpl; | |
use Storage; | |
use Image; | |
use Field; |
This file contains hidden or 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 | |
class ACMS_POST_Entry_Mail extends ACMS_POST_Entry | |
{ | |
var $isCacheDelete = false; | |
function post() | |
{ | |
@set_time_limit(0); |
This file contains hidden or 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 | |
class ACMS_POST_Import_Model_Entry extends ACMS_POST_Import_Model | |
{ | |
protected $entry; | |
protected $units; | |
protected $fields; | |
protected $importCid; | |
protected $importBid = BID; | |
protected $subCategories = array(); |
This file contains hidden or 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 | |
class ACMS_GET_Category_List extends ACMS_GET | |
{ | |
var $_axis = array( | |
'cid' => 'descendant-or-self', | |
'bid' => 'descendant-or-self', | |
); | |
function getAncestorsMap($Map, $root, & $i=0) |
This file contains hidden or 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 | |
class ACMS_GET_Admin_Category_Index extends ACMS_GET_Admin | |
{ | |
function get() | |
{ | |
if (roleAvailableUser()) { | |
if (!roleAuthorization('category_edit', BID)) { | |
return false; | |
} |
This file contains hidden or 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 | |
use Acms\Services\Facades\RichEditor; | |
class ACMS_GET_Admin_Config extends ACMS_GET_Admin | |
{ | |
function & getConfig($rid, $mid, $setid = null) | |
{ | |
$post_config =& $this->Post->getChild('config'); |
This file contains hidden or 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 Acms\Services\StaticExport\Compiler; | |
use Acms\Services\StaticExport\Contracts\Resolver; | |
use ACMS_RAM; | |
class SourceResolver extends Resolver | |
{ | |
/** |
This file contains hidden or 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 | |
class ACMS_POST_Form_Submit extends ACMS_POST_Form | |
{ | |
/** | |
* バックグラウンド送信 | |
* | |
* @var bool | |
*/ | |
protected $background = false; |
This file contains hidden or 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 | |
class ACMS_GET_Plugin_Schedule extends ACMS_GET | |
{ | |
//現在値 or URLコンテキスト から取得&生成する | |
var $year; //年 | |
var $month; //月 | |
var $week; //週 | |
var $day; //日 |