Skip to content

Commit

Permalink
#141 Rename function names in ochack_project to opencivic_project
Browse files Browse the repository at this point in the history
  • Loading branch information
Dan Feder committed May 21, 2014
1 parent 2815c5f commit 3c229f3
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
/**
* @file
* ochack_project.features.field.inc
* opencivic_project.features.field.inc
*/

/**
* Implements hook_field_default_fields().
*/
function ochack_project_field_default_fields() {
function opencivic_project_field_default_fields() {
$fields = array();

// Exported field: 'node-project-body'.
Expand Down
8 changes: 4 additions & 4 deletions modules/features/ochack_project/ochack_project.features.inc
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
/**
* @file
* ochack_project.features.inc
* opencivic_project.features.inc
*/

/**
* Implements hook_ctools_plugin_api().
*/
function ochack_project_ctools_plugin_api() {
function opencivic_project_ctools_plugin_api() {
list($module, $api) = func_get_args();
if ($module == "field_group" && $api == "field_group") {
return array("version" => "1");
Expand All @@ -21,7 +21,7 @@ function ochack_project_ctools_plugin_api() {
/**
* Implements hook_node_info().
*/
function ochack_project_node_info() {
function opencivic_project_node_info() {
$items = array(
'project' => array(
'name' => t('Project'),
Expand All @@ -38,7 +38,7 @@ function ochack_project_node_info() {
/**
* Implements hook_rdf_default_mappings().
*/
function ochack_project_rdf_default_mappings() {
function opencivic_project_rdf_default_mappings() {
$schemaorg = array();

// Exported RDF mapping: project
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
/**
* @file
* ochack_project.field_group.inc
* opencivic_project.field_group.inc
*/

/**
* Implements hook_field_group_info().
*/
function ochack_project_field_group_info() {
function opencivic_project_field_group_info() {
$export = array();

$field_group = new stdClass();
Expand Down
2 changes: 1 addition & 1 deletion modules/features/ochack_project/ochack_project.module
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
* Code for the Hackathon project feature.
*/

include_once 'ochack_project.features.inc';
include_once 'opencivic_project.features.inc';
4 changes: 2 additions & 2 deletions modules/features/ochack_project/ochack_project.strongarm.inc
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<?php
/**
* @file
* ochack_project.strongarm.inc
* opencivic_project.strongarm.inc
*/

/**
* Implements hook_strongarm().
*/
function ochack_project_strongarm() {
function opencivic_project_strongarm() {
$export = array();

$strongarm = new stdClass();
Expand Down

0 comments on commit 3c229f3

Please sign in to comment.