protected function getRadioButtonClass()
 {
     return ArrayUtil::getArrayValueWithExceptionIfNotFound($this->params, 'radioButtonClass');
 }
 protected function getPageVarName()
 {
     // TODO: @Shoaibi/@Jason: Low: Create a common parent for Element and ActionElement, put this there.
     return ArrayUtil::getArrayValueWithExceptionIfNotFound($this->params, 'pageVarName');
 }
 protected function getAutorespondersPortletClass()
 {
     return ArrayUtil::getArrayValueWithExceptionIfNotFound($this->params, 'autorespondersPortletClass');
 }
コード例 #4
0
ファイル: Element.php プロジェクト: maruthisivaprasad/zurmo
 protected function getListViewGridId()
 {
     return ArrayUtil::getArrayValueWithExceptionIfNotFound($this->params, 'listViewGridId');
 }
コード例 #5
0
 protected function getModelId()
 {
     $model = ArrayUtil::getArrayValueWithExceptionIfNotFound($this->params, 'relationModel');
     return $model->id;
 }
コード例 #6
0
 protected function getCampaignItemsPortletClass()
 {
     return ArrayUtil::getArrayValueWithExceptionIfNotFound($this->params, 'campaignItemsPortletClass');
 }
コード例 #7
0
 protected function getPortletId()
 {
     return ArrayUtil::getArrayValueWithExceptionIfNotFound($this->params, 'portletId');
 }
 protected function getSelectReportSearchBoxId()
 {
     return ArrayUtil::getArrayValueWithExceptionIfNotFound($this->params, 'selectReportSearchBoxId');
 }
 protected function getParamValue($key)
 {
     return ArrayUtil::getArrayValueWithExceptionIfNotFound($this->params, $key);
 }