// get section info $section = Model_Section::find()->where('id', $section_id)->get_one(); // module of section is specified in database $module = $section->module; // get the item through the model, that lives in a module // desired result for example: // $item = Blog\Model_Item::find()->where('id', $item_id)->get_one(); $item = $module\Model_Item::find()->where('id', $item_id)->get_one();
It looks like you're new here. If you want to get involved, click one of these buttons!