t('Zone Id'), 'environment_id' => t('Environment Id'), 'name_checksum' => t('Checkcommand Name Checksum'), 'properties_checksum' => t('Checkcommand Properties Checksum'), 'name' => t('Checkcommand Name'), 'name_ci' => t('Checkcommand Name (CI)'), 'command' => t('Checkcommand'), 'timeout' => t('Checkcommand Timeout') ]; } public function createBehaviors(Behaviors $behaviors) { $behaviors->add(new ReRoute([ 'hostgroup' => 'host.hostgroup', 'servicegroup' => 'service.servicegroup' ])); $behaviors->add(new Binary([ 'id', 'zone_id', 'environment_id', 'name_checksum', 'properties_checksum' ])); } public function createRelations(Relations $relations) { $relations->belongsTo('environment', Environment::class); $relations->belongsTo('zone', Zone::class); $relations->belongsToMany('customvar', Customvar::class) ->through(CheckcommandCustomvar::class); $relations->belongsToMany('customvar_flat', CustomvarFlat::class) ->through(CheckcommandCustomvar::class); $relations->belongsToMany('vars', Vars::class) ->through(CheckcommandCustomvar::class); $relations->hasMany('argument', CheckcommandArgument::class); $relations->hasMany('envvar', CheckcommandEnvvar::class); $relations->hasMany('host', Host::class); $relations->hasMany('service', Service::class); } }