Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed application_form and commiting debug_a_application #43

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions sites/all/modules/application_form/application_form.module

This file was deleted.

5 changes: 5 additions & 0 deletions sites/all/modules/custom/module-name/da_kewan.info
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
name = Debugacademy
description = Automatic updates for debugacademy.
core = 7.x


1 change: 1 addition & 0 deletions sites/all/modules/custom/module-name/da_kewan.install
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php
1 change: 1 addition & 0 deletions sites/all/modules/custom/module-name/da_kewan.module
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<?php
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
/**
* @file
* application_form.features.field_base.inc
* debug_a_application.features.field_base.inc
*/

/**
* Implements hook_field_default_field_bases().
*/
function application_form_field_default_field_bases() {
function debug_a_application_field_default_field_bases() {
$field_bases = array();

// Exported field_base: 'field_additional_time'
Expand Down Expand Up @@ -319,6 +319,9 @@ function application_form_field_default_field_bases() {
'deleted' => 0,
'entity_types' => array(),
'field_name' => 'field_status',
'field_permissions' => array(
'type' => 2,
),
'foreign keys' => array(),
'indexes' => array(
'value' => array(
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
/**
* @file
* application_form.features.field_instance.inc
* debug_a_application.features.field_instance.inc
*/

/**
* Implements hook_field_default_field_instances().
*/
function application_form_field_default_field_instances() {
function debug_a_application_field_default_field_instances() {
$field_instances = array();

// Exported field_instance: 'entityform-application-field_additional_time'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
/**
* @file
* application_form.features.inc
* debug_a_application.features.inc
*/

/**
* Implements hook_default_entityform_type().
*/
function application_form_default_entityform_type() {
function debug_a_application_default_entityform_type() {
$items = array();
$items['application'] = entity_import('entityform_type', '{
"type" : "application",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name = Application-form
description = application form for debugacademy
name = Debug_A_application
core = 7.x
package = Features
version = 7.x-1.0
project = application_form
version = 7.x-4.2
project = debug_a_application
dependencies[] = email
dependencies[] = entity
dependencies[] = entityform
dependencies[] = features
dependencies[] = field_permissions
dependencies[] = list
dependencies[] = options
dependencies[] = text
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?php
/**
* @file
* Code for the Debug_A_application feature.
*/

include_once 'debug_a_application.features.inc';
Loading