Page Menu
Home
In-Portal Phabricator
Search
Configure Global Search
Log In
Files
F871774
install.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Thu, May 8, 2:33 AM
Size
2 KB
Mime Type
text/x-php
Expires
Sat, May 10, 2:33 AM (1 d, 13 h)
Engine
blob
Format
Raw Data
Handle
615644
Attached To
rMINC Modules.In-Commerce
install.php
View Options
<?php
/**
* @version $Id: install.php 14689 2011-10-25 13:43:04Z alex $
* @package In-Commerce
* @copyright Copyright (C) 1997 - 2009 Intechnic. All rights reserved.
* @license Commercial License
* This software is protected by copyright law and international treaties.
* Unauthorized reproduction or unlicensed usage of the code of this program,
* or any portion of it may result in severe civil and criminal penalties,
* and will be prosecuted to the maximum extent possible under the law
* See http://www.in-portal.org/commercial-license for copyright notices and details.
*/
$module_folder
=
'modules/in-commerce'
;
if
(!
defined
(
'IS_INSTALL'
))
{
// separate module install
define
(
'IS_INSTALL'
,
1
);
define
(
'ADMIN'
,
1
);
define
(
'FULL_PATH'
,
realpath
(
dirname
(
__FILE__
)
.
'/../..'
)
);
include_once
(
FULL_PATH
.
'/core/kernel/startup.php'
);
require_once
FULL_PATH
.
'/core/install/install_toolkit.php'
;
$toolkit
=
new
kInstallToolkit
();
}
else
{
// install, using installation wizard
$toolkit
=&
$this
->
toolkit
;
/* @var $toolkit kInstallToolkit */
}
$application
=&
kApplication
::
Instance
();
$application
->
Init
();
if
(
$application
->
RecallVar
(
'user_id'
)
!=
USER_ROOT
)
{
die
(
'restricted access!'
);
}
$category
=&
$toolkit
->
createModuleCategory
(
'Products'
,
'Product Catalog'
,
'#in-commerce/section_design#'
,
'in-commerce/img/menu_products.gif'
);
$toolkit
->
RunSQL
(
'/'
.
$module_folder
.
'/install/install_schema.sql'
);
$toolkit
->
RunSQL
(
'/'
.
$module_folder
.
'/install/install_data.sql'
,
'{ProductCatId}'
,
$category
->
GetID
());
$toolkit
->
ImportLanguage
(
'/'
.
$module_folder
.
'/install/english'
);
$toolkit
->
SetModuleRootCategory
(
basename
(
$module_folder
),
$category
->
GetID
());
$toolkit
->
linkCustomFields
(
basename
(
$module_folder
),
'p'
,
11
);
// to create Custom Fields for Products
$toolkit
->
linkCustomFields
(
'KERNEL'
,
'u'
,
6
);
// to create shipping related Custom Fields for Users
$toolkit
->
linkCustomFields
(
'KERNEL'
,
'c'
,
1
);
// to create ItemTemplate custom field
$toolkit
->
setModuleItemTemplate
(
$category
,
'p'
,
'#in-commerce/item_design#'
);
$toolkit
->
finalizeModuleInstall
(
$module_folder
,
true
);
Event Timeline
Log In to Comment