PMCORE-3909 PMCORE-3905: Add option to disable session warning in web entry when "Require user login" is selected
This commit is contained in:
@@ -71,13 +71,13 @@ class JobsPendingMapBuilder
|
||||
|
||||
$tMap->addColumn('PAYLOAD', 'Payload', 'string', CreoleTypes::LONGVARCHAR, true, null);
|
||||
|
||||
$tMap->addColumn('ATTEMPTS', 'Attempts', 'int', CreoleTypes::TINYINT, true, 3);
|
||||
$tMap->addColumn('ATTEMPTS', 'Attempts', 'int', CreoleTypes::TINYINT, true, null);
|
||||
|
||||
$tMap->addColumn('RESERVED_AT', 'ReservedAt', 'string', CreoleTypes::BIGINT, false, 10);
|
||||
$tMap->addColumn('RESERVED_AT', 'ReservedAt', 'string', CreoleTypes::BIGINT, false, 20);
|
||||
|
||||
$tMap->addColumn('AVAILABLE_AT', 'AvailableAt', 'string', CreoleTypes::BIGINT, true, 10);
|
||||
$tMap->addColumn('AVAILABLE_AT', 'AvailableAt', 'string', CreoleTypes::BIGINT, true, 20);
|
||||
|
||||
$tMap->addColumn('CREATED_AT', 'CreatedAt', 'string', CreoleTypes::BIGINT, true, 10);
|
||||
$tMap->addColumn('CREATED_AT', 'CreatedAt', 'string', CreoleTypes::BIGINT, true, 20);
|
||||
|
||||
} // doBuild()
|
||||
|
||||
|
||||
@@ -87,7 +87,7 @@ class ProcessVariablesMapBuilder
|
||||
|
||||
$tMap->addColumn('VAR_SQL', 'VarSql', 'string', CreoleTypes::LONGVARCHAR, false, null);
|
||||
|
||||
$tMap->addColumn('VAR_NULL', 'VarNull', 'int', CreoleTypes::TINYINT, false, 32);
|
||||
$tMap->addColumn('VAR_NULL', 'VarNull', 'int', CreoleTypes::TINYINT, false, null);
|
||||
|
||||
$tMap->addColumn('VAR_DEFAULT', 'VarDefault', 'string', CreoleTypes::VARCHAR, false, 32);
|
||||
|
||||
|
||||
@@ -89,11 +89,11 @@ class SchedulerMapBuilder
|
||||
|
||||
$tMap->addColumn('CATEGORY', 'Category', 'string', CreoleTypes::VARCHAR, false, 255);
|
||||
|
||||
$tMap->addColumn('SYSTEM', 'System', 'int', CreoleTypes::TINYINT, false, 3);
|
||||
$tMap->addColumn('SYSTEM', 'System', 'int', CreoleTypes::TINYINT, false, null);
|
||||
|
||||
$tMap->addColumn('TIMEZONE', 'Timezone', 'string', CreoleTypes::VARCHAR, false, 255);
|
||||
|
||||
$tMap->addColumn('ENABLE', 'Enable', 'int', CreoleTypes::TINYINT, false, 3);
|
||||
$tMap->addColumn('ENABLE', 'Enable', 'int', CreoleTypes::TINYINT, false, null);
|
||||
|
||||
$tMap->addColumn('CREATION_DATE', 'CreationDate', 'int', CreoleTypes::TIMESTAMP, false, null);
|
||||
|
||||
|
||||
@@ -97,6 +97,8 @@ class WebEntryMapBuilder
|
||||
|
||||
$tMap->addColumn('WE_HIDE_INFORMATION_BAR', 'WeHideInformationBar', 'string', CreoleTypes::CHAR, false, 1);
|
||||
|
||||
$tMap->addColumn('WE_HIDE_ACTIVE_SESSION_WARNING', 'WeHideActiveSessionWarning', 'string', CreoleTypes::CHAR, false, 1);
|
||||
|
||||
$tMap->addColumn('WE_CALLBACK', 'WeCallback', 'string', CreoleTypes::VARCHAR, true, 13);
|
||||
|
||||
$tMap->addColumn('WE_CALLBACK_URL', 'WeCallbackUrl', 'string', CreoleTypes::LONGVARCHAR, false, null);
|
||||
|
||||
@@ -123,6 +123,12 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
|
||||
*/
|
||||
protected $we_hide_information_bar = '1';
|
||||
|
||||
/**
|
||||
* The value for the we_hide_active_session_warning field.
|
||||
* @var string
|
||||
*/
|
||||
protected $we_hide_active_session_warning = '1';
|
||||
|
||||
/**
|
||||
* The value for the we_callback field.
|
||||
* @var string
|
||||
@@ -397,6 +403,17 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
|
||||
return $this->we_hide_information_bar;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the [we_hide_active_session_warning] column value.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function getWeHideActiveSessionWarning()
|
||||
{
|
||||
|
||||
return $this->we_hide_active_session_warning;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the [we_callback] column value.
|
||||
*
|
||||
@@ -840,6 +857,28 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
|
||||
|
||||
} // setWeHideInformationBar()
|
||||
|
||||
/**
|
||||
* Set the value of [we_hide_active_session_warning] column.
|
||||
*
|
||||
* @param string $v new value
|
||||
* @return void
|
||||
*/
|
||||
public function setWeHideActiveSessionWarning($v)
|
||||
{
|
||||
|
||||
// Since the native PHP type for this column is string,
|
||||
// we will cast the input to a string (if it is not).
|
||||
if ($v !== null && !is_string($v)) {
|
||||
$v = (string) $v;
|
||||
}
|
||||
|
||||
if ($this->we_hide_active_session_warning !== $v || $v === '1') {
|
||||
$this->we_hide_active_session_warning = $v;
|
||||
$this->modifiedColumns[] = WebEntryPeer::WE_HIDE_ACTIVE_SESSION_WARNING;
|
||||
}
|
||||
|
||||
} // setWeHideActiveSessionWarning()
|
||||
|
||||
/**
|
||||
* Set the value of [we_callback] column.
|
||||
*
|
||||
@@ -1043,26 +1082,28 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
|
||||
|
||||
$this->we_hide_information_bar = $rs->getString($startcol + 15);
|
||||
|
||||
$this->we_callback = $rs->getString($startcol + 16);
|
||||
$this->we_hide_active_session_warning = $rs->getString($startcol + 16);
|
||||
|
||||
$this->we_callback_url = $rs->getString($startcol + 17);
|
||||
$this->we_callback = $rs->getString($startcol + 17);
|
||||
|
||||
$this->we_link_generation = $rs->getString($startcol + 18);
|
||||
$this->we_callback_url = $rs->getString($startcol + 18);
|
||||
|
||||
$this->we_link_skin = $rs->getString($startcol + 19);
|
||||
$this->we_link_generation = $rs->getString($startcol + 19);
|
||||
|
||||
$this->we_link_language = $rs->getString($startcol + 20);
|
||||
$this->we_link_skin = $rs->getString($startcol + 20);
|
||||
|
||||
$this->we_link_domain = $rs->getString($startcol + 21);
|
||||
$this->we_link_language = $rs->getString($startcol + 21);
|
||||
|
||||
$this->we_show_in_new_case = $rs->getString($startcol + 22);
|
||||
$this->we_link_domain = $rs->getString($startcol + 22);
|
||||
|
||||
$this->we_show_in_new_case = $rs->getString($startcol + 23);
|
||||
|
||||
$this->resetModified();
|
||||
|
||||
$this->setNew(false);
|
||||
|
||||
// FIXME - using NUM_COLUMNS may be clearer.
|
||||
return $startcol + 23; // 23 = WebEntryPeer::NUM_COLUMNS - WebEntryPeer::NUM_LAZY_LOAD_COLUMNS).
|
||||
return $startcol + 24; // 24 = WebEntryPeer::NUM_COLUMNS - WebEntryPeer::NUM_LAZY_LOAD_COLUMNS).
|
||||
|
||||
} catch (Exception $e) {
|
||||
throw new PropelException("Error populating WebEntry object", $e);
|
||||
@@ -1315,24 +1356,27 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
|
||||
return $this->getWeHideInformationBar();
|
||||
break;
|
||||
case 16:
|
||||
return $this->getWeCallback();
|
||||
return $this->getWeHideActiveSessionWarning();
|
||||
break;
|
||||
case 17:
|
||||
return $this->getWeCallbackUrl();
|
||||
return $this->getWeCallback();
|
||||
break;
|
||||
case 18:
|
||||
return $this->getWeLinkGeneration();
|
||||
return $this->getWeCallbackUrl();
|
||||
break;
|
||||
case 19:
|
||||
return $this->getWeLinkSkin();
|
||||
return $this->getWeLinkGeneration();
|
||||
break;
|
||||
case 20:
|
||||
return $this->getWeLinkLanguage();
|
||||
return $this->getWeLinkSkin();
|
||||
break;
|
||||
case 21:
|
||||
return $this->getWeLinkDomain();
|
||||
return $this->getWeLinkLanguage();
|
||||
break;
|
||||
case 22:
|
||||
return $this->getWeLinkDomain();
|
||||
break;
|
||||
case 23:
|
||||
return $this->getWeShowInNewCase();
|
||||
break;
|
||||
default:
|
||||
@@ -1371,13 +1415,14 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
|
||||
$keys[13] => $this->getWeCustomTitle(),
|
||||
$keys[14] => $this->getWeAuthentication(),
|
||||
$keys[15] => $this->getWeHideInformationBar(),
|
||||
$keys[16] => $this->getWeCallback(),
|
||||
$keys[17] => $this->getWeCallbackUrl(),
|
||||
$keys[18] => $this->getWeLinkGeneration(),
|
||||
$keys[19] => $this->getWeLinkSkin(),
|
||||
$keys[20] => $this->getWeLinkLanguage(),
|
||||
$keys[21] => $this->getWeLinkDomain(),
|
||||
$keys[22] => $this->getWeShowInNewCase(),
|
||||
$keys[16] => $this->getWeHideActiveSessionWarning(),
|
||||
$keys[17] => $this->getWeCallback(),
|
||||
$keys[18] => $this->getWeCallbackUrl(),
|
||||
$keys[19] => $this->getWeLinkGeneration(),
|
||||
$keys[20] => $this->getWeLinkSkin(),
|
||||
$keys[21] => $this->getWeLinkLanguage(),
|
||||
$keys[22] => $this->getWeLinkDomain(),
|
||||
$keys[23] => $this->getWeShowInNewCase(),
|
||||
);
|
||||
return $result;
|
||||
}
|
||||
@@ -1458,24 +1503,27 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
|
||||
$this->setWeHideInformationBar($value);
|
||||
break;
|
||||
case 16:
|
||||
$this->setWeCallback($value);
|
||||
$this->setWeHideActiveSessionWarning($value);
|
||||
break;
|
||||
case 17:
|
||||
$this->setWeCallbackUrl($value);
|
||||
$this->setWeCallback($value);
|
||||
break;
|
||||
case 18:
|
||||
$this->setWeLinkGeneration($value);
|
||||
$this->setWeCallbackUrl($value);
|
||||
break;
|
||||
case 19:
|
||||
$this->setWeLinkSkin($value);
|
||||
$this->setWeLinkGeneration($value);
|
||||
break;
|
||||
case 20:
|
||||
$this->setWeLinkLanguage($value);
|
||||
$this->setWeLinkSkin($value);
|
||||
break;
|
||||
case 21:
|
||||
$this->setWeLinkDomain($value);
|
||||
$this->setWeLinkLanguage($value);
|
||||
break;
|
||||
case 22:
|
||||
$this->setWeLinkDomain($value);
|
||||
break;
|
||||
case 23:
|
||||
$this->setWeShowInNewCase($value);
|
||||
break;
|
||||
} // switch()
|
||||
@@ -1566,31 +1614,35 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
|
||||
}
|
||||
|
||||
if (array_key_exists($keys[16], $arr)) {
|
||||
$this->setWeCallback($arr[$keys[16]]);
|
||||
$this->setWeHideActiveSessionWarning($arr[$keys[16]]);
|
||||
}
|
||||
|
||||
if (array_key_exists($keys[17], $arr)) {
|
||||
$this->setWeCallbackUrl($arr[$keys[17]]);
|
||||
$this->setWeCallback($arr[$keys[17]]);
|
||||
}
|
||||
|
||||
if (array_key_exists($keys[18], $arr)) {
|
||||
$this->setWeLinkGeneration($arr[$keys[18]]);
|
||||
$this->setWeCallbackUrl($arr[$keys[18]]);
|
||||
}
|
||||
|
||||
if (array_key_exists($keys[19], $arr)) {
|
||||
$this->setWeLinkSkin($arr[$keys[19]]);
|
||||
$this->setWeLinkGeneration($arr[$keys[19]]);
|
||||
}
|
||||
|
||||
if (array_key_exists($keys[20], $arr)) {
|
||||
$this->setWeLinkLanguage($arr[$keys[20]]);
|
||||
$this->setWeLinkSkin($arr[$keys[20]]);
|
||||
}
|
||||
|
||||
if (array_key_exists($keys[21], $arr)) {
|
||||
$this->setWeLinkDomain($arr[$keys[21]]);
|
||||
$this->setWeLinkLanguage($arr[$keys[21]]);
|
||||
}
|
||||
|
||||
if (array_key_exists($keys[22], $arr)) {
|
||||
$this->setWeShowInNewCase($arr[$keys[22]]);
|
||||
$this->setWeLinkDomain($arr[$keys[22]]);
|
||||
}
|
||||
|
||||
if (array_key_exists($keys[23], $arr)) {
|
||||
$this->setWeShowInNewCase($arr[$keys[23]]);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1668,6 +1720,10 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
|
||||
$criteria->add(WebEntryPeer::WE_HIDE_INFORMATION_BAR, $this->we_hide_information_bar);
|
||||
}
|
||||
|
||||
if ($this->isColumnModified(WebEntryPeer::WE_HIDE_ACTIVE_SESSION_WARNING)) {
|
||||
$criteria->add(WebEntryPeer::WE_HIDE_ACTIVE_SESSION_WARNING, $this->we_hide_active_session_warning);
|
||||
}
|
||||
|
||||
if ($this->isColumnModified(WebEntryPeer::WE_CALLBACK)) {
|
||||
$criteria->add(WebEntryPeer::WE_CALLBACK, $this->we_callback);
|
||||
}
|
||||
@@ -1780,6 +1836,8 @@ abstract class BaseWebEntry extends BaseObject implements Persistent
|
||||
|
||||
$copyObj->setWeHideInformationBar($this->we_hide_information_bar);
|
||||
|
||||
$copyObj->setWeHideActiveSessionWarning($this->we_hide_active_session_warning);
|
||||
|
||||
$copyObj->setWeCallback($this->we_callback);
|
||||
|
||||
$copyObj->setWeCallbackUrl($this->we_callback_url);
|
||||
|
||||
@@ -25,7 +25,7 @@ abstract class BaseWebEntryPeer
|
||||
const CLASS_DEFAULT = 'classes.model.WebEntry';
|
||||
|
||||
/** The total number of columns. */
|
||||
const NUM_COLUMNS = 23;
|
||||
const NUM_COLUMNS = 24;
|
||||
|
||||
/** The number of lazy-loaded columns. */
|
||||
const NUM_LAZY_LOAD_COLUMNS = 0;
|
||||
@@ -79,6 +79,9 @@ abstract class BaseWebEntryPeer
|
||||
/** the column name for the WE_HIDE_INFORMATION_BAR field */
|
||||
const WE_HIDE_INFORMATION_BAR = 'WEB_ENTRY.WE_HIDE_INFORMATION_BAR';
|
||||
|
||||
/** the column name for the WE_HIDE_ACTIVE_SESSION_WARNING field */
|
||||
const WE_HIDE_ACTIVE_SESSION_WARNING = 'WEB_ENTRY.WE_HIDE_ACTIVE_SESSION_WARNING';
|
||||
|
||||
/** the column name for the WE_CALLBACK field */
|
||||
const WE_CALLBACK = 'WEB_ENTRY.WE_CALLBACK';
|
||||
|
||||
@@ -111,10 +114,10 @@ abstract class BaseWebEntryPeer
|
||||
* e.g. self::$fieldNames[self::TYPE_PHPNAME][0] = 'Id'
|
||||
*/
|
||||
private static $fieldNames = array (
|
||||
BasePeer::TYPE_PHPNAME => array ('WeUid', 'ProUid', 'TasUid', 'DynUid', 'UsrUid', 'WeMethod', 'WeInputDocumentAccess', 'WeData', 'WeCreateUsrUid', 'WeUpdateUsrUid', 'WeCreateDate', 'WeUpdateDate', 'WeType', 'WeCustomTitle', 'WeAuthentication', 'WeHideInformationBar', 'WeCallback', 'WeCallbackUrl', 'WeLinkGeneration', 'WeLinkSkin', 'WeLinkLanguage', 'WeLinkDomain', 'WeShowInNewCase', ),
|
||||
BasePeer::TYPE_COLNAME => array (WebEntryPeer::WE_UID, WebEntryPeer::PRO_UID, WebEntryPeer::TAS_UID, WebEntryPeer::DYN_UID, WebEntryPeer::USR_UID, WebEntryPeer::WE_METHOD, WebEntryPeer::WE_INPUT_DOCUMENT_ACCESS, WebEntryPeer::WE_DATA, WebEntryPeer::WE_CREATE_USR_UID, WebEntryPeer::WE_UPDATE_USR_UID, WebEntryPeer::WE_CREATE_DATE, WebEntryPeer::WE_UPDATE_DATE, WebEntryPeer::WE_TYPE, WebEntryPeer::WE_CUSTOM_TITLE, WebEntryPeer::WE_AUTHENTICATION, WebEntryPeer::WE_HIDE_INFORMATION_BAR, WebEntryPeer::WE_CALLBACK, WebEntryPeer::WE_CALLBACK_URL, WebEntryPeer::WE_LINK_GENERATION, WebEntryPeer::WE_LINK_SKIN, WebEntryPeer::WE_LINK_LANGUAGE, WebEntryPeer::WE_LINK_DOMAIN, WebEntryPeer::WE_SHOW_IN_NEW_CASE, ),
|
||||
BasePeer::TYPE_FIELDNAME => array ('WE_UID', 'PRO_UID', 'TAS_UID', 'DYN_UID', 'USR_UID', 'WE_METHOD', 'WE_INPUT_DOCUMENT_ACCESS', 'WE_DATA', 'WE_CREATE_USR_UID', 'WE_UPDATE_USR_UID', 'WE_CREATE_DATE', 'WE_UPDATE_DATE', 'WE_TYPE', 'WE_CUSTOM_TITLE', 'WE_AUTHENTICATION', 'WE_HIDE_INFORMATION_BAR', 'WE_CALLBACK', 'WE_CALLBACK_URL', 'WE_LINK_GENERATION', 'WE_LINK_SKIN', 'WE_LINK_LANGUAGE', 'WE_LINK_DOMAIN', 'WE_SHOW_IN_NEW_CASE', ),
|
||||
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, )
|
||||
BasePeer::TYPE_PHPNAME => array ('WeUid', 'ProUid', 'TasUid', 'DynUid', 'UsrUid', 'WeMethod', 'WeInputDocumentAccess', 'WeData', 'WeCreateUsrUid', 'WeUpdateUsrUid', 'WeCreateDate', 'WeUpdateDate', 'WeType', 'WeCustomTitle', 'WeAuthentication', 'WeHideInformationBar', 'WeHideActiveSessionWarning', 'WeCallback', 'WeCallbackUrl', 'WeLinkGeneration', 'WeLinkSkin', 'WeLinkLanguage', 'WeLinkDomain', 'WeShowInNewCase', ),
|
||||
BasePeer::TYPE_COLNAME => array (WebEntryPeer::WE_UID, WebEntryPeer::PRO_UID, WebEntryPeer::TAS_UID, WebEntryPeer::DYN_UID, WebEntryPeer::USR_UID, WebEntryPeer::WE_METHOD, WebEntryPeer::WE_INPUT_DOCUMENT_ACCESS, WebEntryPeer::WE_DATA, WebEntryPeer::WE_CREATE_USR_UID, WebEntryPeer::WE_UPDATE_USR_UID, WebEntryPeer::WE_CREATE_DATE, WebEntryPeer::WE_UPDATE_DATE, WebEntryPeer::WE_TYPE, WebEntryPeer::WE_CUSTOM_TITLE, WebEntryPeer::WE_AUTHENTICATION, WebEntryPeer::WE_HIDE_INFORMATION_BAR, WebEntryPeer::WE_HIDE_ACTIVE_SESSION_WARNING, WebEntryPeer::WE_CALLBACK, WebEntryPeer::WE_CALLBACK_URL, WebEntryPeer::WE_LINK_GENERATION, WebEntryPeer::WE_LINK_SKIN, WebEntryPeer::WE_LINK_LANGUAGE, WebEntryPeer::WE_LINK_DOMAIN, WebEntryPeer::WE_SHOW_IN_NEW_CASE, ),
|
||||
BasePeer::TYPE_FIELDNAME => array ('WE_UID', 'PRO_UID', 'TAS_UID', 'DYN_UID', 'USR_UID', 'WE_METHOD', 'WE_INPUT_DOCUMENT_ACCESS', 'WE_DATA', 'WE_CREATE_USR_UID', 'WE_UPDATE_USR_UID', 'WE_CREATE_DATE', 'WE_UPDATE_DATE', 'WE_TYPE', 'WE_CUSTOM_TITLE', 'WE_AUTHENTICATION', 'WE_HIDE_INFORMATION_BAR', 'WE_HIDE_ACTIVE_SESSION_WARNING', 'WE_CALLBACK', 'WE_CALLBACK_URL', 'WE_LINK_GENERATION', 'WE_LINK_SKIN', 'WE_LINK_LANGUAGE', 'WE_LINK_DOMAIN', 'WE_SHOW_IN_NEW_CASE', ),
|
||||
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, )
|
||||
);
|
||||
|
||||
/**
|
||||
@@ -124,10 +127,10 @@ abstract class BaseWebEntryPeer
|
||||
* e.g. self::$fieldNames[BasePeer::TYPE_PHPNAME]['Id'] = 0
|
||||
*/
|
||||
private static $fieldKeys = array (
|
||||
BasePeer::TYPE_PHPNAME => array ('WeUid' => 0, 'ProUid' => 1, 'TasUid' => 2, 'DynUid' => 3, 'UsrUid' => 4, 'WeMethod' => 5, 'WeInputDocumentAccess' => 6, 'WeData' => 7, 'WeCreateUsrUid' => 8, 'WeUpdateUsrUid' => 9, 'WeCreateDate' => 10, 'WeUpdateDate' => 11, 'WeType' => 12, 'WeCustomTitle' => 13, 'WeAuthentication' => 14, 'WeHideInformationBar' => 15, 'WeCallback' => 16, 'WeCallbackUrl' => 17, 'WeLinkGeneration' => 18, 'WeLinkSkin' => 19, 'WeLinkLanguage' => 20, 'WeLinkDomain' => 21, 'WeShowInNewCase' => 22, ),
|
||||
BasePeer::TYPE_COLNAME => array (WebEntryPeer::WE_UID => 0, WebEntryPeer::PRO_UID => 1, WebEntryPeer::TAS_UID => 2, WebEntryPeer::DYN_UID => 3, WebEntryPeer::USR_UID => 4, WebEntryPeer::WE_METHOD => 5, WebEntryPeer::WE_INPUT_DOCUMENT_ACCESS => 6, WebEntryPeer::WE_DATA => 7, WebEntryPeer::WE_CREATE_USR_UID => 8, WebEntryPeer::WE_UPDATE_USR_UID => 9, WebEntryPeer::WE_CREATE_DATE => 10, WebEntryPeer::WE_UPDATE_DATE => 11, WebEntryPeer::WE_TYPE => 12, WebEntryPeer::WE_CUSTOM_TITLE => 13, WebEntryPeer::WE_AUTHENTICATION => 14, WebEntryPeer::WE_HIDE_INFORMATION_BAR => 15, WebEntryPeer::WE_CALLBACK => 16, WebEntryPeer::WE_CALLBACK_URL => 17, WebEntryPeer::WE_LINK_GENERATION => 18, WebEntryPeer::WE_LINK_SKIN => 19, WebEntryPeer::WE_LINK_LANGUAGE => 20, WebEntryPeer::WE_LINK_DOMAIN => 21, WebEntryPeer::WE_SHOW_IN_NEW_CASE => 22, ),
|
||||
BasePeer::TYPE_FIELDNAME => array ('WE_UID' => 0, 'PRO_UID' => 1, 'TAS_UID' => 2, 'DYN_UID' => 3, 'USR_UID' => 4, 'WE_METHOD' => 5, 'WE_INPUT_DOCUMENT_ACCESS' => 6, 'WE_DATA' => 7, 'WE_CREATE_USR_UID' => 8, 'WE_UPDATE_USR_UID' => 9, 'WE_CREATE_DATE' => 10, 'WE_UPDATE_DATE' => 11, 'WE_TYPE' => 12, 'WE_CUSTOM_TITLE' => 13, 'WE_AUTHENTICATION' => 14, 'WE_HIDE_INFORMATION_BAR' => 15, 'WE_CALLBACK' => 16, 'WE_CALLBACK_URL' => 17, 'WE_LINK_GENERATION' => 18, 'WE_LINK_SKIN' => 19, 'WE_LINK_LANGUAGE' => 20, 'WE_LINK_DOMAIN' => 21, 'WE_SHOW_IN_NEW_CASE' => 22, ),
|
||||
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, )
|
||||
BasePeer::TYPE_PHPNAME => array ('WeUid' => 0, 'ProUid' => 1, 'TasUid' => 2, 'DynUid' => 3, 'UsrUid' => 4, 'WeMethod' => 5, 'WeInputDocumentAccess' => 6, 'WeData' => 7, 'WeCreateUsrUid' => 8, 'WeUpdateUsrUid' => 9, 'WeCreateDate' => 10, 'WeUpdateDate' => 11, 'WeType' => 12, 'WeCustomTitle' => 13, 'WeAuthentication' => 14, 'WeHideInformationBar' => 15, 'WeHideActiveSessionWarning' => 16, 'WeCallback' => 17, 'WeCallbackUrl' => 18, 'WeLinkGeneration' => 19, 'WeLinkSkin' => 20, 'WeLinkLanguage' => 21, 'WeLinkDomain' => 22, 'WeShowInNewCase' => 23, ),
|
||||
BasePeer::TYPE_COLNAME => array (WebEntryPeer::WE_UID => 0, WebEntryPeer::PRO_UID => 1, WebEntryPeer::TAS_UID => 2, WebEntryPeer::DYN_UID => 3, WebEntryPeer::USR_UID => 4, WebEntryPeer::WE_METHOD => 5, WebEntryPeer::WE_INPUT_DOCUMENT_ACCESS => 6, WebEntryPeer::WE_DATA => 7, WebEntryPeer::WE_CREATE_USR_UID => 8, WebEntryPeer::WE_UPDATE_USR_UID => 9, WebEntryPeer::WE_CREATE_DATE => 10, WebEntryPeer::WE_UPDATE_DATE => 11, WebEntryPeer::WE_TYPE => 12, WebEntryPeer::WE_CUSTOM_TITLE => 13, WebEntryPeer::WE_AUTHENTICATION => 14, WebEntryPeer::WE_HIDE_INFORMATION_BAR => 15, WebEntryPeer::WE_HIDE_ACTIVE_SESSION_WARNING => 16, WebEntryPeer::WE_CALLBACK => 17, WebEntryPeer::WE_CALLBACK_URL => 18, WebEntryPeer::WE_LINK_GENERATION => 19, WebEntryPeer::WE_LINK_SKIN => 20, WebEntryPeer::WE_LINK_LANGUAGE => 21, WebEntryPeer::WE_LINK_DOMAIN => 22, WebEntryPeer::WE_SHOW_IN_NEW_CASE => 23, ),
|
||||
BasePeer::TYPE_FIELDNAME => array ('WE_UID' => 0, 'PRO_UID' => 1, 'TAS_UID' => 2, 'DYN_UID' => 3, 'USR_UID' => 4, 'WE_METHOD' => 5, 'WE_INPUT_DOCUMENT_ACCESS' => 6, 'WE_DATA' => 7, 'WE_CREATE_USR_UID' => 8, 'WE_UPDATE_USR_UID' => 9, 'WE_CREATE_DATE' => 10, 'WE_UPDATE_DATE' => 11, 'WE_TYPE' => 12, 'WE_CUSTOM_TITLE' => 13, 'WE_AUTHENTICATION' => 14, 'WE_HIDE_INFORMATION_BAR' => 15, 'WE_HIDE_ACTIVE_SESSION_WARNING' => 16, 'WE_CALLBACK' => 17, 'WE_CALLBACK_URL' => 18, 'WE_LINK_GENERATION' => 19, 'WE_LINK_SKIN' => 20, 'WE_LINK_LANGUAGE' => 21, 'WE_LINK_DOMAIN' => 22, 'WE_SHOW_IN_NEW_CASE' => 23, ),
|
||||
BasePeer::TYPE_NUM => array (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, )
|
||||
);
|
||||
|
||||
/**
|
||||
@@ -260,6 +263,8 @@ abstract class BaseWebEntryPeer
|
||||
|
||||
$criteria->addSelectColumn(WebEntryPeer::WE_HIDE_INFORMATION_BAR);
|
||||
|
||||
$criteria->addSelectColumn(WebEntryPeer::WE_HIDE_ACTIVE_SESSION_WARNING);
|
||||
|
||||
$criteria->addSelectColumn(WebEntryPeer::WE_CALLBACK);
|
||||
|
||||
$criteria->addSelectColumn(WebEntryPeer::WE_CALLBACK_URL);
|
||||
|
||||
Reference in New Issue
Block a user