├── Plugin.php ├── README.md ├── controllers ├── Opportunities.php └── opportunities │ ├── _field_contacts.htm │ ├── _field_notes.htm │ ├── _field_offerings.htm │ ├── _list_toolbar.htm │ ├── config_form.yaml │ ├── config_list.yaml │ ├── config_relation.yaml │ ├── create.htm │ ├── index.htm │ ├── preview.htm │ └── update.htm ├── models ├── Contact.php ├── Note.php ├── Offering.php ├── Opportunity.php ├── OpportunityOfferingPivot.php ├── Status.php ├── contact │ ├── columns.yaml │ └── fields.yaml ├── note │ ├── columns.yaml │ └── fields.yaml ├── offering │ ├── columns.yaml │ └── fields.yaml ├── opportunity │ ├── columns.yaml │ └── fields.yaml ├── opportunityofferingpivot │ ├── columns.yaml │ └── fields.yaml └── status │ ├── columns.yaml │ └── fields.yaml └── updates ├── create_contacts_table.php ├── create_notes_table.php ├── create_offerings_table.php ├── create_opportunities_table.php ├── create_statuses_table.php ├── seed_all_tables.php └── version.yaml /Plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/Plugin.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/README.md -------------------------------------------------------------------------------- /controllers/Opportunities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/controllers/Opportunities.php -------------------------------------------------------------------------------- /controllers/opportunities/_field_contacts.htm: -------------------------------------------------------------------------------- 1 | relationRender('contacts') ?> -------------------------------------------------------------------------------- /controllers/opportunities/_field_notes.htm: -------------------------------------------------------------------------------- 1 | relationRender('notes') ?> -------------------------------------------------------------------------------- /controllers/opportunities/_field_offerings.htm: -------------------------------------------------------------------------------- 1 | relationRender('offerings') ?> -------------------------------------------------------------------------------- /controllers/opportunities/_list_toolbar.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/controllers/opportunities/_list_toolbar.htm -------------------------------------------------------------------------------- /controllers/opportunities/config_form.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/controllers/opportunities/config_form.yaml -------------------------------------------------------------------------------- /controllers/opportunities/config_list.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/controllers/opportunities/config_list.yaml -------------------------------------------------------------------------------- /controllers/opportunities/config_relation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/controllers/opportunities/config_relation.yaml -------------------------------------------------------------------------------- /controllers/opportunities/create.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/controllers/opportunities/create.htm -------------------------------------------------------------------------------- /controllers/opportunities/index.htm: -------------------------------------------------------------------------------- 1 | 2 | listRender() ?> 3 | -------------------------------------------------------------------------------- /controllers/opportunities/preview.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/controllers/opportunities/preview.htm -------------------------------------------------------------------------------- /controllers/opportunities/update.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/controllers/opportunities/update.htm -------------------------------------------------------------------------------- /models/Contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/Contact.php -------------------------------------------------------------------------------- /models/Note.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/Note.php -------------------------------------------------------------------------------- /models/Offering.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/Offering.php -------------------------------------------------------------------------------- /models/Opportunity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/Opportunity.php -------------------------------------------------------------------------------- /models/OpportunityOfferingPivot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/OpportunityOfferingPivot.php -------------------------------------------------------------------------------- /models/Status.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/Status.php -------------------------------------------------------------------------------- /models/contact/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/contact/columns.yaml -------------------------------------------------------------------------------- /models/contact/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/contact/fields.yaml -------------------------------------------------------------------------------- /models/note/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/note/columns.yaml -------------------------------------------------------------------------------- /models/note/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/note/fields.yaml -------------------------------------------------------------------------------- /models/offering/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/offering/columns.yaml -------------------------------------------------------------------------------- /models/offering/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/offering/fields.yaml -------------------------------------------------------------------------------- /models/opportunity/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/opportunity/columns.yaml -------------------------------------------------------------------------------- /models/opportunity/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/opportunity/fields.yaml -------------------------------------------------------------------------------- /models/opportunityofferingpivot/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/opportunityofferingpivot/columns.yaml -------------------------------------------------------------------------------- /models/opportunityofferingpivot/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/opportunityofferingpivot/fields.yaml -------------------------------------------------------------------------------- /models/status/columns.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/status/columns.yaml -------------------------------------------------------------------------------- /models/status/fields.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/models/status/fields.yaml -------------------------------------------------------------------------------- /updates/create_contacts_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/updates/create_contacts_table.php -------------------------------------------------------------------------------- /updates/create_notes_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/updates/create_notes_table.php -------------------------------------------------------------------------------- /updates/create_offerings_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/updates/create_offerings_table.php -------------------------------------------------------------------------------- /updates/create_opportunities_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/updates/create_opportunities_table.php -------------------------------------------------------------------------------- /updates/create_statuses_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/updates/create_statuses_table.php -------------------------------------------------------------------------------- /updates/seed_all_tables.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/updates/seed_all_tables.php -------------------------------------------------------------------------------- /updates/version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/octoberdemos/oc-crm-plugin/HEAD/updates/version.yaml --------------------------------------------------------------------------------