本文整理汇总了PHP中CMbObject::getBackProps方法的典型用法代码示例。如果您正苦于以下问题:PHP CMbObject::getBackProps方法的具体用法?PHP CMbObject::getBackProps怎么用?PHP CMbObject::getBackProps使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CMbObject
的用法示例。
在下文中一共展示了CMbObject::getBackProps方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getBackProps
/**
* @see parent::getBackProps()
*/
function getBackProps()
{
$backProps = parent::getBackProps();
$backProps["graph_links"] = "CSupervisionGraphToPack pack_id";
$backProps["operations"] = "COperation graph_pack_id";
return $backProps;
}
示例2: getBackProps
/**
* @see parent::getBackProps()
*/
function getBackProps()
{
$backProps = parent::getBackProps();
$backProps['lines_dmi'] = 'CPrescriptionLineDMI order_item_reception_id';
$backProps['bill_items'] = 'CProductReceptionBillItem reception_item_id';
$backProps['order_items'] = 'CProductOrderItem lot_id';
return $backProps;
}
示例3: getBackProps
/**
* @see parent::getBackProps()
*/
function getBackProps()
{
$backProps = parent::getBackProps();
$backProps["stacktraces"] = "CErrorLog stacktrace_id";
$backProps["params_GET"] = "CErrorLog param_GET_id";
$backProps["params_POST"] = "CErrorLog param_POST_id";
$backProps["session_datas"] = "CErrorLog session_data_id";
return $backProps;
}
示例4: getBackProps
function getBackProps()
{
$backProps = parent::getBackProps();
$backProps["menus"] = "CMenu typerepas";
$backProps["plats"] = "CPlat typerepas";
$backProps["repas"] = "CRepas typerepas_id";
$backProps["valid_repas"] = "CValidationRepas typerepas_id";
return $backProps;
}
示例5: getBackProps
/**
* @see parent::getBackProps()
*/
function getBackProps()
{
$backProps = parent::getBackProps();
$backProps["display_fields"] = "CExClassField predicate_id";
$backProps["display_messages"] = "CExClassMessage predicate_id";
$backProps["display_subgroups"] = "CExClassFieldSubgroup predicate_id";
$backProps["display_pictures"] = "CExClassPicture predicate_id";
$backProps["properties"] = "CExClassFieldProperty predicate_id";
return $backProps;
}
示例6: getBackProps
/**
* @see parent::getBackProps()
*/
function getBackProps()
{
$backProps = parent::getBackProps();
$backProps["class_fields"] = "CExClassField ex_group_id";
$backProps["host_fields"] = "CExClassHostField ex_group_id";
$backProps["class_messages"] = "CExClassMessage ex_group_id";
$backProps["class_pictures"] = "CExClassPicture ex_group_id";
$backProps["subgroups"] = "CExClassFieldSubgroup parent_id";
$backProps["identifiants"] = "CIdSante400 object_id cascade";
return $backProps;
}
示例7: getBackProps
function getBackProps()
{
$backProps = parent::getBackProps();
$backProps["repas1"] = "CRepas plat1";
$backProps["repas2"] = "CRepas plat2";
$backProps["repas3"] = "CRepas plat3";
$backProps["repas4"] = "CRepas plat4";
$backProps["repas5"] = "CRepas plat5";
$backProps["repas_boisson"] = "CRepas boisson";
$backProps["repas_pain"] = "CRepas pain";
return $backProps;
}
示例8: getBackProps
/**
* @see parent::getBackProps()
*/
function getBackProps()
{
$backProps = parent::getBackProps();
$backProps['references'] = 'CProductReference product_id';
$backProps['stocks_group'] = 'CProductStockGroup product_id';
$backProps['stocks_service'] = 'CProductStockService product_id';
$backProps['lines_dmi'] = 'CPrescriptionLineDMI product_id';
$backProps['selections'] = 'CProductSelectionItem product_id';
$backProps['endowments'] = 'CProductEndowmentItem product_id';
$backProps['dmis'] = 'CDMI product_id';
return $backProps;
}