query
stringlengths
9
43.3k
document
stringlengths
17
1.17M
metadata
dict
negatives
sequencelengths
0
30
negative_scores
sequencelengths
0
30
document_score
stringlengths
5
10
document_rank
stringclasses
2 values
Responds to a ckeditor_comment_type being updated. This hook is invoked after the ckeditor_comment_type has been updated in the database.
function hook_ckeditor_comment_type_update(CKEditorCommentType $ckeditor_comment_type) { db_update('mytable') ->fields(array('extra' => print_r($ckeditor_comment_type, TRUE))) ->condition('id', entity_id('ckeditor_comment_type', $ckeditor_comment_type)) ->execute(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function hook_ckeditor_comment_type_presave(CKEditorCommentType $ckeditor_comment_type) {\n $ckeditor_comment_type->name = 'foo';\n}", "public function setCommentType($type) {\n $this->_commentType = $type;\n }", "public function setCommentType($commentType) {\r\n\t\t$this->_comment['comment_type'] = $commentType;\r\n\t}", "public function testUpdateNotificationType()\n {\n }", "function hook_ckeditor_comment_type_delete(CKEditorCommentType $ckeditor_comment_type) {\n db_delete('mytable')\n ->condition('pid', entity_id('ckeditor_comment_type', $ckeditor_comment_type))\n ->execute();\n}", "public function onUpdate(int $type) {\n }", "public function setCommentType($arg) {\n $this->_setField(\"commentType\", $arg);\n }", "public function update(Request $request, CommentType $commentType)\n {\n //\n }", "public function edit(CommentType $commentType)\n {\n //\n }", "function hook_ckeditor_comment_presave(CKEditorComment $ckeditor_comment) {\n $ckeditor_comment->name = 'foo';\n}", "function hook_default_ckeditor_comment_type_alter(array &$defaults) {\n $defaults['main']->name = 'custom name';\n}", "function hook_ckeditor_comment_update(CKEditorComment $ckeditor_comment) {\n db_update('mytable')\n ->fields(array('extra' => print_r($ckeditor_comment, TRUE)))\n ->condition('id', entity_id('ckeditor_comment', $ckeditor_comment))\n ->execute();\n}", "function hook_ckeditor_comment_type_insert(CKEditorCommentType $ckeditor_comment_type) {\n db_insert('mytable')\n ->fields(array(\n 'id' => entity_id('ckeditor_comment_type', $ckeditor_comment_type),\n 'extra' => print_r($ckeditor_comment_type, TRUE),\n ))\n ->execute();\n}", "public function getCommentType() {\r\n\t\treturn isset($this->_comment['comment_type']) ? $this->_comment['comment_type'] : null;\r\n\t}", "public function onSaving()\n {\n $type = $this->getType();\n $block = $this->getFormEntry();\n\n $block->type = $type->getNamespace();\n }", "function wine_discussion_comment_override($hook, $type, $return, $params) {\n\tif (elgg_instanceof($params['entity'], 'object', 'wineforumtopic')) {\n\t\treturn false;\n\t}\n}", "public function post_comment()\n\t{\n\t\t$this->get_comment( true );\n\t}", "public function fireNewCommentEvent()\n {\n DomainEventManager::getInstance()->dispatchEvent(DomainEventManager::EVENT_NEWCOMMENT, [ 'urlComment' => $this ]);\n }", "function mzz_comment_inserted($comment_id, $comment_object) {\n if ($comment_object->comment_type == 'collabpress') {\n \n //the comment type was seen to be collabpress. It was already inserted into the database. Now we go back into the database and update that comment's approved status to 0 (pending)\n $mzzcommentarr = array();\n\t\t$mzzcommentarr['comment_ID'] = $comment_id;\n\t\t$mzzcommentarr['comment_approved'] = 0;\n\t\twp_update_comment( $mzzcommentarr );\n\n }\n}", "protected function afterSave()\n {\n // flush the cache\n $this->flushCache();\n\n $activity = Activity::CreateForContent($this);\n $activity->type = \"CommentCreated\";\n $activity->module = \"comment\";\n $activity->save();\n $activity->fire();\n\n // Handle mentioned users\n // Execute before NewCommentNotification to avoid double notification when mentioned.\n UserMentioning::parse($this, $this->message);\n\n if ($this->isNewRecord) {\n // Send Notifications\n NewCommentNotification::fire($this);\n }\n \n\n return parent::afterSave();\n }", "function pmg_comment_tut_edit_comment( $comment_id )\n{\n if( ! isset( $_POST['pmg_comment_update'] ) || ! wp_verify_nonce( $_POST['pmg_comment_update'], 'pmg_comment_update' ) ) return;\n if( isset( $_POST['_diagnosa'] ) )\n update_comment_meta( $comment_id, '_diagnosa', esc_attr( $_POST['_diagnosa'] ) );\n if( isset( $_POST['_terapi'] ) )\n update_comment_meta( $comment_id, '_terapi', esc_attr( $_POST['_terapi'] ) );\n}", "public function getCommentType() {\n return $this->_getField(\"commentType\", 0, 2);\n }", "public function post_mod_comment()\n {\n require AJAX_DIR . '/post_mod_comment.php';\n }", "public function afterSave() {\n if ($this->modx->modxtalks->mtCache === true) {\n if (!$this->modx->modxtalks->cacheComment($this->object)) {\n $this->modx->log(xPDO::LOG_LEVEL_ERROR, '[modxTalks web/comment/restore] Cache comment error, ID ' . $this->object->id);\n }\n if (!$this->modx->modxtalks->cacheConversation($this->theme)) {\n $this->modx->log(xPDO::LOG_LEVEL_ERROR, '[modxTalks web/comment/restore] Cache conversation error, ID ' . $this->theme->id);\n }\n }\n\n return parent::afterSave();\n }", "public function onSaving()\n {\n $entry = $this->getFormEntry();\n if (!$entry->type_id) {\n $entry->type_id = $this->getType()->getId();\n }\n }", "public function updateCommentableAction() {\n // Validate request methods\n $this->validateRequestMethod('POST');\n\n $db = Engine_Api::_()->getDbtable('actions', 'advancedactivity')->getAdapter();\n $db->beginTransaction();\n try {\n $this->_action->commentable = !$this->_action->commentable;\n $this->_action->save();\n $db->commit();\n\n $this->respondWithSuccess($this->_action->commentable);\n } catch (Exception $e) {\n $db->rollBack();\n $this->respondWithValidationError('internal_server_error', $e->getMessage());\n }\n }", "public function facebook_comment( $post_id = null, $type = null) {\n\n if( $this->template->is_ajax() ) {\n $post = $this->input->post();\n if(isset($post['message']) && $post_id != null) {\n try {\n $this->load->library('Socializer/socializer');\n $facebook = Socializer::factory('Facebook', $this->c_user->id);\n $comment = $facebook->comment( $post_id, $post['message'] );\n\n if ($comment) {\n if ($type == 'crm') {\n Crm_directory_activity::inst()->update_other_field($post_id, 'comments', 'inc');\n } else {\n Mention::inst()->update_other_field($post_id, 'comments', 'inc');\n }\n\n }\n $result['success'] = true;\n $result['html'] = $this->template->block(\n '_comment',\n 'social/activity/blocks/_one_facebook_comment',\n array('_comment' => $comment, 'socializer' => $facebook, 'radar' => $this->radar)\n );\n } catch(Exception $e) {\n $result = array();\n $result['success'] = false;\n $result['error'] = $e->getMessage();\n }\n if (!empty($result['error'])) {\n $result['error'] = $facebook->facebookErrorTransformer($result['error']);\n }\n \n echo json_encode($result);\n }\n }\n }", "function hook_default_ckeditor_comment_type() {\n $defaults['main'] = entity_create('ckeditor_comment_type', array(\n // …\n ));\n return $defaults;\n}", "public function updated(Comment $comment)\n {\n //\n }", "function _set_comment() {\n if (!$this->has_arg('t')) $this->_error('No data type specified');\n if (!$this->arg('id')) $this->_error('No data collection id specified');\n if (!$this->arg('value')) $this->_error('No comment specified');\n \n $types = array('data' => array('datacollection', 'datacollectionid'),\n 'edge' => array('energyscan', 'energyscanid'),\n 'mca' => array('xfefluorescencespectrum', 'xfefluorescencespectrumid'),\n );\n \n if (!array_key_exists($this->arg('t'), $types)) $this->_error('No such data type');\n $t = $types[$this->arg('t')];\n \n $com = $this->db->pq('SELECT comments from ispyb4a_db.'.$t[0].' WHERE '.$t[1].'=:1', array($this->arg('id')));\n \n if (!sizeof($com)) $this->_error('No such data collection');\n \n $this->db->pq(\"UPDATE ispyb4a_db.$t[0] set comments=:1 where $t[1]=:2\", array($this->arg('value'), $this->arg('id')));\n \n print $this->arg('value');\n }" ]
[ "0.72163045", "0.6829525", "0.62910414", "0.62410635", "0.62027746", "0.6157275", "0.6140541", "0.61315423", "0.6121424", "0.6115966", "0.6103541", "0.60950506", "0.6074992", "0.5770669", "0.57614845", "0.56872743", "0.56588954", "0.56082904", "0.5588747", "0.5587303", "0.5570452", "0.5568433", "0.55643415", "0.55541736", "0.5518024", "0.548482", "0.54679215", "0.5461313", "0.54155725", "0.5402247" ]
0.7551197
0
Responds to ckeditor_comment_type deletion. This hook is invoked after the ckeditor_comment_type has been removed from the database.
function hook_ckeditor_comment_type_delete(CKEditorCommentType $ckeditor_comment_type) { db_delete('mytable') ->condition('pid', entity_id('ckeditor_comment_type', $ckeditor_comment_type)) ->execute(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function hook_ckeditor_comment_delete(CKEditorComment $ckeditor_comment) {\n db_delete('mytable')\n ->condition('pid', entity_id('ckeditor_comment', $ckeditor_comment))\n ->execute();\n}", "public function destroy(CommentType $commentType)\n {\n //\n }", "public function onAfterDelete() {\n\n\t\tparent::onAfterDelete();\n\t\t$fusion = FusionTag::get()->byID($this->owner->FusionTagID);\n\t\t$types = unserialize($fusion->TagTypes);\n\t\tunset($types[$this->owner->ClassName]);\n\t\t$fusion->TagTypes = !empty($types) ? serialize($types) : null;\n\t\t$fusion->write();\n\t}", "protected function afterDelete()\n {\n parent::afterDelete();\n Comment::model()->deleteAll('photo_id=' . $this->id);\n Tag::model()->updateFrequency($this->tags, '');\n }", "function hook_ckeditor_comment_type_update(CKEditorCommentType $ckeditor_comment_type) {\n db_update('mytable')\n ->fields(array('extra' => print_r($ckeditor_comment_type, TRUE)))\n ->condition('id', entity_id('ckeditor_comment_type', $ckeditor_comment_type))\n ->execute();\n}", "protected function afterDelete()\n\t{\n\t\tparent::afterDelete();\n\t\t//Comment::model()->deleteAll('post_id='.$this->id);\n\t\tAetiquetas::model()->updateFrequency($this->etiquetas, '');\n\t}", "public function onAfterPublish()\n {\n $comments = FieldComment::get()->filter(array(\n 'CommentClassName' => $this->owner->ClassName,\n 'CommentDataObjectID' => $this->owner->ID\n ));\n\n if ($comments && $comments->Count()) {\n foreach ($comments as $comment) {\n DB::query('DELETE FROM \"silverstripe\\fieldComment\\FieldCommentReader\" WHERE \"FieldCommentID\" = ' . $comment->ID);\n $comment->delete();\n }\n }\n }", "protected function afterDelete()\n {\n }", "public function setCommentType($type) {\n $this->_commentType = $type;\n }", "public function on_delete() {}", "function hook_ckeditor_comment_type_presave(CKEditorCommentType $ckeditor_comment_type) {\n $ckeditor_comment_type->name = 'foo';\n}", "public function afterDelete()\n {\n }", "protected function afterDelete()\n\t{\n\t\tparent::afterDelete();\n\t}", "protected function beforeDelete()\n {\n $this->flushCache();\n Notification::remove('Comment', $this->id);\n return parent::beforeDelete();\n }", "protected function _afterDelete()\r\n\t{}", "function afterDelete() {\n parent::afterDelete();\n\n CaliperHooks::rubric_after_delete($this);\n\t}", "public function afterDelete(): void\n {\n }", "public function action_received_comment_delete()\n\t{\n\t\t// Auto render off\n\t\t$this->auto_render = FALSE;\n\n\t\t// Get ids, if When it is smaller than 2 then throw to 404\n\t\t$ids = explode('_', $this->request->param('key'));\n\t\tif (!(count($ids) == 2)) throw HTTP_Exception::factory(404);\n\n\t\t// idsをitem_idとreceived_comment_idに分ける\n\t\tlist($item_id, $received_comment_id) = $ids;\n\n\t\t// Get received_comment, if there is nothing then throw to 404\n\t\t$received_comment = Tbl::factory('received_comments')->get($received_comment_id);\n\t\tif (!$received_comment) throw HTTP_Exception::factory(404);\n\n\t\t// Get item, if there is nothing then throw to 404\n\t\t$this->item = Tbl::factory('items')->get($item_id);\n\t\tif (!$this->item) throw HTTP_Exception::factory(404);\n\n\t\t// Get division\n\t\t$division = Tbl::factory('divisions')\n\t\t\t->where('id', '=', $this->item->division_id)\n\t\t\t->read(1);\n\n\t\t// Database transaction start\n\t\tDatabase::instance()->begin();\n\n\t\t// Try\n\t\ttry\n\t\t{\n\t\t\t// Delete\n\t\t\t$received_comment->delete();\n\n\t\t\t// Database commit\n\t\t\tDatabase::instance()->commit();\n\n\t\t\t// Add success notice\n\t\t\tNotice::add(Notice::SUCCESS, Kohana::message('general', 'delete_success'));\n\n\t\t\t// redirect\n\t\t\t$this->redirect(URL::site(\"{$this->settings->backend_name}/items/{$division->segment}/received_comments/{$this->item->id}\", 'http'));\n\t\t}\n\t\tcatch (HTTP_Exception_302 $e)\n\t\t{\n\t\t\t$this->redirect($e->location());\n\t\t}\n\t\tcatch (Validation_Exception $e)\n\t\t{\n\t\t\t// Database rollback\n\t\t\tDatabase::instance()->rollback();\n\n\t\t\t// Add validation notice\n\t\t\tNotice::add(Notice::VALIDATION, Kohana::message('general', 'delete_failed'), NULL, $e->errors('validation'));\n\t\t}\n\t\tcatch (Exception $e)\n\t\t{\n\t\t\t// Database rollback\n\t\t\tDatabase::instance()->rollback();\n\n\t\t\t// Add error notice\n\t\t\tNotice::add(\n\t\t\t\tNotice::ERROR//, $e->getMessage()\n\t\t\t);\n\t\t}\n\n\t\t// Redirect to received_comments edit\n\t\t$this->redirect(URL::site(\"{$this->settings->backend_name}/items/{$division->segment}/received_comments/{$this->item->id}\", 'http').URL::query());\n\t}", "public function deleted(Comment $comment)\n {\n //\n }", "protected function _postDelete()\n\t{\n\t}", "public function delete_column_comment_reply_lookup()\n\t{\t\n\t\t$this->comment_model->delete_column_comment_reply();\n\t}", "public function forceDeleted (Comment $comment) {\n //\n }", "function delete() {\n\t\t$sql = \"DELETE FROM type_complain\n\t\t\t\tWHERE tp_id=?\";\n\t\t$this->ffm->query($sql, array($this->tp_id));\n\t}", "public function afterDelete() {\n\t\t$this->afterUpdateTree();\n\t\tparent::afterDelete();\n\t}", "public function deleteHook($eventName, $observerClassName, $type);", "function hook_call_center_type_delete(CallCenterType $call_center_type) {\n db_delete('mytable')\n ->condition('pid', entity_id('call_center_type', $call_center_type))\n ->execute();\n}", "public function delete_document_type() {\n\t\t\n\t\tif($this->input->post('type')=='delete_record') {\n\t\t\t/* Define return | here result is used to return user data and error for error message */\n\t\t\t$Return = array('result'=>'', 'error'=>'');\n\t\t\t$id = $this->uri->segment(3);\n\t\t\t$result = $this->Graphene_model->delete_document_type_record($id);\n\t\t\tif(isset($id)) {\n\t\t\t\t$Return['result'] = 'Document Type deleted.';\n\t\t\t} else {\n\t\t\t\t$Return['error'] = 'Bug. Something went wrong, please try again.';\n\t\t\t}\n\t\t\t$this->output($Return);\n\t\t}\n\t}", "function p3_comments_deactivation() {\n\t//Runs on plugin deactivation\n}", "public function delete()\n {\n //recuperation des informations pour la suppression d'un commentaire\n $data = $this->request->data;\n $id_commentaire = (int)$data['id_commentaire'] ?? null;\n if (empty($id_commentaire)) {\n $this->_return('Veillez spécifier l\\'identifiant du commentaire à supprimer', false);\n }\n\n try {\n $this->model->remove($id_commentaire);\n $this->_return('commentaire supprimé avec succès', true);\n //code...\n } \n catch (Exception $e)\n {\n $this->_exception($e);\n }\n }", "function deleteType()\n {\n global $objDatabase, $_ARRAYLANG;\n\n if (isset($_GET['typeId'])) {\n $typeId=intval($_GET['typeId']);\n $objResult = $objDatabase->Execute(\"SELECT id FROM \".DBPREFIX.\"module_news WHERE typeid=\".$typeId);\n\n if ($objResult !== false) {\n if (!$objResult->EOF) {\n $this->strErrMessage = $_ARRAYLANG['TXT_TYPE_NOT_DELETED_BECAUSE_IN_USE'];\n }\n else {\n if ($objDatabase->Execute(\n \"DELETE tblC, tblL\n FROM \".DBPREFIX.\"module_news_types AS tblC\n INNER JOIN \".DBPREFIX.\"module_news_types_locale AS tblL ON tblL.type_id=tblC.typeid\n WHERE tblC.typeid=\".$typeId\n ) !== false\n ) {\n $this->strOkMessage = $_ARRAYLANG['TXT_DATA_RECORD_DELETED_SUCCESSFUL'];\n } else {\n $this->strErrMessage = $_ARRAYLANG['TXT_DATABASE_QUERY_ERROR'];\n }\n }\n }\n }\n }" ]
[ "0.6969895", "0.6603109", "0.6256779", "0.6110172", "0.610247", "0.6032021", "0.5980014", "0.59649324", "0.59020764", "0.5887058", "0.5870998", "0.58637905", "0.5848498", "0.58196676", "0.58126295", "0.5738965", "0.57387465", "0.5738145", "0.5731103", "0.5652991", "0.5620516", "0.5598921", "0.5598693", "0.55961055", "0.55857867", "0.5569758", "0.5551881", "0.5549892", "0.55474895", "0.55326277" ]
0.8140331
0
Define default ckeditor_comment_type configurations.
function hook_default_ckeditor_comment_type() { $defaults['main'] = entity_create('ckeditor_comment_type', array( // … )); return $defaults; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function hook_default_ckeditor_comment_type_alter(array &$defaults) {\n $defaults['main']->name = 'custom name';\n}", "public function setCommentType($type) {\n $this->_commentType = $type;\n }", "public function setCommentType($commentType) {\r\n\t\t$this->_comment['comment_type'] = $commentType;\r\n\t}", "function hook_ckeditor_comment_type_presave(CKEditorCommentType $ckeditor_comment_type) {\n $ckeditor_comment_type->name = 'foo';\n}", "public function setCommentType($arg) {\n $this->_setField(\"commentType\", $arg);\n }", "function THEME_PREFIX_admin_init()\n{\n // Redirect any user trying to access comments page\n global $pagenow;\n\n if ($pagenow === 'edit-comments.php') {\n wp_redirect(admin_url());\n exit;\n }\n\n // Remove comments metabox from dashboard\n remove_meta_box( 'dashboard_recent_comments', 'dashboard', 'normal' );\n\n // Disable support for comments and trackbacks in post types\n foreach (get_post_types() as $post_type) {\n if (post_type_supports( $post_type, 'comments' )) {\n remove_post_type_support( $post_type, 'comments' );\n remove_post_type_support( $post_type, 'trackbacks' );\n }\n }\n\n // Add editor stylesheet\n add_editor_style( '/build/css/editor.css' );\n}", "function customize_comments_form_defaults( array $parameters ) {\n\t$parameters['title_reply'] = 'laisser un commentaire';\n\treturn $parameters;\n}", "function rhm_override_comment_default($post_content, $post){\n\tif($post->post_type)\n\tswitch($post->post_type){\n\t\tcase 'page':\n\t\t\t$post->comment_status = 'closed';\n\t\tbreak;\n\t}\n\treturn $post_content;\n}", "public function getCommentType() {\r\n\t\treturn isset($this->_comment['comment_type']) ? $this->_comment['comment_type'] : null;\r\n\t}", "function idaho_webmaster_comment_defaults( $defaults ) {\n\t\t$defaults['comment_field'] = '<div class=\"form-group comment-form-comment\">\n\t\t\t<label for=\"comment\">' . esc_html__( 'Comment', 'idaho-webmaster' ) . '</label>\n\t\t\t\t<textarea class=\"form-control\" id=\"comment\" name=\"comment\" cols=\"45\" rows=\"8\" aria-required=\"true\"></textarea>\n\t </div>';\n\n\t\t$defaults['class_submit'] = 'btn btn-primary'; // Since WP 4.1.\n\n\t\treturn $defaults;\n\t}", "public function getCommentType() {\n return $this->_getField(\"commentType\", 0, 2);\n }", "public function __construct()\n {\n parent::__construct();\n \n $this->model = config('comment.models.comment');\n }", "private function get_settings($comment_type) {\n\n $settings = array();\n $options = get_option('cct_options');\n\n for ($n = 1; $n < $options['comment_type_count'] + 1; $n++) {\n\n $singular_name = $options['cct_name_singular_' . $n];\n $plural_name = $options['cct_name_plural_' . $n];\n $moderation = $options['cct_moderation_panel_' . $n];\n $menu_position = $options['cct_menu_position_' . $n];\n $icon_url = $options['cct_icon_url_' . $n];\n $slug = str_replace(' ', '_', strtolower($plural_name));\n $post_types = array();\n\n $possible_post_types = get_post_types(array('public' => true), 'objects');\n\n foreach ($possible_post_types as $possible_post_type) {\n $post_type_options_slug = 'cct_post_type_' . $slug . '_' . $possible_post_type->name;\n if (isset($options[$post_type_options_slug]))\n ;\n $post_types[] = $options[$possible_post_type];\n }\n\n $post_types = $options['cct_name_plural_' . $n];\n\n if (!empty($singular_name) && !empty($plural_name) && $comment_type == $slug) {\n\n\n $this->labels = array(\n 'name' => $plural_name,\n 'singular_name' => $singular_name,\n 'add_new' => \"Add New\",\n 'add_new_item' => \"Add New {$singular_name}\",\n 'edit_item' => \"Edit {$singular_name}\",\n 'new_item' => \"New {$singular_name}\",\n 'all_items' => \"All {$plural_name}\",\n 'view_item' => \"View {$plural_name}\",\n 'search_items' => \"Search {$plural_name}\",\n 'not_found' => \"No {$plural_name} found\",\n 'not_found_in_trash' => \"No {$plural_name} found in Trash\",\n 'parent_item_colon' => \"{$singular_name}:\",\n 'menu_name' => $singular_name\n );\n\n $this->moderation_queue = $moderation;\n $this->parent_types = $post_types;\n $this->icon_url = $icon_url;\n $this->menu_position = $menu_position;\n\n }\n }\n }", "function hook_ckeditor_comment_type_insert(CKEditorCommentType $ckeditor_comment_type) {\n db_insert('mytable')\n ->fields(array(\n 'id' => entity_id('ckeditor_comment_type', $ckeditor_comment_type),\n 'extra' => print_r($ckeditor_comment_type, TRUE),\n ))\n ->execute();\n}", "function hook_ckeditor_comment_type_update(CKEditorCommentType $ckeditor_comment_type) {\n db_update('mytable')\n ->fields(array('extra' => print_r($ckeditor_comment_type, TRUE)))\n ->condition('id', entity_id('ckeditor_comment_type', $ckeditor_comment_type))\n ->execute();\n}", "protected function set_type() {\n\t\t$this->type = 'code_editor';\n\t}", "function clus_disable_comments_post_types_support() {\n $post_types = get_post_types();\n foreach ($post_types as $post_type) {\n if(post_type_supports($post_type, 'comments')) {\n remove_post_type_support($post_type, 'comments');\n remove_post_type_support($post_type, 'trackbacks');\n }\n }\n}", "public function scanCommentTypes();", "public function hsc_plugin_register_settings() {\n add_option( 'hsc_disable_comments', 'Choose post type from the list');\n register_setting( $this->get_slug(), 'hsc_disable_comments' );\n }", "function cmsms_post_comments($template_type = 'page') {\r\n\tif (comments_open()) {\r\n\t\tif ($template_type == 'page') {\r\n\t\t\techo '<a class=\"cmsms_post_comments cmsms_theme_icon_comment\" href=\"' . esc_url(get_comments_link()) . '\" title=\"' . esc_attr__('Comment on', 'yoga-fit') . ' ' . esc_attr(get_the_title()) . '\">' . esc_html(get_comments_number()) . '</a>';\r\n\t\t} elseif ($template_type == 'post') {\r\n\t\t\t$cmsms_option = cmsms_get_global_options();\r\n\t\t\t\r\n\t\t\tif ($cmsms_option[CMSMS_SHORTNAME . '_blog_post_comment']) {\r\n\t\t\t\techo '<a class=\"cmsms_post_comments cmsms_theme_icon_comment\" href=\"' . esc_url(get_comments_link()) . '\" title=\"' . esc_attr__('Comment on', 'yoga-fit') . ' ' . esc_attr(get_the_title()) . '\">' . esc_html(get_comments_number()) . '</a>';\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n}", "function df_disable_comments_post_types_support() {\n\t$post_types = get_post_types();\n\tforeach ($post_types as $post_type) {\n\t\tif(post_type_supports($post_type, 'comments')) {\n\t\t\tremove_post_type_support($post_type, 'comments');\n\t\t\tremove_post_type_support($post_type, 'trackbacks');\n\t\t}\n\t}\n}", "function df_disable_comments_post_types_support() {\n\t$post_types = get_post_types();\n\tforeach ($post_types as $post_type) {\n\t\tif(post_type_supports($post_type, 'comments')) {\n\t\t\tremove_post_type_support($post_type, 'comments');\n\t\t\tremove_post_type_support($post_type, 'trackbacks');\n\t\t}\n\t}\n}", "function df_disable_comments_post_types_support() {\n\t$post_types = get_post_types();\n\tforeach ($post_types as $post_type) {\n\t\tif(post_type_supports($post_type, 'comments')) {\n\t\t\tremove_post_type_support($post_type, 'comments');\n\t\t\tremove_post_type_support($post_type, 'trackbacks');\n\t\t}\n\t}\n}", "function frame_init_comments_trackbacks_support()\n{\n $disabled_post_types = frame_config('application.comments_trackbacks_support');\n\n if (!empty($disabled_post_types))\n {\n $post_types = get_post_types();\n\n foreach ($post_types as $post_type)\n {\n if ( (is_array($disabled_post_types) && in_array($post_type, $disabled_post_types) && post_type_supports($post_type, 'comments')) || $disabled_post_types === true )\n {\n remove_post_type_support($post_type, 'comments');\n remove_post_type_support($post_type, 'trackbacks');\n }\n }\n\n if (is_admin_bar_showing() && $disabled_post_types === true)\n {\n // Remove comments links from admin bar\n remove_action('admin_bar_menu', 'wp_admin_bar_comments_menu', 50); // WP<3.3\n remove_action('admin_bar_menu', 'wp_admin_bar_comments_menu', 60); // WP 3.3\n if (is_multisite()) add_action('admin_bar_menu', 'frame_init_remove_network_comment_links', 500);\n }\n }\n}", "public function enable_comments(){\n\t\t$this->bComment_enable=true;\n\t}", "function df_disable_comments_post_types_support() {\n\t $post_types = get_post_types();\n\t foreach ($post_types as $post_type) {\n\t if(post_type_supports($post_type, 'comments')) {\n\t remove_post_type_support($post_type, 'comments');\n\t remove_post_type_support($post_type, 'trackbacks');\n\t }\n\t }\n\t}", "function bailey_comment_form_defaults( $defaults ) {\n\t$commenter = wp_get_current_commenter();\n\t$req = get_option( 'require_name_email' );\n\t$aria_req = ( $req ? \" aria-required='true'\" : '' );\n\t$html5 = current_theme_supports( 'html5', 'comment-form' );\n\n\t$fields = array(\n\t\t'author' => '<p class=\"comment-form-author\">' . '<label for=\"author\">' . __( 'Name', 'bailey' ) . '</label> ' .\n\t\t\t'<input placeholder=\"' . __( 'Name', 'bailey' ) . '\" id=\"author\" name=\"author\" type=\"text\" value=\"' . esc_attr( $commenter['comment_author'] ) . '\" size=\"30\"' . $aria_req . ' /></p>',\n\t\t'email' => '<p class=\"comment-form-email\"><label for=\"email\">' . __( 'Email address', 'bailey' ) . '</label> ' .\n\t\t\t'<input placeholder=\"' . __( 'Email address', 'bailey' ) . '\" id=\"email\" name=\"email\" ' . ( $html5 ? 'type=\"email\"' : 'type=\"text\"' ) . ' value=\"' . esc_attr( $commenter['comment_author_email'] ) . '\" size=\"30\"' . $aria_req . ' /></p>',\n\t\t'url' => '',\n\t);\n\n\t$defaults['fields'] = $fields;\n\t$defaults['comment_notes_before'] = '';\n\t$defaults['comment_field'] = '<p class=\"comment-form-comment\"><label for=\"comment\">' . _x( 'Message...', 'noun', 'bailey' ) . '</label> <textarea placeholder=\"' . __( 'Message...', 'bailey' ) . '\"id=\"comment\" name=\"comment\" cols=\"45\" rows=\"8\" aria-required=\"true\"></textarea></p>';\n\t$defaults['comment_notes_after'] = '<p class=\"form-allowed-tags\">' . __( 'Basic <abbr title=\"HyperText Markup Language\">HTML</abbr> is allowed.', 'bailey' ) . '</p>';\n\t$defaults['label_submit'] = __( 'Comment', 'bailey' );\n\n\treturn $defaults;\n}", "public function init()\t{\n\t\t$this->be_common = new toctoc_comments_be_common;\n\t\t$this->be_common->setIconsFileMeta($this);\n\n\t\tparent::init();\n\n\t}", "public function init()\t{\n\t\t$this->be_common = new toctoc_comments_be_common;\n\t\t$this->be_common->setIconsFileMeta($this);\n\t\tparent::init();\n\t}", "function se_comment($type, $identifier, $identifying_value) {\n\n\t $this->comment_type = $type;\n\t $this->comment_identifier = $identifier;\n\t $this->comment_identifying_value = $identifying_value;\n\n\t}" ]
[ "0.7308556", "0.68186414", "0.64431125", "0.6254856", "0.6133481", "0.6080715", "0.6033561", "0.601623", "0.5974158", "0.5961406", "0.5947127", "0.5899344", "0.5893061", "0.586719", "0.5848501", "0.58106077", "0.5769697", "0.57027847", "0.56672066", "0.56397307", "0.55535966", "0.55535966", "0.55535966", "0.55397177", "0.5534164", "0.5529238", "0.5514772", "0.55138445", "0.55104995", "0.5501932" ]
0.6896387
1
Alter default ckeditor_comment_type configurations.
function hook_default_ckeditor_comment_type_alter(array &$defaults) { $defaults['main']->name = 'custom name'; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setCommentType($type) {\n $this->_commentType = $type;\n }", "function hook_ckeditor_comment_type_presave(CKEditorCommentType $ckeditor_comment_type) {\n $ckeditor_comment_type->name = 'foo';\n}", "public function setCommentType($commentType) {\r\n\t\t$this->_comment['comment_type'] = $commentType;\r\n\t}", "function hook_default_ckeditor_comment_type() {\n $defaults['main'] = entity_create('ckeditor_comment_type', array(\n // …\n ));\n return $defaults;\n}", "function hook_ckeditor_comment_type_update(CKEditorCommentType $ckeditor_comment_type) {\n db_update('mytable')\n ->fields(array('extra' => print_r($ckeditor_comment_type, TRUE)))\n ->condition('id', entity_id('ckeditor_comment_type', $ckeditor_comment_type))\n ->execute();\n}", "function THEME_PREFIX_admin_init()\n{\n // Redirect any user trying to access comments page\n global $pagenow;\n\n if ($pagenow === 'edit-comments.php') {\n wp_redirect(admin_url());\n exit;\n }\n\n // Remove comments metabox from dashboard\n remove_meta_box( 'dashboard_recent_comments', 'dashboard', 'normal' );\n\n // Disable support for comments and trackbacks in post types\n foreach (get_post_types() as $post_type) {\n if (post_type_supports( $post_type, 'comments' )) {\n remove_post_type_support( $post_type, 'comments' );\n remove_post_type_support( $post_type, 'trackbacks' );\n }\n }\n\n // Add editor stylesheet\n add_editor_style( '/build/css/editor.css' );\n}", "public function setCommentType($arg) {\n $this->_setField(\"commentType\", $arg);\n }", "function clus_disable_comments_post_types_support() {\n $post_types = get_post_types();\n foreach ($post_types as $post_type) {\n if(post_type_supports($post_type, 'comments')) {\n remove_post_type_support($post_type, 'comments');\n remove_post_type_support($post_type, 'trackbacks');\n }\n }\n}", "protected function set_type() {\n\t\t$this->type = 'code_editor';\n\t}", "function hook_ckeditor_comment_type_insert(CKEditorCommentType $ckeditor_comment_type) {\n db_insert('mytable')\n ->fields(array(\n 'id' => entity_id('ckeditor_comment_type', $ckeditor_comment_type),\n 'extra' => print_r($ckeditor_comment_type, TRUE),\n ))\n ->execute();\n}", "function rhm_override_comment_default($post_content, $post){\n\tif($post->post_type)\n\tswitch($post->post_type){\n\t\tcase 'page':\n\t\t\t$post->comment_status = 'closed';\n\t\tbreak;\n\t}\n\treturn $post_content;\n}", "public function hsc_plugin_register_settings() {\n add_option( 'hsc_disable_comments', 'Choose post type from the list');\n register_setting( $this->get_slug(), 'hsc_disable_comments' );\n }", "function frame_init_comments_trackbacks_support()\n{\n $disabled_post_types = frame_config('application.comments_trackbacks_support');\n\n if (!empty($disabled_post_types))\n {\n $post_types = get_post_types();\n\n foreach ($post_types as $post_type)\n {\n if ( (is_array($disabled_post_types) && in_array($post_type, $disabled_post_types) && post_type_supports($post_type, 'comments')) || $disabled_post_types === true )\n {\n remove_post_type_support($post_type, 'comments');\n remove_post_type_support($post_type, 'trackbacks');\n }\n }\n\n if (is_admin_bar_showing() && $disabled_post_types === true)\n {\n // Remove comments links from admin bar\n remove_action('admin_bar_menu', 'wp_admin_bar_comments_menu', 50); // WP<3.3\n remove_action('admin_bar_menu', 'wp_admin_bar_comments_menu', 60); // WP 3.3\n if (is_multisite()) add_action('admin_bar_menu', 'frame_init_remove_network_comment_links', 500);\n }\n }\n}", "function df_disable_comments_post_types_support() {\n\t$post_types = get_post_types();\n\tforeach ($post_types as $post_type) {\n\t\tif(post_type_supports($post_type, 'comments')) {\n\t\t\tremove_post_type_support($post_type, 'comments');\n\t\t\tremove_post_type_support($post_type, 'trackbacks');\n\t\t}\n\t}\n}", "function df_disable_comments_post_types_support() {\n\t$post_types = get_post_types();\n\tforeach ($post_types as $post_type) {\n\t\tif(post_type_supports($post_type, 'comments')) {\n\t\t\tremove_post_type_support($post_type, 'comments');\n\t\t\tremove_post_type_support($post_type, 'trackbacks');\n\t\t}\n\t}\n}", "function df_disable_comments_post_types_support() {\n\t$post_types = get_post_types();\n\tforeach ($post_types as $post_type) {\n\t\tif(post_type_supports($post_type, 'comments')) {\n\t\t\tremove_post_type_support($post_type, 'comments');\n\t\t\tremove_post_type_support($post_type, 'trackbacks');\n\t\t}\n\t}\n}", "function hook_ckeditor_comment_type_delete(CKEditorCommentType $ckeditor_comment_type) {\n db_delete('mytable')\n ->condition('pid', entity_id('ckeditor_comment_type', $ckeditor_comment_type))\n ->execute();\n}", "function df_disable_comments_post_types_support() {\n\t $post_types = get_post_types();\n\t foreach ($post_types as $post_type) {\n\t if(post_type_supports($post_type, 'comments')) {\n\t remove_post_type_support($post_type, 'comments');\n\t remove_post_type_support($post_type, 'trackbacks');\n\t }\n\t }\n\t}", "public function enable_comments(){\n\t\t$this->bComment_enable=true;\n\t}", "function qod_remove_comment_support() {\n remove_post_type_support( 'post', 'comments' );\n remove_post_type_support( 'page', 'comments' );\n}", "function hook_ckeditor_comment_presave(CKEditorComment $ckeditor_comment) {\n $ckeditor_comment->name = 'foo';\n}", "function customize_comments_form_defaults( array $parameters ) {\n\t$parameters['title_reply'] = 'laisser un commentaire';\n\treturn $parameters;\n}", "public function remove_comment_support() {\n remove_post_type_support(\"post\", \"comments\");\n remove_post_type_support(\"page\", \"comments\");\n }", "public function lctrainee_remove_comment_support()\n {\n remove_post_type_support( 'post', 'comments' );\n remove_post_type_support( 'page', 'comments' );\n }", "public function setComment(string $comment): void;", "function disable_comments_setup(){\n add_action( 'admin_menu', function() {\n remove_menu_page( 'edit-comments.php' );\n });\n\n // Removes comments from post and pages\n add_action('init', function() {\n remove_post_type_support( 'post', 'comments' );\n remove_post_type_support( 'page', 'comments' );\n }, 100);\n\n\n // Removes comments from admin bar\n add_action( 'wp_before_admin_bar_render', function(){\n global $wp_admin_bar;\n $wp_admin_bar->remove_menu('comments');\n });\n}", "function remove_comment_support() {\n\tremove_post_type_support('post', 'comments');\n\tremove_post_type_support('page', 'comments');\n}", "private function disable_comments()\n {\n // by default, comments are closed.\n // if (is_admin()) update_option(\"default_comment_status\", \"closed\");\n\n // Closes plugins\n add_filter(\"comments_open\", \"__return_false\", 20, 2);\n add_filter(\"pings_open\", \"__return_false\", 20, 2);\n\n // Disables admin support for post types and menus\n add_action(\"admin_init\", function () {\n $post_types = get_post_types();\n\n foreach ($post_types as $post_type) {\n if (post_type_supports($post_type, \"comments\")) {\n remove_post_type_support($post_type, \"comments\");\n remove_post_type_support($post_type, \"trackbacks\");\n }\n }\n\n });\n\n // Removes menu in left dashboard meun\n add_action(\"admin_menu\", function () {\n remove_menu_page(\"edit-comments.php\");\n });\n\n // Removes comment menu from admin bar\n add_action(\"wp_before_admin_bar_render\", function () {\n global $wp_admin_bar;\n $wp_admin_bar->remove_menu(\"comments\");\n });\n }", "public function getCommentType() {\n return $this->_getField(\"commentType\", 0, 2);\n }", "function _set_comment() {\n if (!$this->has_arg('t')) $this->_error('No data type specified');\n if (!$this->arg('id')) $this->_error('No data collection id specified');\n if (!$this->arg('value')) $this->_error('No comment specified');\n \n $types = array('data' => array('datacollection', 'datacollectionid'),\n 'edge' => array('energyscan', 'energyscanid'),\n 'mca' => array('xfefluorescencespectrum', 'xfefluorescencespectrumid'),\n );\n \n if (!array_key_exists($this->arg('t'), $types)) $this->_error('No such data type');\n $t = $types[$this->arg('t')];\n \n $com = $this->db->pq('SELECT comments from ispyb4a_db.'.$t[0].' WHERE '.$t[1].'=:1', array($this->arg('id')));\n \n if (!sizeof($com)) $this->_error('No such data collection');\n \n $this->db->pq(\"UPDATE ispyb4a_db.$t[0] set comments=:1 where $t[1]=:2\", array($this->arg('value'), $this->arg('id')));\n \n print $this->arg('value');\n }" ]
[ "0.71724033", "0.6921366", "0.68298215", "0.66834265", "0.6663579", "0.64816916", "0.63958806", "0.61889064", "0.61856186", "0.6139579", "0.61345035", "0.5998074", "0.5985998", "0.59440833", "0.59440833", "0.59440833", "0.59358037", "0.5923436", "0.5901294", "0.5868835", "0.5865127", "0.5859522", "0.5849732", "0.5805196", "0.5783995", "0.5781103", "0.5780787", "0.574149", "0.5736407", "0.5736395" ]
0.7612768
0
Removes this project from the collection. User references to this project are also removed
public function remove() { ProjectModelMongoMapper::instance()->drop($this->databaseName()); ProjectModelMongoMapper::instance()->remove($this->id->asString()); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function del($user_id,$project_id);", "public function removeProject()\n {\n $this->filesystem->remove(array(\n $this->getWebDir().'/'.$this->getIndexFile(),\n $this->getWebDir().'/class.php',\n $this->getWebDir().'/phpinfo.php',\n $this->getWebDir().'/authors.txt',\n $this->getWebDir().'/uploads/picture.png',\n $this->getRootDir(),\n $this->getCacheDir(),\n $this->getLogDir(),\n $this->getWebDir(),\n ));\n }", "public function delete(){\n \n /**\n * Project Files Delete\n */\n if(is_dir(OctoSettings::get('projects_path').'/'.$this->project->directory)){\n $commands = [\n 'cd '.OctoSettings::get('projects_path'),\n 'rm -rf '.$this->project->directory,\n ];\n\n SSH::run($commands);\n }else Flash::info(\"Directory does not exists\");\n \n /**\n * Database Delete\n */\n $query = DB::connection('engine');\n\n if(!$query->statement(\"DROP DATABASE IF EXISTS \".$this->project->database))\n Flash::info(\"The database could not be removed\");\n\n if($query->table('user')->where('user', $this->project->db_username)->get()){\n if(!$query->statement(\"DROP USER '\".$this->project->db_username.\"'@'\".$this->project->db_host.\"'\"))\n Flash::info(\"The User of database could not be removed\");\n }\n\n if($this->Project){\n $project = Project::find($this->Project->id);\n $project->delete();\n\n DB::disconnect('engine');\n return true;\n }else Flash::error(\"The Project could not be removed\");\n }", "public function remove()\n {\n $user = $this->auth->user();\n\n foreach ($user->villages as $village) {\n $village->buildings()->detach();\n $village->timings()->delete();\n\n $village->delete();\n }\n\n $user->delete();\n $this->auth->logout();\n }", "public function purge()\n {\n $this->owner()->where('current_workspace_id', $this->id)\n ->update(['current_workspace_id' => null]);\n\n $this->users()->where('current_workspace_id', $this->id)\n ->update(['current_workspace_id' => null]);\n\n $this->users()->detach();\n\n $this->delete();\n }", "public function destroy($user_id, $project_id)\n {\n Project_user::where([\n ['project_id', '=', $project_id],\n ['user_id', '=', $user_id]\n ])->firstOrFail()->delete();\n return Project_user::all();\n }", "public function removeFromProject(Project $project): static\n {\n return $this->_removeWithPost(\"{$this}/removeProject\", ['project' => $project->getGid()], 'memberships',\n fn(Membership $membership) => $membership->getProject()->getGid() !== $project->getGid()\n );\n }", "public function destroy(Project $project) {\n //\n }", "public function destroy(Project $project)\n {\n $project->delete();\n }", "public function removeUserFromProject($id = null, $user_id=null) {\n $sqlQuery = \"SELECT user_id FROM projects WHERE id = '\".$id.\"'\";\n $res = $this->Project->query($sqlQuery);\n if ($res[0]['projects']['user_id'] == $user_id)exit();\n \n $sqlQuery = \"DELETE FROM projects_users WHERE project_id = '\".$id.\"' AND user_id='\".$user_id.\"'\";\n //echo($sqlQuery);\n echo(json_encode($this->Project->query($sqlQuery)));\n exit();\n }", "function remove() {\n\t\t$this->_remove();\n\t\t$userGroupsCache = &UserGroup::getUserGroupsCache();\n\t\t$userGroupsCache = array_remove($userGroupsCache, $this->id);\n\t\tUser::buildUsersCache();\n\t}", "public function destroy(Projects $projects)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n //\n }", "public function destroy(Project $project)\n {\n return $project->delete();\n }", "public function unassignUser($userId)\n {\n return $this->projectUsers()->where('user_id', '=', $userId)->delete();\n }", "public function delete()\n\t{\n\t\t// Remove all references to this Portfolio by Assignments\n\t\tforeach ($assignments = Model::factory('Assignment')\n\t\t\t->where('portfolio_id', $this->id())\n\t\t\t->find_many() as $assign)\n\t\t{\n\t\t\t$assign->portfolio_id = NULL;\n\t\t\t$assign->save();\n\t\t}\n\n\t\t// Remove all references to this Portfolio by Projects/sub-Portfolios/super-Portfolios\n\t\tforeach ($projects = Model::factory('PortfolioProjectMap')\n\t\t\t->where('port_id', $this->id())\n\t\t\t->find_many() as $proj)\n\t\t{\n\t\t\t$proj->delete();\n\t\t}\n\t\tforeach ($superPorts = Model::factory('PortfolioProjectMap')\n\t\t\t->where('child_id', $this->id())\n\t\t\t->find_many() as $port)\n\t\t{\n\t\t\t$port->delete();\n\t\t}\n\t\t\n\t\t// Remove all Groups' permissions on this Portfolio\n\t\t//\t(unfortunately, we cannot clean up Groups specifically made for this Portfolio easily,\n\t\t//\tthus they will remain and clutter the database.)\n\t\tforeach ($groups = $this->groupsWithPermission() as $group=>$permissions)\n\t\t{\n\t\t\tforeach ($permissions as $perm)\n\t\t\t{\n\t\t\t\tModel::factory('PortfolioAccessMap')\n\t\t\t\t\t->where('port_id', $this->id())\n\t\t\t\t\t->where('group_id', $group)\n\t\t\t\t\t->where('access_type', $perm)\n\t\t\t\t\t->find_one()\n\t\t\t\t\t->delete();\n\t\t\t}\n\t\t}\n\n\t\treturn parent::delete();\n\t}", "public function removeProjectMember(User $user, Project $project)\n {\n return $user->ownsProject($project);\n }" ]
[ "0.64766973", "0.63347155", "0.6236819", "0.6235766", "0.607265", "0.60680085", "0.6050541", "0.60384345", "0.6020924", "0.6003438", "0.5996341", "0.5964075", "0.59382963", "0.59382963", "0.59382963", "0.59382963", "0.59382963", "0.59382963", "0.59382963", "0.59382963", "0.59382963", "0.59382963", "0.59382963", "0.59382963", "0.59382963", "0.59382963", "0.5911131", "0.58336294", "0.5791306", "0.5777152" ]
0.71689945
0
Returns true if the given $userId has the $right in this project.
public function hasRight($userId, $right) { $role = $this->users->data[$userId]->role; $result = Roles::hasRight(Realm::PROJECT, $role, $right); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function isOwnedBy($ItemId, $userId) { // Es para usar con el isAuthorized del tutorial del blog\n \treturn $this->exists(['id' => $ItemId, 'user_id' => $userId]);\n }", "public function isOwner($itemId, $userId) {\n \n $db = JFactory::getDbo();\n $query = $db->getQuery(true);\n \n $query\n ->select(\"COUNT(*)\")\n ->from($db->quoteName(\"#__crowdf_projects\") . \" AS a\")\n ->where(\"a.id = \" . (int)$itemId)\n ->where(\"a.user_id = \" . (int)$userId);\n \n $db->setQuery($query, 0, 1);\n $result = $db->loadResult();\n \n return (bool)$result;\n \n }", "public function hasRight($right_token)\n {\n $hasright = false;\n foreach ($this->rights as $right)\n {\n if ($right->getToken() == $right_token)\n {\n $hasright = true;\n }\n }\n return $hasright || $right_token == \"user\";\n }", "public function isUserAllowed($user_id, $right, $scope = null) {\r\n\t\tif ($scope) {\r\n\t\t\tthrow new MoufpressException(\"The 'scope' feature is not supported in Moufpress implementation of the right service.\");\r\n\t\t}\r\n\t\treturn user_can($user_id, $right);\r\n\t}", "function hasRight($right=0) {\r\n\t\t\tif ( $right==0 || empty($right) || in_array($right,$this->rights) ) {\r\n\t\t\t\treturn TRUE;\r\n\t\t\t}\r\n\t\t\treturn FALSE;\r\n\t\t}", "function isReviewer($userId) {\n if($this->reviewerCache === null) {\n $dao =& $this->_getDao();\n $dar = $dao->getReviewerList($this->table->getId());\n $dar->rewind();\n while($dar->valid()) {\n $row = $dar->current();\n $this->reviewerCache[$row['reviewer_id']] = true;\n $dar->next();\n }\n }\n if(isset($this->reviewerCache[$userId])) {\n return true;\n }\n return false;\n }", "public function checkAccess($userId)\n\t{\n\t\treturn in_array($userId, $this->getUsers());\n\t}", "public function check(int $userId): bool\n {\n $user = $this->userRepository->find($userId);\n \n if(true === in_array(\"ROLE_ADMIN\", $user->getRoles())) {\n return true;\n }\n else {\n return false;\n }\n }", "public function exists(Uuid $gameId, Uuid $userId): bool;", "public function hasRight() : bool {\n if($this->getRight() !== null) {\n return true;\n } else {\n return false;\n }\n }", "public function isOwnedBy($dataId, $userId)\n {\n \n return $dataId == $userId;\n }", "public function checkAccess(int $userId): bool\n\t{\n\t\tif (Common::isChatId($this->entityId))\n\t\t{\n\t\t\treturn Dialog::hasAccess($this->entityId, $userId);\n\t\t}\n\n\t\t// one-to-one dialog\n\t\treturn ($userId === (int)$this->entityId || $userId === (int)$this->initiatorId);\n\t}", "public function exists(string $userId): bool\n {\n return @$this->items[$userId] !== null;\n }", "public function isRoomOwner($userId = \"\")\n {\n if ($userId == \"\")\n $userId = Yii::app()->user->id;\n\n if ($this->getRoomOwner()->id == $userId) {\n return true;\n }\n\n return false;\n }", "public function exists(string $userId): bool\n {\n if (isset($this->items[$userId])) {\n return true;\n }\n\n return false;\n }", "public function may_i( $user_right );", "public function isOwnedBy(User $user)\n {\n $column = $this->_column;\n return $user->id == $this->_record->$column;\n }", "function catena_HasRight($sUserName, $sRight, $sRightOrg = \"\")\r\n{\r\n\t$arServerCall = Array();\r\n\t\r\n\t$arServerCall['location'] = \"functions/systemAccess\";\r\n\t$arServerCall['action'] = \"user_has_right\";\r\n\t$arServerCall['user'] = $sUserName;\r\n\t$arServerCall['right'] = $sRight;\r\n\t$arServerCall['right_org'] = $sRightOrg;\r\n\r\n\t$sFile = Catena_ServerGet($arServerCall);\r\n\r\n $arResults = explode(\"||\", $sFile);\r\n return $arResults[0] == \"true\";\r\n}", "public function has(UserId $userId);", "function is_allowed($right, $publication_id)\r\n {\r\n return $this->get_parent()->is_allowed($right, $publication_id);\r\n }", "public function thisUser($userId)\n {\n $currentUser = Auth::user();\n if($currentUser->id == $userId)\n {\n return true;\n }\n return false;\n }", "public function userAccess($userId)\n {\n if($this->thisUser($userId) || $this->isAdmin())\n {\n return true;\n }\n else\n {\n return false;\n }\n }", "public function hasRight($rightName)\r\n {\r\n $roleRights = (array)$this->rights;\r\n $rights = array();\r\n foreach($roleRights as $right)\r\n {\r\n $rights[] = $right->name;\r\n }\r\n $status = in_array($rightName,$rights);\r\n \r\n return $status;\r\n }", "public function has($p_master_right);", "private static function isOwner($load = [], $token = null, $userId = null)\n {\n if (is_null($token) && is_null($userId)) {\n return false;\n }\n\n if (is_null($token)) {\n return $load['_source']['user_id'] == $userId;\n }\n\n if (is_null($userId)) {\n return $load['_source']['token'] == $token;\n }\n\n return false;\n }", "public static function isPublic($userId = false)\n {\n $rez = false;\n\n $config = static::getUserConfig($userId);\n if (!empty($config['public_access'])) {\n $rez = true;\n }\n\n return $rez;\n }", "private function userHasJoinedProject(int $userId, int $projectId)\n {\n $userProjects = $this->findProjectsByUser($userId);\n\n foreach ($userProjects as $userProject)\n {\n if ($userProject->id === $projectId) {\n return true;\n }\n }\n\n return false;\n }", "public function isMember(int $userId) : bool\n {\n return (DB::table('user_team')->where('teamid', '=', $this->teamId)->where('userid', '=', $userId)->first() !== null);\n }", "function edd_cr_user_has_access( $user_id = 0, $post_id = 0 ) {\n\tglobal $post;\n\n\t$user_id = empty( $user_id ) ? get_current_user_id() : $user_id;\n\t$post_id = empty( $post_id ) && is_object( $post ) ? $post->ID : $post_id;\n\n\t$has_access = true;\n\n\tif ( ! empty( $post_id ) ) {\n\n\t\t$is_post_restricted = edd_cr_is_restricted( $post_id );\n\n\t\tif ( $is_post_restricted ) {\n\t\t\t$user_has_access = edd_cr_user_can_access( $user_id, $is_post_restricted, $post_id );\n\t\t\t$has_access = $user_has_access['status'] == false ? false : true;\n\t\t}\n\n\t}\n\n\treturn apply_filters( 'ecc_cr_user_has_access', $has_access );\n\n}", "public function hasReviewerParticipated($reportId, $userId)\n {\n return $this->getModel()->where('id', $reportId)->hasReviewed($userId)->exists();\n }" ]
[ "0.69034", "0.6652281", "0.6647041", "0.6542533", "0.65195745", "0.6278778", "0.618481", "0.61740845", "0.615448", "0.61465675", "0.61285645", "0.61215985", "0.60895914", "0.60893774", "0.6073074", "0.6059808", "0.60417634", "0.603263", "0.6016822", "0.59791297", "0.596244", "0.5959926", "0.59465647", "0.5941898", "0.5939808", "0.5939133", "0.59307677", "0.5907456", "0.5902377", "0.5902108" ]
0.87902385
0
Returns the rights array for the $userId role.
public function getRightsArray($userId) { CodeGuard::checkTypeAndThrow($userId, 'string'); if (!key_exists($userId, $this->users->data)) { $result = array(); } else { $role = $this->users->data[$userId]->role; $result = Roles::getRightsArray(Realm::PROJECT, $role); } return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getRolesByUserId($userId);", "public function getUserRoles($userId)\n {\n $roles = array();\n\n try {\n $query = '\n SELECT roles.name as role\n FROM users\n INNER JOIN roles\n ON users.role_id = roles.id\n WHERE users.id = :user_id\n ';\n $statement = $this->db->prepare($query);\n $statement->bindValue('user_id', $userId, \\PDO::PARAM_INT);\n $statement->execute();\n $result = $statement->fetchAll(\\PDO::FETCH_ASSOC);\n\n if ($result && count($result)) {\n $result = current($result);\n $roles[] = $result['role'];\n }\n\n return $roles;\n } catch (\\PDOException $e) {\n return $roles;\n }\n }", "public function getUserRoles($userId)\n {\n $sql = '\n SELECT\n roles.role\n FROM\n users_roles\n INNER JOIN\n roles\n ON users_roles.role_id=roles.id\n WHERE\n users_roles.user_id = ?\n ';\n\n $result = $this->_db->fetchAll($sql, array((string) $userId));\n\n $roles = array();\n foreach($result as $row) {\n $roles[] = $row['role'];\n }\n\n return $roles;\n }", "public function getRoleByUserId($userId)\n {\n $apiName = $this->getName($userId, 'apis');\n $allApiRoles = $this->getChildren($apiName);\n $existRoles = [];\n foreach ($allApiRoles as $apiRole) {\n array_push($existRoles, substr($apiRole->name, 0, -5));\n }\n\n return ['existRoles' => $existRoles];\n }", "public function getUserRoles($userId)\n {\n $criteria = new \\EMongoCriteria();\n $criteria\n ->addCond('userId', '==', (string)$userId);\n $assignmentList = Assignment::model()->findAll($criteria);\n\n $roleList = array();\n foreach ($assignmentList as $assignment) {\n $roleList[] = $assignment->itemName;\n }\n\n return $roleList;\n }", "public function getUserrolesForUserById($userId)\n {\n return $this->db->query(\n 'SELECT userroles.id, userroles.created, userroles.name '.\n 'FROM users_userroles '.\n 'LEFT JOIN userroles ON userroles.id = users_userroles.userrole_id '.\n 'WHERE users_userroles.user_id = ?',\n 'i',\n $userId\n );\n }", "public static function getAuthorisedPrivileges($role_id,$userId){\n $root = getenv('BASE_URL').'/COVID/public/' ?: 'localhost/';\n $result = \"\";\n /*select allowed privileges for the user */\n $privileges= DB::select(DB::raw(\"SELECT * from privileges WHERE privileges.state=1 AND\n privileges.privilege_id IN ( SELECT roles_has_privileges.privilege_id FROM roles_has_privileges\n WHERE roles_has_privileges.role_id=$role_id)AND privileges.privilege_id NOT IN\n (SELECT revoke_privileges.privilege_id FROM revoke_privileges WHERE revoke_privileges.user_id=$userId AND revoke_privileges.state=1)\n ORDER BY privileges.privilege_id ASC\n \"));\n /*select allowed Sub privileges */\n $sub_priv = DB::select(DB::raw(\"Select * From sub_privileges WHERE sub_privileges.state=1 AND sub_privileges.privilege_id IN\n (SELECT roles_has_privileges.privilege_id from roles_has_privileges WHERE roles_has_privileges.role_id=$role_id)\n AND sub_privileges.privilege_id NOT IN (SELECT revoke_sub.sub_privilege_id FROM revoke_sub\n WHERE revoke_sub.user_id=$userId)\n \"));\n /*result holds the privileges and sub privileges allowed for a given user*/\n foreach($privileges as $row){\n $result .=\"<li id='priv_$row->privilege_id'>\n <a href='#'><i class='fa fa-folder'></i>$row->name<span class='fa arrow'></span></a>\n <ul class='nav nav-second-level'>\";\n foreach($sub_priv as $row1){\n if($row1->privilege_id == $row->privilege_id){\n $result .=\"<li >\n <a href='\".$root.$row1->action.\"' id='subpriv_$row1->sub_privilege_id' >\n <i class='fa fa-file'></i>$row1->name\n </a>\n </li>\";\n }\n }\n $result .=\"</ul>\n </li>\";\n }\n return $result;\n }", "private static function getPermittedModulesByUser(int $userId): array\n\t{\n\t\t$cacheName = 'AdminPermittedModulesByUser';\n\t\t$permissions = \\App\\Cache::has($cacheName, $userId) ? \\App\\Cache::get($cacheName, $userId) : null;\n\t\tif (null === $permissions) {\n\t\t\t$permissions = (new \\App\\Db\\Query())->select(['name'])\n\t\t\t\t->from(self::MODULES_TABLE_NAME)\n\t\t\t\t->innerJoin(self::ACCESS_TABLE_NAME, self::MODULES_TABLE_NAME . '.id=' . self::ACCESS_TABLE_NAME . '.module_id')\n\t\t\t\t->where(['user' => $userId, 'status' => self::MODULE_STATUS_ACTIVE])->column();\n\t\t\t\\App\\Cache::save($cacheName, $userId, $permissions, \\App\\Cache::MEDIUM);\n\t\t}\n\t\treturn $permissions;\n\t}", "public function getPermissions($userId)\n\t{\n\t\t$queryBuilder = $this->withQueryBuilder()\n\t\t->select('pms.slug')\n\t\t->from('#_permissions', 'pms')\n\t\t->join('pms', '#_groups_permissions', 'gp', 'gp.permission_id = pms.id')\n\t\t->join('gp', '#_groups', 'g', 'gp.group_id = g.id')\n\t\t->join('gp', '#_users_groups', 'ug','gp.group_id = ug.group_id')\n\t\t->where('ug.user_id = :user_id')\n\t\t->setParameter(':user_id', $userId);\n\n\t\t$permissions = $queryBuilder->fetchAllObjects();\n\n\t\t$returned = array();\n\t\tforeach($permissions as $pms) {\n\t\t\t$returned[] = $pms->slug;\n\t\t}\n\n\t\treturn $returned;\n\t}", "public function getReadAccess($userId)\n {\n if (!$userId) {\n throw new Exception('cannot getReadAccess for null userId');\n }\n\n return $this->getAccess('read', $userId);\n }", "function readUserRights($perm_user_id)\n {\n $query = '\n SELECT\n ' . $this->alias['right_id'] . ',\n ' . $this->alias['right_level'] . '\n FROM\n '.$this->prefix.$this->alias['userrights'].'\n WHERE\n ' . $this->alias['perm_user_id'] . ' = '.\n $this->dbc->getValue($this->fields['perm_user_id'], $perm_user_id);\n\n $types = array(\n $this->fields['right_id'],\n $this->fields['right_level']\n );\n $result = $this->dbc->queryAll($query, $types, MDB_FETCHMODE_ORDERED, true);\n\n if (PEAR::isError($result)) {\n $this->stack->push(LIVEUSER_ERROR, 'exception', array(),\n 'error in query' . $result->getMessage() . '-' . $result->getUserInfo());\n return false;\n }\n\n return $result;\n }", "public function getRole($userId){\n\t\t$this->userId = $userId;\n\t\t$sql = \"SELECT user.id_user,role.role_type FROM {$this->table} INNER JOIN role ON user.id_role = role.id_role WHERE id_user = {$this->userId}\";\n\t\t$result = mysqli_query($this->conn,$sql);\n\t\t$row = mysqli_fetch_assoc($result);\n\t\treturn $row['role_type'];\n\t}", "function getRights()\n {\n $rights = array();\n // .. indem die Rechte eines User aus der Datenbank ausgewählt werden..\n if(isset($_SESSION['UserID'])){\n $sql = \"SELECT\n Recht\n FROM\n User_Rechte\n WHERE\n UserID = '\".$_SESSION['UserID'].\"'\n \";\n $result = mysql_query($sql) OR die (\"<pre>\\n\".$sql.\"</pre>\\n\".mysql_error());\n $rights = array();\n // .. und als array zurückgegeben werden\n while($row = mysql_fetch_assoc($result))\n $rights[] = $row['Recht'];\n }\n return $rights;\n }", "public function getRights(){\r\n if(is_null($this->rights)){\r\n $member_rights = MemberRight::getByMemberId($this->getId());\r\n $this->rights = array();\r\n foreach($member_rights as $right){\r\n $this->rights[] = $right->getRight()->getName();\r\n }\r\n }\r\n return $this->rights;\r\n }", "public function getByUserId(int $userId): array;", "public function getByUserId(string $userId): array;", "public static function getRoleByUser($userId, $client = '', $clientContentIid = 0)\n\t{\n\t\t$roles = array();\n\n\t\tif ($userId)\n\t\t{\n\t\t\t$db = Factory::getDbo();\n\t\t\t$query = $db->getQuery(true);\n\t\t\t$query->select('DISTINCT role_id');\n\t\t\t$query->from($db->quoteName('#__tjsu_users'));\n\t\t\t$query->where($db->quoteName('user_id') . \" = \" . $db->quote($userId));\n\n\t\t\tif (!empty($client))\n\t\t\t{\n\t\t\t\t$query->where($db->quoteName('client') . \" = \" . $db->quote($client));\n\t\t\t}\n\n\t\t\tif (!empty($clientContentIid))\n\t\t\t{\n\t\t\t\t$query->where($db->quoteName('client_id') . \" = \" . $db->quote($clientContentIid));\n\t\t\t}\n\n\t\t\t$db->setQuery($query);\n\t\t\t$roles = $db->loadColumn();\n\t\t}\n\n\t\treturn $roles;\n\t}", "private function get_user_roles($user_id = 0)\n {\n }", "public function getForUser(int $userId): array\n\t{\n\t\treturn $this->whereUser($userId)->findAll();\n\t}", "public function user_access($role, $userId) {\n $data = array();\n $query = $this->db->query('SELECT ' . $role . ' FROM role_based_access WHERE user_id=' . $userId . ';')->row();\n foreach ($query as $row) {\n $data = $row;\n }\n if ($data == 1) {\n return TRUE;\n } else {\n return FALSE;\n }\n }", "public function findByUserId(int $userId): array;", "public function roleAccess($role_id)\n {\n $menu = $this->db->get('user_menu');\n return $menu->result_array();\n\n //$email = $this->db->get_where('user', ['email' => $email])\n //return $email->row_array();\n //return $this->db->get_where('user', ['email' => $email])->row_array();\n //return $this->db->get_where('user_role', ['id' => $role_id])->row_array();\n \n }", "public function getRelation ( UserId $userId ) : array;", "protected function userWiseRoles()\n {\n return array_map(function ($item) {\n return $item[\"role_id\"];\n }, $this->db->get_where(\"roles_users\", array(\"user_id\" => $this->userID(), \"usertypeID\" => $this->usertypeID))->result_array());\n }", "function _getAccessibleStageRoles($userId, $contextId, &$submission, $stageId) {\n\t\t$reviewAssignmentDao = DAORegistry::getDAO('ReviewAssignmentDAO'); /* @var $reviewAssignmentDao ReviewAssignmentDAO */\n\t\t$userRoles = $this->getAuthorizedContextObject(ASSOC_TYPE_USER_ROLES);\n\n\t\t$accessibleStageRoles = array();\n\t\tforeach ($userRoles as $roleId) {\n\t\t\tswitch ($roleId) {\n\t\t\t\tcase ROLE_ID_REVIEWER:\n\t\t\t\t\t// Review assignment must exist in the given submission\n\t\t\t\t\t$reviewAssignments = $reviewAssignmentDao->getBySubmissionId($submission->getId());\n\t\t\t\t\tforeach ($reviewAssignments as $reviewAssignment) {\n\t\t\t\t\t\tif($reviewAssignment->getReviewerId() == $userId) {\n\t\t\t\t\t\t\t$accessibleStageRoles[] = $roleId;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn array_merge($accessibleStageRoles, parent::_getAccessibleStageRoles($userId, $contextId, $submission, $stageId));\n\t}", "public function getDeniedResources($userId)\n\t{\n\t\t$userId = (int)$userId;\n\t\tif (empty($userId)) {\n\t\t\treturn array();\n\t\t}\n\n\t\t$resourcesTable = self::get('KIT_Default_DbTable_Resource');\n\t\t$select = $resourcesTable->select();\n\t\t$select->setIntegrityCheck(false);\n\t\t$select->from(\n\t\t\tarray('src' => $resourcesTable->getTableName()),\n\t\t\tarray(\n\t\t\t\t$resourcesTable->getPrimary(),\n\t\t\t\t'RESOURCES_TITLE' => \"CONCAT_WS('/', src.RESOURCES_MODULE, src.RESOURCES_CONTROLLER, src.RESOURCES_ACTION)\"\n\t\t\t)\n\t\t);\n\t\t$select->joinLeft(\n\t\t\tarray('usr' => $this->getTableName()),\n\t\t\t'src.' . $resourcesTable->getPrimary() . ' = usr.USERSACL_RESOURCEID',\n\t\t\tarray()\n\t\t);\n\n\t\t$select->where('usr.' . $this->_primary . ' is null');\n\t\t$select->orWhere('usr.USERSACL_USERID <> ' . $userId);\n\n\t\treturn $this->fetchAll($select)->toArray();\n\t}", "public function getUserRoles();", "public function getPermissions(int $roleId): Collection;", "private function getUserLevelData($userRole)\n {\n if ($userRole == 'admin') {\n return [\n 'levelIcon' => 'supervisor_account',\n 'levelName' => 'Admin Access',\n 'levelBgClass' => 'mdl-color--red-200',\n 'leveIconlBgClass' => 'mdl-color--red-500',\n ];\n }\n\n return [\n 'levelIcon' => 'perm_identity',\n 'levelName' => 'User Access',\n 'levelBgClass' => 'mdl-color--blue-200',\n 'leveIconlBgClass' => 'mdl-color--blue-500',\n ];\n }", "public function getAuthorizedBackendMenusByUserId($userId)\n {\n $menus = $this->getMenus(Menu::TYPE_BACKEND, Menu::DISPLAY_YES);\n $permissions = Yii::$app->getAuthManager()->getPermissionsByUser($userId);\n $permissions = array_keys($permissions);\n if (in_array(Yii::$app->getUser()->getId(), Yii::$app->getBehavior('access')->superAdminUserIds)) {\n return $menus;//config user ids own all permissions\n }\n\n $tempMenus = [];\n foreach ($menus as $menu) {\n /** @var Menu $menu */\n $url = $menu->url;\n $temp = @json_decode($menu->url, true);\n if ($temp !== null) {//menu url store json format\n $url = $temp[0];\n }\n if (strpos($url, '/') !== 0) $url = '/' . $url;//ensure url must start with '/'\n $url = $url . ':GET';\n if (in_array($url, $permissions)) {\n $menu = $menu->getAncestors($menu->id) + [$menu];\n $tempMenus = array_merge($tempMenus, $menu);\n }\n }\n\n $existMenuIds = [];\n $hasPermissionMenus = [];\n foreach ($tempMenus as $v) {\n /** @var Menu $v */\n if( in_array($v->id, $existMenuIds) ) {\n continue;\n }\n $hasPermissionMenus[] = $v;\n $existMenuIds[] = $v->id;\n }\n ArrayHelper::multisort($hasPermissionMenus, 'sort', SORT_ASC);\n return $hasPermissionMenus;\n }" ]
[ "0.7967875", "0.72063524", "0.71705467", "0.71580374", "0.7076572", "0.67481047", "0.6732213", "0.66347003", "0.6547284", "0.6303495", "0.6301249", "0.6199226", "0.6162602", "0.6159336", "0.61388844", "0.61022013", "0.608838", "0.60763687", "0.607258", "0.603561", "0.5995415", "0.598999", "0.5985215", "0.5978473", "0.59700143", "0.59539956", "0.594801", "0.59407896", "0.5898982", "0.5883469" ]
0.85981095
0
Return the form for adding text to an Exhibit block.
public function exhibitFormText($block) { return $this->view->formTextarea($block->getFormStem() . '[text]', $block->text, array('rows' => 8)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function MyMod_Handle_Add_Form_Text_Post()\n {\n if (!preg_match(\"(Coordinator|Admin)\",$this->Profile()))\n {\n return \"\";\n }\n \n return\n $this->BR().\n $this->FrameIt($this->InscriptionsObj()->DoAdd());\n }", "function FormExpress_formblock_info()\n{\n // Values\n return array('text_type' => 'FormExpress',\n 'module' => 'FormExpress',\n 'text_type_long' => 'Display a FormExpress in a block',\n 'allow_multiple' => true,\n 'form_content' => true,\n 'form_refresh' => false,\n 'show_preview' => true);\n}", "function bmg_new_form_markup() {\n\t//Double check user capabilities\n\tif( !current_user_can('manage_options')) {\n\t\treturn;\n\t}\n\n\tinclude( plugin_dir_path( __FILE__ ) . './templates/admin/new-form.php');\n}", "public function getFormView()\n {\n return 'admin/modules/forms/text-module.html.twig';\n }", "function bmg_edit_form_markup() {\n\t//Double check user capabilities\n\tif( !current_user_can('manage_options')) {\n\t\treturn;\n\t}\n\n\tinclude( plugin_dir_path( __FILE__ ) . './templates/admin/edit-form.php');\n}", "function toString() {\n $html = '<form name=\"block-'. $this->__module.'-'.$this->__name. '\">\n <label for=\"text\">add microliner</label>\n <input type=\"text\" name=\"text\" />\n <input type=\"hidden\" name=\"module\" value=\"MicroText\" />\n <input type=\"hidden\" name=\"action\" value=\"AddText\" />\n <input type=\"submit\" value=\"submit\" />\n </form>';\n\n return $html;\n }", "public function ContentForm()\n {\n return new HtmlCodeForm();\n }", "public function editForm() {\n $html = '<input class=\"form-control\" name=\"'.$this->name.'\" value=\"'.$this->field_data->string_data.'\" />';\n\n if ($this->help)\n $html .= '<p class=\"help-block\">'.$this->help.'</p>';\n\n return $html;\n }", "function MyMod_Handle_Add_Form_Text_Pre()\n {\n if (!preg_match(\"(Coordinator|Admin)\",$this->Profile()))\n {\n return \"\";\n }\n return\n $this->FrameIt($this->InscriptionsObj()->DoAdd());\n }", "function Blocks_htmlblock_info()\n{\n return array('module' => 'Blocks',\n 'text_type' => __('HTML'),\n 'text_type_long' => __('HTML'),\n 'allow_multiple' => true,\n 'form_content' => true,\n 'form_refresh' => false,\n 'show_preview' => true);\n}", "public function ContentForm()\n {\n return new TextareaForm();\n }", "protected function getForm()\n {\n\t\t$data['text_form'] = !isset($this->request->get['tabId']) ? $this->language->get('text_add') : $this->language->get('text_edit');\n\n $this->document->addStyle('view/javascript/codemirror/lib/codemirror.css');\n $this->document->addStyle('view/javascript/codemirror/theme/monokai.css');\n $this->document->addStyle('view/javascript/summernote/summernote.css');\n\n $this->document->addScript('view/javascript/codemirror/lib/codemirror.js');\n $this->document->addScript('view/javascript/codemirror/lib/xml.js');\n $this->document->addScript('view/javascript/codemirror/lib/formatting.js');\n $this->document->addScript('view/javascript/summernote/summernote.js');\n $this->document->addScript('view/javascript/summernote/summernote-image-attributes.js');\n $this->document->addScript('view/javascript/summernote/opencart.js');\n\n\t\tif (isset($this->error['warning'])) {\n\t\t\t$data['error_warning'] = $this->error['warning'];\n\t\t} else {\n\t\t\t$data['error_warning'] = '';\n\t\t}\n\n\t\tif (isset($this->error['name'])) {\n\t\t\t$data['error_name'] = $this->error['name'];\n\t\t} else {\n\t\t\t$data['error_name'] = '';\n\t\t}\n\n if (isset($this->error['text'])) {\n $data['error_text'] = $this->error['text'];\n } else {\n $data['error_text'] = '';\n }\n\n\t\t$data['breadcrumbs'] = [];\n\n\t\t$data['breadcrumbs'][] = [\n\t\t\t'text' => $this->language->get('text_home'),\n\t\t\t'href' => $this->url->link('common/dashboard', 'user_token=' . $this->session->data['user_token'])\n\t\t];\n\n\t\t$data['breadcrumbs'][] = [\n\t\t\t'text' => $this->language->get('heading_title'),\n\t\t\t'href' => $this->url->link(\n\t\t\t 'design/mainPageCatalog/moduleTab',\n 'user_token=' . $this->session->data['user_token']\n )\n\t\t];\n\n\t\tif (!isset($this->request->get['tabId'])) {\n\t\t\t$data['action'] = $this->url->link(\n\t\t\t 'design/mainPageCatalog/moduleTab/add',\n 'user_token=' . $this->session->data['user_token'] .\n '&countryId=' . $this->request->get['countryId']\n );\n\t\t} else {\n\t\t\t$data['action'] = $this->url->link(\n\t\t\t 'design/mainPageCatalog/moduleTab/edit',\n 'user_token=' . $this->session->data['user_token'] .\n '&countryId=' . $this->request->get['countryId'] .\n '&tabId=' . $this->request->get['tabId']\n );\n\t\t}\n\n\t\t$data['cancel'] = $this->url->link(\n\t\t 'design/mainPageCatalog/moduleTab',\n 'user_token=' . $this->session->data['user_token']\n );\n\n\t\tif (isset($this->request->get['countryId']) && isset($this->request->get['tabId'])) {\n $tabInfo = $this->config->get('config_tab_main_page');\n\t\t}\n\n\t\t$data['user_token'] = $this->session->data['user_token'];\n\n\t\tif (isset($this->request->post['name'])) {\n\t\t\t$data['name'] = $this->request->post['name'];\n\t\t} elseif (!empty($tabInfo)) {\n\t\t foreach ($tabInfo[$this->request->get['countryId']]['array'] as $key => $item) {\n\t\t if ($item['id'] == $this->request->get['tabId']) {\n $data['name'] = $item['name'];\n }\n }\n\t\t} else {\n\t\t\t$data['name'] = '';\n\t\t}\n\n\t\tif (isset($this->request->post['text'])) {\n\t\t\t$data['text'] = $this->request->post['text'];\n\t\t} elseif (!empty($tabInfo)) {\n foreach ($tabInfo[$this->request->get['countryId']]['array'] as $key => $item) {\n if ($item['id'] == $this->request->get['tabId']) {\n $data['text'] = $item['text'];\n }\n }\n\t\t} else {\n\t\t\t$data['text'] = '';\n\t\t}\n\n\t\t$data['header'] = $this->load->controller('common/header');\n\t\t$data['column_left'] = $this->load->controller('common/column_left');\n\t\t$data['footer'] = $this->load->controller('common/footer');\n\n\t\t$this->response->setOutput($this->load->view('design/mainPageCatalog/tab_form', $data));\n\t}", "private function addForm() {\n\t\t$html .= '\n\t\t<div id=\"doctext\" style=\"height:300px;display:none\"> </div>\n\t\t<form name=\"couchfields\" action=\"' . $this->pi_getPageLink($GLOBALS['TSFE']->id) . '\" method=\"post\">';\n\t\tforeach ($this->defaultFields as $field) {\n\n\n\t\t\t$html .= '\n\t\t\t<label for=\"tx-relax-pi1-' . $field . '\">' . ucfirst($field) . '</label>\n\t\t\t<input type=\"text\" name=\"tx-relax-pi1[' . $field . ']\" id=\"tx-relax-pi1-' . $field . '\" />\n\t\t\t\t<br />';\n\t\t}\n\t\t$tempField = $this->getRandomFieldName();\n\t\t$html .= '\n\t\t\n\t\t\t<input type=\"text\" name=\"tx-relax-pi1[' . $tempField . '][fieldname]\" id=\"tx-relax-pi1-' . $tempField . '[label]\" />\n\t\t\t<input type=\"text\" name=\"tx-relax-pi1[' . $tempField . '][fieldvalue]\" id=\"tx-relax-pi1-' . $tempField . '[value]\" />\n\t\t\t<div class=\"addmore\">+</div>\n\t\t\t<br />\n\t\t\t<input type=\"submit\" name=\"tx-relax-pi1[add]\" value=\"add\" />\n\t\t\t\n\t\t</form>\n\t\t';\n\n\t\treturn $html;\n\t}", "public function getGeneratorForm()\n {\n $content = view(\"admin.editor.review-generator\");\n return \\AdminSection::view($content, 'Генератор отзывов');\n }", "public function getAddForm()\n {\n $languages = Common::LANGUAGES;\n return view('smstake.draft.create', compact('languages'));\n }", "public function render()\n {\n return view('components.form-text');\n }", "protected function form()\n {\n date_default_timezone_set('Asia/Makassar');\n $form = new Form(new ViewAbout());\n\n $form->textarea('text1', __('Text1'));\n $form->textarea('text2', __('Text2'));\n $form->textarea('text3', __('Text3'));\n $form->textarea('text4', __('Text4'));\n $form->image('background', __('Background'))->move('images/background/about')->removable();\n $form->switch('status', __('Status'))->default(1);\n\n return $form;\n }", "public function getForm()\n {\n return $this->beginForm() . $this->setText() . $this->setText() . $this->setSubmit() . $this->endForm();\n }", "function form( $instance ) {\n\t\t$defaults = array( 'text' => '' );\n\t\t$instance = wp_parse_args( (array) $instance, $defaults ); ?>\n \n <p>\n\t\t\t<label for=\"<?php echo $this->get_field_id( 'text' ); ?>\">Text/HTML:</label><br />\n <textarea rows=\"20\" cols=\"47\" id=\"<?php echo $this->get_field_id( 'text' ); ?>\" name=\"<?php echo $this->get_field_name( 'text' ); ?>\"><?php echo $instance['text']; ?></textarea>\n\t\t</p>\n \n <?php\n\t}", "abstract protected function view_generateFormContent();", "public function login_form_definition($mform) {\n $mform->addElement('html', get_string('policytext', 'factor_loginbanner'));\n return $mform;\n }", "public function init()\n {\n\n parent::init();\n\n $this->setMethod('post');\n $this->setAttrib('id', 'add-exhibit-form');\n $this->addElementPrefixPath('Neatline', dirname(__FILE__));\n\n // Title.\n $this->addElement('text', 'name', array(\n 'label' => __('Title'),\n 'description' => __('The title is displayed at the top of the exhibit.'),\n 'size' => 40,\n 'value' => $this->_neatline->name,\n 'required' => true,\n 'validators' => array(\n array('validator' => 'NotEmpty', 'breakChainOnFailure' => true, 'options' =>\n array(\n 'messages' => array(\n Zend_Validate_NotEmpty::IS_EMPTY => __('Enter a title.')\n )\n )\n )\n )\n ));\n\n // Description.\n $this->addElement('textarea', 'description', array(\n 'label' => __('Description'),\n 'description' => __('Supporting prose to describe the exhibit.'),\n 'value' => $this->_neatline->description,\n 'attribs' => array('class' => 'html-editor', 'rows' => '20')\n ));\n\n // Slug.\n $this->addElement('text', 'slug', array(\n 'label' => __('URL Slug'),\n 'description' => __('The URL slug is used to form the public URL for the exhibit. Can contain letters, numbers, and hyphens.'),\n 'size' => 40,\n 'required' => true,\n 'value' => $this->_neatline->slug,\n 'filters' => array('StringTrim'),\n 'validators' => array(\n array('validator' => 'NotEmpty', 'breakChainOnFailure' => true, 'options' =>\n array(\n 'messages' => array(\n Zend_Validate_NotEmpty::IS_EMPTY => __('The slug cannot be empty.')\n )\n )\n ),\n array('validator' => 'Regex', 'breakChainOnFailure' => true, 'options' =>\n array(\n 'pattern' => '/^[0-9a-z\\-]+$/',\n 'messages' => array(\n Zend_Validate_Regex::NOT_MATCH => __('The slug can only contain lowercase letters, numbers, and hyphens.')\n )\n )\n ),\n array('validator' => 'Db_NoRecordExists', 'options' =>\n array(\n 'table' => $this->_neatline->getTable()->getTableName(),\n 'field' => 'slug',\n 'adapter' => $this->_neatline->getDb()->getAdapter(),\n 'exclude' => array(\n 'field' => 'id',\n 'value' => (int)$this->_neatline->id\n ),\n 'messages' => array(\n 'recordFound' => __('The slug is already in use.')\n )\n )\n )\n )\n ));\n\n // Public.\n $this->addElement('checkbox', 'public', array(\n 'label' => __('Public?'),\n 'description' => __('By default, exhibits are only visible to you.'),\n 'value' => $this->_neatline->public\n ));\n\n // Image.\n $this->addElement('select', 'image_id', array(\n 'label' => __('(Optional): Static Image'),\n 'description' => __('Select a file to build the exhibit on a static image.'),\n 'attribs' => array('style' => 'width: 230px'),\n 'multiOptions' => $this->getImagesForSelect(),\n 'value' => $this->_neatline->image_id,\n ));\n\n // Submit.\n $this->addElement('submit', 'submit', array(\n 'label' => __('Save Neatline')\n ));\n\n // Group the metadata fields.\n $this->addDisplayGroup(array(\n 'name',\n 'description',\n 'slug',\n 'image_id',\n 'public'\n ), 'exhibit_info');\n\n // Group the submit button sparately.\n $this->addDisplayGroup(array(\n 'submit'\n ), 'submit_button');\n\n }", "function example_firstblock_info()\n{\n /* Values */\n return array(\n 'text_type' => 'First',\n 'module' => 'example',\n 'text_type_long' => 'Show first example items (alphabetical)',\n 'allow_multiple' => true,\n 'form_content' => false,\n 'form_refresh' => false,\n 'show_preview' => true\n );\n}", "protected function form()\n {\n $form = new Form(new Definition());\n\n $form->textarea('text', __('Text'));\n $form->number('user_id', __('User id'));\n $form->number('word_id', __('Word id'));\n $form->textarea('exemple', __('Exemple'));\n $form->number('like', __('Like'));\n $form->number('dislike', __('Dislike'));\n $form->text('media_url', __('Media url'));\n $form->text('visibility', __('Visibility'))->default('public');\n\n return $form;\n }", "public function form()\n {\n $this->text('id')->readonly();\n $this->text('key', __('admin.config.key'))->readonly();\n $this->keyValue('value', __('admin.config.value'))->required();\n $this->text('comment', __('admin.config.comment'))->required();\n }", "function Users_userblock_info()\n{\n return array('module' => 'Users',\n 'text_type' => __('User'),\n 'text_type_long' => __(\"User's custom box\"),\n 'allow_multiple' => false,\n 'form_content' => false,\n 'form_refresh' => false,\n 'show_preview' => true);\n\n\n}", "function ctools_three_random_block_edit_form($form, &$form_state) {\n\n return $form;\n}", "public function form( $instance ) {\n\t\techo $this->add_text_field('text', 'Text of CTA', $instance, '', 'Leave empty for default');\n\t\techo $this->add_text_field('button', 'Button text of CTA', $instance, '', 'Leave empty for default');\n\t}", "public function getFormTemplate()\n {\n return 'TheCodeineEmbedBundle:Integration:form.html.php';\n }", "public function core_display_add_listing_alert_field()\n {\n return 'form html';\n }" ]
[ "0.641726", "0.63041353", "0.5949314", "0.5906044", "0.59039193", "0.5862687", "0.5850526", "0.5757945", "0.5729393", "0.5718228", "0.5703025", "0.56989175", "0.563707", "0.5609947", "0.55916196", "0.5577752", "0.5555489", "0.55551755", "0.5550263", "0.55443275", "0.5542487", "0.552598", "0.5509275", "0.55074", "0.5499883", "0.54667413", "0.5453599", "0.54513025", "0.5444872", "0.54287976" ]
0.6766055
0
Check if "start date" has been set
public function hasStartDate() : bool { return isset($this->startDate); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function DiscountHasStartDate() {\n\t \t $startDate = $this->DiscountStartDate();\n\t \t if($startDate != null){\n\t \t \t return true;\n\t \t }\n\t \t else {\n\t \t \t return false;\n\t \t }\n\t }", "public function setStartDate($start_date);", "public function hasStarttime(){\n return $this->_has(6);\n }", "public function testGetAndSetStartDate()\n {\n // check default\n $date = new DateTime();\n $start_date = $this->calc->getStartDate();\n $this->assertEquals($date->format('Y-m'),$start_date->format('Y-m'));\n\n //check custom start date\n $date = new DateTime('2016-02-17'); // happy birthday to me :-)\n $this->calc->setStartDate($date);\n $start_date = $this->calc->getStartDate();\n $this->assertEquals($date->format('Y-m'),$start_date->format('Y-m'));\n }", "protected function setStartDate($start_date) {\r\n $this->start_date = $start_date;\r\n }", "function set_start_min_date($value = \"\"){\n\t\t$this->start_min_date = $value;\n\t}", "public function testStartDate() {\n $promotion = Promotion::create([\n 'order_types' => ['default'],\n 'stores' => [$this->store->id()],\n 'usage_limit' => 1,\n 'usage_limit_customer' => 0,\n 'status' => TRUE,\n ]);\n $promotion->save();\n\n // Start date equal to the order placed date.\n $date = new DrupalDateTime('2019-11-15 10:14:00');\n $promotion->setStartDate($date);\n $this->assertTrue($promotion->available($this->order));\n\n // Past start date.\n $date = new DrupalDateTime('2019-11-10 10:14:00');\n $promotion->setStartDate($date);\n $this->assertTrue($promotion->available($this->order));\n\n // Future start date.\n $date = new DrupalDateTime('2019-11-20 10:14:00');\n $promotion->setStartDate($date);\n $this->assertFalse($promotion->available($this->order));\n }", "public function setStartDate($date);", "public function setStartDate(DrupalDateTime $start_date);", "public function setStartDate(DrupalDateTime $start_date);", "public function isSetScheduledDeliveryStartDate()\n {\n return !is_null($this->_fields['ScheduledDeliveryStartDate']['FieldValue']);\n }", "public function hasStartTime(){\n return $this->_has(2);\n }", "public function action_check_date()\n\t{\n\t\t$post = $this->request->post();\n\n\t\tif (array_key_exists('start', $post))\n\t\t{\n\t\t\tif (strtotime($post['start']) <= strtotime($post['end']))\n\t\t\t\techo TRUE;\n\t\t\telse\n\t\t\t\techo 'Dates are invalid.';\n\t\t}\n\t}", "function start_time_check()\r\n\t{\r\n\t\t$this->start_time = $this->time_check();\r\n\t}", "public function setStartDate($date) {\r\n\t\tif($this->id) { //we do exists\r\n\t\t\trequire_once('Appointment.class.php');\r\n\t\t\t$ap = new Appointment();\r\n\t\t\t$lst = $ap->getList('', $this->db->formatQuery('WHERE t.party = %i AND t.region = %i AND t.time_start < %s', $this->party, $this->region, $date), 'ORDER BY t.time_start ASC');\r\n\t\t\tif(count($lst) > 0) { //no, we can't, there is a politician function which we will exclude\r\n\t\t\t\t$bound = reset($lst);\r\n\t\t\t\t$date = $bound->time_start;\r\n\t\t\t}\r\n\t\t}\r\n\t\t$this->time_start = $date;\r\n\t\treturn $date;\r\n\t}", "public function setStartAttribute($date) {\n\n if(is_null($date)) {\n $this->attributes['start'] = Carbon::createFromFormat('Y-m-d H:i:s',\"2017-01-01 00:00\")->toDateTimeString();\n } else{\n $this->attributes['start'] = Carbon::createFromFormat('Y-m-d H:i:s',$date)->toDateTimeString();\n }\n\n }", "public function setDefaultStartDate()\n {\n\n $this->start_date = mktime(0,0,0, $month=10, $day=1, $year=$this->year);\n }", "public function wasStarted()\n {\n return ! is_null($this->started_at);\n }", "public function getStartDate() {\r\n return $this->start_date;\r\n }", "function setDateStart($dateStart) {\n\t\treturn $this->setData('dateStart', $dateStart);\n\t}", "public function isSetNeedByDate()\n {\n return !is_null($this->_fields['NeedByDate']['FieldValue']);\n }", "public function getStartDate()\n {\n return isset($this->start_date) ? $this->start_date : null;\n }", "public static function hasBegun()\n {\n $now = time();\n $currPeriod = Period::getCurrentPeriod();\n if($now > $currPeriod->getStartDate()){\n return true;\n } else {\n return false;\n }\n }", "public function testGetStartDate()\n {\n $this->assertEquals(\n $this->testStartDate,\n $this->fundingCycle->getStartDate()\n );\n }", "public function hasStartValueInclusive(){\n return $this->_has(1);\n }", "private static function dateIsSet($date)\n {\n return isset($date);\n }", "public function getStartDate()\n {\n return $this->start_date;\n }", "public function getStartDate()\n {\n return $this->start_date;\n }", "public function getStartDate()\n {\n return $this->start_date;\n }", "public function isStarted() {\n if ($this->getStartTime() != null) {\n return true;\n }\n return false;\n }" ]
[ "0.73670393", "0.70784134", "0.69200796", "0.68539774", "0.6761081", "0.67596996", "0.6753537", "0.6732925", "0.6640501", "0.6640501", "0.65822124", "0.6553676", "0.6538039", "0.6533588", "0.65122736", "0.6502677", "0.63397187", "0.6311567", "0.63028467", "0.6262403", "0.6261322", "0.62521803", "0.622394", "0.6222787", "0.62157214", "0.6179471", "0.6174147", "0.6174147", "0.6174147", "0.6167628" ]
0.7792259
0
Get a default "start date" value, if any is available
public function getDefaultStartDate() : ?string { return null; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setDefaultStartDate()\n {\n\n $this->start_date = mktime(0,0,0, $month=10, $day=1, $year=$this->year);\n }", "public function getStartDate()\n {\n return isset($this->start_date) ? $this->start_date : null;\n }", "public function getStartDate()\n {\n return isset($this->start_date) ? $this->start_date : '';\n }", "function getStartDate() {\n if (empty($this->start_date) || $this->start_date == '0000-00-00') {\n return '-';\n } else {\n return $this->start_date;\n }\n }", "public function getStartDate() : ?string \n {\n if ( ! $this->hasStartDate()) {\n $this->setStartDate($this->getDefaultStartDate());\n }\n return $this->startDate;\n }", "function getStartDate() {\r\n if (isset($this->startDate)) {\r\n return $this->startdate;\r\n }\r\n $when = $this->data['entity']->getWhen();\r\n if (empty($when)) {\r\n $gStart = date('Y-m-d');\r\n } else if ($when[0]->getStartTime()) {\r\n $gStart = $when[0]->getStartTime();\r\n } else {\r\n $gStart = date('Y-m-d');\r\n }\r\n $start = new DateTime($gStart);\r\n $timeZone = new DateTimeZone('UTC');\r\n $start->setTimezone($timeZone);\r\n $startDate = $start->format('Y-m-d');\r\n $this->startDate = $startDate;\r\n return $startDate;\r\n }", "protected function getStartDate()\n {\n return $this->get('start', now()->subMinute()->format($this->dateFormat));\n }", "function getFromDate()\n {\n return $this->get_default_property(self::PROPERTY_FROM_DATE);\n }", "function em_get_the_start( $post_id = 0, $type = 'datetime' ) {\n\t$post_id = (int) ( empty( $post_id ) ? get_the_ID() : $post_id );\n\n\tif ( empty( $post_id ) )\n\t\treturn false;\n\n\t$date = get_post_meta( (int) $post_id, '_event_start_date', true );\n\n\treturn apply_filters( 'em_get_the_start', ( ! empty( $date ) ? em_format_date( $date, $type ) : false ), $post_id );\n}", "protected function start_date() : string {\n if (!empty($this->params['start_date'])) {\n // User passed explicit start_date; honor precisely.\n return $this->start_date->format('Y-m-d 00:00:00');\n }\n\n if ($this->truncate() && $this->within_current_month($this->start_date)) {\n return $this->time->format('Y-m-d 00:00:00');\n }\n\n return $this->start_date->format('Y-m-01 00:00:00');\n }", "public function getStartDate();", "public function getStartDate();", "function set_start_min_date($value = \"\"){\n\t\t$this->start_min_date = $value;\n\t}", "public function start_date() {\n\t\treturn $this->data['start_date'];\n\t}", "public function getDateStart()\n\t{\n\t\tif( isset( $this->values['product.datestart'] ) ) {\n\t\t\treturn (string) $this->values['product.datestart'];\n\t\t}\n\t}", "function getDateStart() {\n\t\treturn $this->getData('dateStart');\n\t}", "public function getStartDate() {\r\n return $this->start_date;\r\n }", "function get_default_startdate($lsf_course) {\n $semester = $lsf_course->semester . '';\n $year = substr($semester, 0, 4);\n $month = (substr($semester, -1) == \"1\") ? 4 : 10;\n return mktime(0, 0, 0, $month, 1, $year);\n}", "public function getStartDate()\n {\n return $this->start_date;\n }", "public function getStartDate()\n {\n return $this->start_date;\n }", "public function getStartDate()\n {\n return $this->start_date;\n }", "public function getStartDate()\n {\n return $this->getParameter('startDate');\n }", "public function getStartDate(): ?DateTime {\n return $this->startDate;\n }", "public function getStartDateTime()\n {\n if (array_key_exists(\"startDateTime\", $this->_propDict)) {\n if (is_a($this->_propDict[\"startDateTime\"], \"\\DateTime\") || is_null($this->_propDict[\"startDateTime\"])) {\n return $this->_propDict[\"startDateTime\"];\n } else {\n $this->_propDict[\"startDateTime\"] = new \\DateTime($this->_propDict[\"startDateTime\"]);\n return $this->_propDict[\"startDateTime\"];\n }\n }\n return null;\n }", "public function getStartDateTime()\n {\n if (array_key_exists(\"startDateTime\", $this->_propDict)) {\n if (is_a($this->_propDict[\"startDateTime\"], \"\\DateTime\") || is_null($this->_propDict[\"startDateTime\"])) {\n return $this->_propDict[\"startDateTime\"];\n } else {\n $this->_propDict[\"startDateTime\"] = new \\DateTime($this->_propDict[\"startDateTime\"]);\n return $this->_propDict[\"startDateTime\"];\n }\n }\n return null;\n }", "function DiscountStartDate() {\n\t \t $bestDiscount = $this->getBestDiscount();\n\t \t \n\t \t if($bestDiscount)\n\t \t {\n\t \t \t $startDate = new SS_DateTime();\n\t \t \t $startDate->setValue($bestDiscount->From);\n\t \t \t return $startDate;\n\t \t }\n\t \t else\n\t \t {\n\t \t \t return null;\n\t \t }\n\t }", "public function getInitialDate()\n {\n return $this->initialDate;\n }", "public function getDefaultDeliveryDate(): string|null;", "public function getDateStart()\n {\n return $this->date_start;\n }", "public function getDtstartValue()\n\t{\n\t\tif ( null === $this->dtstart ) throw new Warecorp_ICal_Exception('Event start date is not set.');\n\t\treturn $this->dtstart;\n\t}" ]
[ "0.73232704", "0.71593165", "0.7079404", "0.6907905", "0.6852149", "0.68202263", "0.6785302", "0.67830026", "0.6779525", "0.6770583", "0.6698857", "0.6698857", "0.66686606", "0.6666922", "0.66631573", "0.6636466", "0.66153497", "0.66121674", "0.6557065", "0.6557065", "0.6557065", "0.65265745", "0.6500163", "0.64759755", "0.64759755", "0.64437854", "0.6380146", "0.63682526", "0.63486713", "0.6333656" ]
0.7317879
1
/ endHtml.php Return html closer
function endHtml() { return render( "htmlCloser.html.php" ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function endHtml(){\r\n\r\n\t echo \"</html>\";\r\n\t}", "public function htmlEnd() {\n\t\treturn \"</div>\\n\";\n\t}", "function display_html_end()\n{\n\tglobal $config;\n\t\n\techo \n'<script>\n<!-- any end of document script goes here -->\n</script>';\n\n\techo '</body>';\n\techo '</html>';\n}", "function endHtmlHead(){\r\n\t\techo '</head>';\r\n\t}", "function html_end() {\n\tglobal $CONFIG;\n\n\t$git = '/usr/bin/git';\n\t$changelog = $CONFIG['webdir'].'/doc/CHANGELOG';\n\n\t$version = 'v?';\n\tif (file_exists($git) && is_dir($CONFIG['webdir'].'/.git')) {\n\t\tchdir($CONFIG['webdir']);\n\t\t$version = exec($git.' describe --tags');\n\t} elseif (file_exists($changelog)) {\n\t\t$changelog = file($changelog);\n\t\t$version = explode(' ', $changelog[0]);\n\t\t$version = 'v'.$version[0];\n\t}\n\n\techo <<<EOT\n</div>\n<div id=\"footer\">\n<hr><span class=\"small\"><a href=\"http://pommi.nethuis.nl/category/cgp/\" rel=\"external\">Collectd Graph Panel</a> ({$version}) is distributed under the <a href=\"{$CONFIG['weburl']}doc/LICENSE\" rel=\"licence\">GNU General Public License (GPLv3)</a></span>\n</div>\n\nEOT;\n\n\tif ($CONFIG['graph_type'] == 'canvas') {\n\t\techo <<<EOT\n<script type=\"text/javascript\" src=\"{$CONFIG['weburl']}js/CGP.js\"></script>\n\nEOT;\n\t}\n\t\necho <<<EOT\n</body>\n</html>\nEOT;\n}", "function HTML_print_end() {\nprint \"\n </div>\n </div><!-- /.row -->\n </div><!-- /.container -->\n</body>\n\n</html>\n\";\n}", "public static function closeBody()\n {\n echo \" </div>\";\n echo \"</body>\";\n echo \"</html>\";\n }", "public function close_page_wrap() {\n\t\t\techo '</div>';\n\t\t}", "public function end_main_region() {\n return html_writer::end_tag('div');\n }", "function endBody(){\r\n\t\techo '</body>';\r\n\t}", "protected function getAfterHtml()\n {\n $html = '';\n return $html;\n }", "public function end()\n {\n return Html::endTag(isset($this->options['tag']) ? $this->options['tag'] : 'div');\n }", "protected function layoutStop() {\r\n echo '</html>';\r\n }", "function endDiv(){\r\n\t\techo '</div>';\r\n\t}", "public function getFooter(){\n\n return \" </body>\n </html>\";\n }", "protected function closePageWrapper()\n\t{\n\t\techo \"</div>\\n\";\n\t}", "function renderEOF()\r\n{\r\n return \"\\n</body>\\n</html>\";\r\n}", "function HTMLFoot() {\n\t$c=\"</body>\\n\";\n\t$c.=\"</html>\\n\";\n\treturn $c;\n}", "protected function renderBodyEnd()\n {\n return Html::endTag('div');\n }", "public static function End() {\n\t\t\t$Content = \"\";\n\n\t\t\t\t$Content .= \"</div>\\n\";\n\t\t\t$Content .= \"</div>\\n\";\n\n\t\t\treturn $Content;\n\t\t}", "public function vxBodyEnd() {\n\t\techo('</body></html>');\n\t}", "public function foot() {\n\t\tforeach (static::$_end_script as $script) self::render_script($script);\n\t\techo \"</html>\";\n\t}", "function rowend(){\r\n return '</div>';\r\n }", "function do_html_footer()\n\t{\n?>\n \n</body>\n</html>\n<?php\n\t}", "function WriteHTMLFooter()\r\n{\r\n\techo \"</BODY>\\n\";\r\n\techo \"</HTML>\\n\";\r\n}", "function do_html_footer(){\n?>\n </body>\n </html>\n<?php\n}", "function do_html_footer() {\r\n?>\r\n </body>\r\n </html>\r\n<?php\r\n}", "function RenderBodyEnd()\n\t{\n $strBody = \"</body>\\n\";\n $strBody.= \"</html>\\n\";\n return $strBody;\n\t}", "static function end_html( $meta, $field )\n\t\t{\n\t\t\treturn '';\n\t\t}", "public function renderXHtmlBeforeBodyEndContent()\n {\n }" ]
[ "0.81593984", "0.78224003", "0.7278858", "0.72020453", "0.72008866", "0.6987438", "0.68927085", "0.6806365", "0.6778648", "0.67428505", "0.67346895", "0.67330307", "0.6691834", "0.66905695", "0.66337997", "0.6629958", "0.65854865", "0.6572231", "0.65661746", "0.6546541", "0.6536969", "0.6478098", "0.6471327", "0.6464756", "0.64505583", "0.64498794", "0.6448567", "0.641", "0.63806814", "0.63587534" ]
0.84621066
0
Returns a single lesson time by its identifier
public function getLessonTimeByID($id) { $stmt = $this->db->prepare(' SELECT * FROM `lessontime` WHERE `id` = ? LIMIT 1 '); $stmt->bind_param('i', $id); $stmt->execute(); $result = $stmt->get_result(); if (!$result->num_rows) { throw new \UnexpectedValueException('No lesson time with this ID found'); } else { $data = $result->fetch_assoc(); return LessonTime::fillFromRowData($data); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function getLessonByID($lid) {\n\t\treturn dibi::fetch('SELECT * FROM lesson WHERE id=%i', $lid);\n\t}", "public static function getById($tid)\n {\n if (is_null($tid)) {return null;}\n if (!is_numeric($tid)) {return null;}\n $row = PDOwrapper::getRow(\n \"SELECT * FROM `timer` WHERE id=?\",\n array($tid)\n );\n if (($row == null) || (!$row)) {return null;}\n return new Timer($row);\n }", "public function getDtimeIdFromTime($time)\r\n {\r\n $hours_array = explode(':',$time);\r\n $format_array = explode(' ',$time);\r\n\r\n $minute_array = explode(':',$format_array[0]);\r\n $minute = (int)$minute_array[1];\r\n\r\n $fomat = $format_array[1]; //am (pm)\r\n\r\n if ($fomat == 'am' || $fomat == 'AM') {\r\n $hours = (int)$hours_array[0];\r\n } else {\r\n $hours = (int)$hours_array[0] + 12;\r\n }\r\n \r\n $collections = Mage::getModel('ddate/dtime')->getCollection();\r\n $i = 0;\r\n foreach ($collections as $collection) {\r\n if ($i == 0) {\r\n $default = $collection['dtime_id'];\r\n }\r\n $i++;\r\n \r\n $time_arange = $collection['interval'];\r\n $time_array = explode('-',$time_arange);\r\n \r\n $times_begin = explode(':',$time_array[0]);\r\n $times_end = explode(':',$time_array[1]);\r\n \r\n $hour_begin = (int)$times_begin[0];\r\n $minute_begin = (int)$times_begin[1];\r\n \r\n $hour_end = (int)$times_end[0];\r\n $minute_end = (int)$times_end[1];\r\n \r\n if ($hours >= $hour_begin && $hours <= $hour_end) {\r\n if ($hours == $hour_begin && $minute >= $minute_begin) {\r\n return $collection['dtime_id'];\r\n } else if ($hours == $hour_end && $minute <= $minute_end) {\r\n return $collection['dtime_id'];\r\n } else if ($hours > $hour_begin && $hours < $hour_end) {\r\n return $collection['dtime_id'];\r\n }\r\n }\r\n }\r\n \r\n return $default;\r\n }", "function getLessonTaskID($id)\n{\n $task_id = 0;\n\n foreach(json_decode($_SESSION['json_task_list']) as $task)\n {\n if($task->taskid == $id && !strcmp($task->type,\"L\"))\n $task_id = $task->id;\n }\n return $task_id;\n}", "public function getFirstTime();", "public function getIdtime()\n {\n return $this->idtime;\n }", "public function getResearchTimeAttribute();", "function getCurrentLessonID()\n{\n //Default lesson ID\n $lesson_id = 1;\n $current_task = $_SESSION['current_task']['ct_task_id'];\n $task_reached = false;\n\n foreach(json_decode($_SESSION['json_task_list']) as $task)\n {\n if($task->id == $current_task)\n $task_reached = true;\n\n // Iterate through lessons while current task is not reached\n if($task_reached == false && !strcmp($task->type,\"L\"))\n $lesson_id = $task->taskid;\n }\n return $lesson_id;\n}", "function getDetailTim($id_tim) {\r\n\t\treturn $this->db->query(\"SELECT * FROM tb_tim where id_tim='\".$id_tim.\"'\");\r\n\t}", "function wimtvpro_detail_showtime($single, $st_id) {\n if (!$single)\n return apiGetShowtimes();\n else\n return apiGetDetailsShowtime($st_id);\n}", "function caculateLessonTime($userID, $courseID, $lessonID) {\n global $DB;\n\n if ( !$lesson = $DB->get_record(\"lesson\", array(\"id\"=>$lessonID, \"course\"=>$courseID)) ) {\n return false;\n }\n if ( $all_lesson_timer =\n $DB->get_records_select(\"lesson_timer\", 'lessonid=\"'.$lessonID.'\" AND userid=\"'.$userID.'\"', \"starttime\")\n ) {\n $actionName = 'lesson';\n $actionTimeOrderArray = produceTimeInActionLog($userID, $courseID, $actionName, $lessonID);\n $courseActionTime = calculateActionInteTime($actionTimeOrderArray);\n } else {\n return false;\n }\n return $courseActionTime;\n}", "public function get_nightlife($id);", "function get_timestamp($id) {\n\t}", "public function fetch_time()\n {\n\n $timing = new Timer();\n $this->timer_id = $timing->create_timer_id();\n return $this->timer_id;\n\n }", "public function findOne($timechoice_id) {\n $timechoice = R::findOne('timechoice', ' id = :timechoice_id ', [':timechoice_id' => $timechoice_id]);\n \n return $timechoice;\n }", "function getSectionTime($sectionid) {\n\t$sql = \"SELECT intSectionTimeStart, intSectionTimeEnd, strDayPattern\n\t\tFROM tblSectionTime, tblSectionDayPattern\n\t\tWHERE tblSection.sectionID = $sectionid\";\n\t$result = $conn->query($sql);\n\treturn $result;\n}", "public function get_time_number()\n {\n return $this->time_number;\n }", "public function getByStartTime()\n {\n return $this->byStartTime;\n }", "public function getTime() {\n\t\t\treturn $this->$time;\n\t\t}", "public function index($timer_id){\n \tif (! is_null ( $timer_id )) {\n\t\t\t$timer = $this->listing->fetchAll(array('where' => 'timer_id = '.$timer_id));\n\t\t}\n\t\tvar_dump($timer);\n }", "public function nextLesson($id)\n {\n $next_lesson = $this->unorderedLessons()->where('previous_lesson_id', $id)->get();\n\n if(count($next_lesson) > 0){\n return $next_lesson[0];\n } else {\n return null;\n }\n }", "public function getLesson()\n {\n return $this->hasOne(Lesson::className(), ['id' => 'lesson_id']);\n }", "public function edit($id)\n {\n $time = Time::find($id);\n\n return view('settime.edit', compact('time'));\n }", "public function getStartTime(): ?string;", "public function getLessonScheduleInCourse($lesson) {\n $lesson = EfrontLesson::convertArgumentToLessonObject($lesson);\n\n $result = eF_getTableData(\"lessons_to_courses\", \"start_date, end_date\", \"courses_ID=\".$this -> course['id'].\" and lessons_ID=\".$lesson -> lesson['id']);\n return $result[0];\n }", "public function get_sfwd_lesson_id() {\n\t\treturn $this->sfwd_lesson_id;\n\t}", "public static function getItem($pid)\n {\n $timeArray = db_query(\"SELECT * FROM {project_timer_entry} WHERE pid = :pid\", array(':pid' => $pid))->fetchAssoc();\n $time_record = new TimeHandlers();\n $time_record->time_seconds = $timeArray['seconds'];\n $time_record->task = $timeArray['task'];\n $time_record->uid = $timeArray['uid'];\n $time_record->created = $timeArray['created'];\n $time_record->updated = $timeArray['updated'];\n $time_record->pid = $timeArray['pid'];\n \n return $time_record;\n }", "public function getStartTime();", "public function getStartTime();", "public function getLessonTiming($datetime, $duration) {\r\n if($this->toServerTime($datetime)>$this->timeExpression( 'now', false)) {\r\n return 'about_to_start';\r\n } else if( $this->timeExpression($this->toServerTime($datetime).' + '.$duration.' minute')>$this->timeExpression( 'now', false)) { //Lesson already started\r\n return 'in_process';\r\n } else {\r\n return 'overdue';\r\n }\r\n }" ]
[ "0.59335965", "0.5714264", "0.5672407", "0.56030566", "0.5538121", "0.5536551", "0.5515892", "0.54896224", "0.5488055", "0.5467798", "0.53865737", "0.5336739", "0.53286153", "0.53090876", "0.52676445", "0.5241956", "0.5192317", "0.5190275", "0.5173729", "0.5168989", "0.51415014", "0.5119198", "0.51114726", "0.5102335", "0.50869465", "0.50686693", "0.5067077", "0.50112706", "0.50112706", "0.5006406" ]
0.7178155
0
Returns an array of all lesson times
public function getLessonTimes() { $stmt = $this->db->prepare("SELECT * FROM `lessontime` ORDER BY `startTime`"); $stmt->execute(); $result = $stmt->get_result(); $lessonTimes = array(); if ($result->num_rows) { while ($row = $result->fetch_assoc()) { $lessonTimes[] = LessonTime::fillFromRowData($row); } } return $lessonTimes; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getTimes() {\n\t\t$data = array();\n\t\tfor ( $i = 0; $i < 24; $i ++ ) {\n\t\t\tforeach ( apply_filters( 'wd_scan_get_times_interval', array( '00', '30' ) ) as $min ) {\n\t\t\t\t$time = $i . ':' . $min;\n\t\t\t\t$data[ $time ] = apply_filters( 'wd_scan_get_times_hour_min', $time );\n\t\t\t}\n\t\t}\n\n\t\treturn apply_filters( 'wd_scan_get_times', $data );\n\t}", "public function get_times_array()\n {\n // use a defined function to get the rows we need.\n $results = $this->get_times();\n $time = [];\n\n // fill in the blank array using a foreach loop.\n foreach ($results as $row) $time[$row['id']] = $row['time'];\n return $time;\n }", "function getTimes()\n {\n $ret = array();\n $ret['nolimit']=_(\"no limit\"); \n foreach(array(1,2,4,8,12,24,36,48) as $i){\n if($i == 1){\n $ret[$i] = $i.\"&nbsp;\"._(\"hour\");\n }else{\n $ret[$i] = $i.\"&nbsp;\"._(\"hours\");\n }\n }\n return($ret);\n }", "public function getTimes()\r\n {\r\n\t $connection = Yii::app()->db;\r\n\t $sql = \"SELECT * FROM kilt_time\";\r\n\t $command = $connection->createCommand($sql);\r\n\t $data = $command->queryAll(); \r\n\t $times = array();\r\n\t foreach($data as $d)\r\n\t\t $times[$d['id']] = $d;\r\n\t return $times;\r\n }", "public function getScheduleTimes();", "public function _listAllTime(){\n return $this->timeDAO->listAllTimes();\n }", "public function getTimeList()\n {\n return $this->timeList;\n }", "public function getTimes ()\n {\n return $this->times;\n }", "public function getTimes()\n\t{\n\t\treturn $this->times;\n\t}", "public static function listTimeGenerators() {\r\n\t\treturn array('Time' => self::listMethods('Time') );\r\n\t}", "public function getWorkTime(): array\n {\n $this->checkAuthentication();\n\n $workTimeIndex = $this->client->request('GET', '/worktime/index?worktime=0');\n $html = $workTimeIndex->getBody();\n $regex = '#<tr class=\"(.*) confirmed\" .*\\s.*\\s.*?<td class=\"worktime-table-body-in\">(?<stampin>[\\d\\.\\s:]+)<\\/td>\\s.*<td class=\"worktime-table-body-out\">(?<stampout>[\\d\\.\\s:]+|None).*\\s.*<td class=\"worktime-table-body-daysum\">(?<daysum>.*?)<\\/td>\\s+<td class=\"worktime-table-head-sumday\">(?<monthsum>.*?)<\\/td>#';\n\n if (false != preg_match_all($regex, $html, $match)) {\n return [\n 'stampIn' => $match['stampin'],\n 'stampOut' => $match['stampout'],\n 'daySum' => $match['daysum'],\n 'monthSum' => $match['monthsum'],\n ];\n }\n\n return [];\n }", "function getTimeShifts()\n {\n $rawShift = DB::table('users')->find(Auth::user()->id)->shift;\n $listShiftId = explode('-', $rawShift);\n $shifts = DB::table('session')->whereIn('id', $listShiftId)->get()->toArray();\n return array_map(function ($shift) {\n $shiftStart = Carbon::parse($shift->start);\n $shiftEnd = Carbon::parse($shift->end);\n $start = $shiftStart->hour + $shiftStart->minute / 60; //hour unit\n $end = $shiftEnd->hour + $shiftEnd->minute / 60; //hour unit\n $spent = $end - $start;\n return [\n 'start' => $start,\n 'end' => $end,\n 'spent' => $spent\n ];\n }, $shifts);\n }", "public function getHoursArray(){\n $hours = array();\n for($i = 1 ; $i <= 12 ; $i++){\n $hours[$i.'am'] = ['Mon' => 0, 'Tue' => 0, 'Wed' => 0, 'Thu' => 0, 'Fri' => 0, 'Sat' => 0, 'Sun' => 0];\n }\n for($i = 1 ; $i <= 12 ; $i++){\n $hours[$i.'pm'] = ['Mon' => 0, 'Tue' => 0, 'Wed' => 0, 'Thu' => 0, 'Fri' => 0, 'Sat' => 0, 'Sun' => 0];\n }\n return $hours;\n }", "public function getTimes(){\n $temp = explode(' ', jdate());\n $date = $temp[0];\n $today = ReservedTimeDates::where('date' , '=' , $date)->first();\n $dates = ReservedTimeDates::where('id' , '>=' , $today->id)->get();\n\n\n return $this->showAll(($dates->pluck('date')->unique()));\n }", "public function getTimesCollection()\n {\n return collect($this->map(function (Transact $transact) {\n return $transact->getTime();\n }));\n }", "public function getResults()\n\t{\n\t\t$results = array();\n\n\t\tif(count($this->times) > 0)\n\t\t{\n\t\t\t$times = array_values($this->times);\n\n\t\t\tforeach($this->times as $key => $arr)\n\t\t\t{\n\t\t\t\tif(is_string($key))\n\t\t\t\t\t$results[$key] = $arr['elapsed'];\n\t\t\t\telse\n\t\t\t\t\t$results[] = $arr['elapsed'];\n\t\t\t}\n\n\t\t\t$first = reset($this->times);\n\t\t\t$last = end($this->times);\n\t\t\t$results['total_elapsed'] = $last['started'] - $first['finished'];\n\t\t}\n\n\t\treturn $results;\n\t}", "public static function getTours(){\n return $list = TourMapper::getTours();\n }", "static function getListHour(){\n\t\t$tHour = array();\n\t\t$j = 0;\n\t\t$k = 2;\n\t\tfor($i=0;$i<12;$i++){\n\t\t\t$oHour = new stdClass();\n\t\t\t$p =($j<10)? 0: null;\n\t\t\t$q =($k<10)? 0: null;\n\n\t\t\t$oHour->interval = $p.$j.'h - '.$q.$k.'h';\n\t\t\t$oHour->limit\t = $j.'/'.$k;\n\t\t\t$j = $j+2;\n\t\t\t$k = $k+2;\n\t\t\tarray_push($tHour, $oHour);\n\t\t}\n\t\treturn $tHour;\n\t}", "public static function retrieveCapTimes() {\n\t\treturn array(\n\t\t\t\tself::CAP_TIME_MINUTE => array(\n\t\t\t\t\t\t'name' => 'Minute',\n\t\t\t\t\t\t'seconds' => 60,\n\t\t\t\t),\n\t\t\t\tself::CAP_TIME_HOUR => array(\n\t\t\t\t\t\t'name' => 'Hour',\n\t\t\t\t\t\t'seconds' => 3600\n\t\t\t\t),\n\t\t\t\tself::CAP_TIME_DAY => array(\n\t\t\t\t\t\t'name' => 'Day',\n\t\t\t\t\t\t'seconds' => 86400\n\t\t\t\t)\n\t\t);\n\t}", "public function getTimesArray($day)\n {\n $res = array();\n $startTime = date(strtotime($day . \" 00:00\"));\n $endTime = date(strtotime($day . \" 23:45\"));\n\n $timeDiff = round(($endTime - $startTime) / 60 / 60);\n\n $startHour = date(\"G\", $startTime);\n $endHour = $startHour + $timeDiff;\n\n for ($i = $startHour; $i <= $endHour; $i++) {\n for ($j = 0; $j <= 45; $j+=15) {\n $time = $i . \":\" . str_pad($j, 2, '0', STR_PAD_LEFT);\n $res[] = (date(strtotime($day . \" \" . $time)) <= $endTime) ? date(\"H:i:s\", strtotime($day . \" \" . $time)) : \"\";\n }\n }\n return array_filter($res);\n }", "public function timetable()\n {\n $args = [\n 'post_status' => 'publish',\n 'post_type' => 'program',\n 'posts_per_page' => -1,\n ];\n\n $programs = get_posts($args);\n $data = [];\n\n $x = 0;\n foreach($programs as $p){\n $data[$x]['class_name'] = $p->post_title;\n $data[$x]['program_link'] = get_permalink($p->ID);\n //$meta = get_post_meta($p->ID);\n $data[$x]['ages'] = get_post_meta($p->ID, '_cmb_program_options__cmb_program_options_suitable_ages', true);\n $data[$x]['day_times'] = get_post_meta($p->ID, '_cmb_program_options__cmb_program_options_classes', true);\n $x++;\n }\n\n $days = array(\n \"monday\",\n \"tuesday\",\n \"wednesday\",\n \"thursday\",\n \"friday\",\n \"saturday\",\n \"sunday\"\n );\n\n $timetable = [];\n\n foreach($days as $day) {\n foreach ($data as $d) {\n $result = false;\n if(array_key_exists('day_times', $d)){\n if(!empty($d['day_times'])){\n\n foreach($d['day_times'] as $class){\n if($day == $class['day_of_week']){\n $d['class'] = $class;\n unset($d['day_times']);\n $timetable[ucfirst($day)][] = $d;\n }\n }\n }\n }\n }\n }\n\n return $timetable;\n\n }", "function get_lab_times(){\n\t\t$completed_query = $this->db->query(\"SELECT `session`.`treatment_id` FROM `session`,`session_members`,`user` WHERE `session_members`.`user_id` = `user`.`id` AND `session`.`end_time` <> 0 AND `session_members`.`session_id` = `session`.`id` AND `user`.`email` = '\" . $this->session->userdata('email') . \"'\");\n\t\tif($completed_query->num_rows()>0){ // user has completed at least one treatment\n\t\t\tforeach ($completed_query->result_array() as $row) {\n\t\t\t $completed[] = $row['treatment_id'];\n\t\t\t}\n\t\t\t//$exclusion_str = \"(\" . implode(\",\",$completed) . \")\";\n\t\t\t$exclusion_str = \"(0)\";\n\n\t\t\t// grab all the labs that are not closed yet, grab the dates in UTC format\n\t\t\t$open_lab_query = $this->db->query(\"SELECT `id`,`treatment_ids`, UNIX_TIMESTAMP(`open_time`) AS 'open', UNIX_TIMESTAMP(`close_time`) AS 'close' FROM `schedule` WHERE `close_time` > NOW() ORDER BY 'open'\");\n\t\t\tif($open_lab_query->num_rows()>0){ // there are open lab times\n\t\t\t\tforeach ($open_lab_query->result_array() as $row3) {\n\t\t\t\t\t//$row['treatment_ids']\n\t\t\t\t\t// see if this lab includes a treatment that this user has yet to complete\n\t\t\t\t\t$available_query = $this->db->query(\"SELECT * FROM `treatment` WHERE `treatment`.`id` IN \" . $row3['treatment_ids'] . \" AND `treatment`.`id` NOT IN $exclusion_str\");\n\t\t\t\t\tif($available_query->num_rows()>0){ // there are available treatments in this lab\n\t\t\t\t\t\tforeach ($available_query->result_array() as $row2) {\n\t\t\t\t\t\t $treatments[] = $row2['id'];\n\t\t\t\t\t\t if(in_array($row2['id'], $completed)){\n\t\t\t\t\t\t \t\t$closed_array[] = 1;\n\t\t\t\t\t\t } else {\n\t\t\t\t\t\t \t\t$closed_array[] = 0;\n\t\t\t\t\t\t }\n\t\t\t\t\t\t //$controllers[] = \n\t\t\t\t\t\t}\n\t\t\t\t\t\t$treatments_str = \"(\" . implode(\",\",$treatments) . \")\";\n\t\t\t\t\t\t$available[$row3['id']]['treatment_ids'] = $treatments_str;\n\n\t\t\t\t\t\t$closed_str = \"(\" . implode(\",\", $closed_array) . \")\";\n\t\t\t\t\t\t$available[$row3['id']]['closed'] = $closed_str;\n\n\t\t\t\t\t\t$available[$row3['id']]['open_time'] = $row3['open'];\n\t\t\t\t\t\t$available[$row3['id']]['close_time'] = $row3['close'];\n\t\t\t\t\t\t$available[$row3['id']]['controller'] = $row3['close'];\n\t\t\t\t\t} else { // no available treatments\n\t\t\t\t\t\t// do nothing\n\t\t\t\t\t}\n\t\t\t\t\t$treatments = array();\n\t\t\t\t\t$closed_array = array();\n\t\t\t\t}\n\n\t\t\t\t// see if there are any available lab times\n\t\t\t\tif(isset($available)){\n\t\t\t\t\treturn $available;\n\t\t\t\t} else {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t} else { // there are no open lab times\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t\n\t\t} else { // user has not completed any treatments\n\t\t\t$open_lab_query = $this->db->query(\"SELECT `id`,`treatment_ids`, UNIX_TIMESTAMP(`open_time`) AS 'open', UNIX_TIMESTAMP(`close_time`) AS 'close' FROM `schedule` WHERE `close_time` > NOW() ORDER BY 'open'\");\n\t\t\tif($open_lab_query->num_rows()>0){\n\t\t\t\tforeach ($open_lab_query->result_array() as $row3) {\n\t\t\t\t\t$available[$row3['id']]['treatment_ids'] = $row3['treatment_ids'];\n\t\t\t\t\t$available[$row3['id']]['open_time'] = $row3['open'];\n\t\t\t\t\t$available[$row3['id']]['close_time'] = $row3['close'];\n\t\t\t\t}\n\t\t\t\treturn $available;\n\t\t\t} else {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t}", "public static function getTimeIntervals()\n {\n return self::$timeIntervals;\n }", "public function getTime() {\r\n return explode( ':', $this->format( 'H:i:s' ));\r\n }", "function get_hours($t) {\r\n\t\t$str = \"{$t}_start, {$t}_end\";\r\n\t\t$this->db->select($str);\r\n\t\t$Q = $this->db->get('hours');\r\n\t\t\r\n\t\t$hours = array();\r\n\t\tforeach ($Q->result_array() as $hr) {\r\n\t\t\t$hours[] = $hr[$t . '_start'] . ' to ' . $hr[$t . '_end'];\t\r\n\t\t}\r\n\t\t\r\n\t\treturn $hours;\r\n\t}", "public function getTimeLogs(): array\n {\n return $this->timeLogs;\n }", "public function getAccessibleTimeIds(): array;", "public function get_periodic_time()\n {\n\n $all_periodic_time= array(\n \n '5' =>'every 5 mintues',\n '10' =>'every 10 mintues',\n '15' =>'every 15 mintues',\n '30' =>'every 30 mintues',\n '60' =>'every 1 hours',\n '120'=>'every 2 hours',\n '300'=>'every 5 hours',\n '600'=>'every 10 hours',\n '900'=>'every 15 hours',\n '1200'=>'every 20 hours',\n '1440'=>'every 24 hours',\n '2880'=>'every 48 hours',\n '4320'=>'every 72 hours',\n );\n return $all_periodic_time;\n }", "public static function timestampsAndSapWeeks()\n {\n return [\n ['2018-10-19 08:09:10', '201842'],\n ['1907-12-31 09:10:11', '190801'],\n ['1908-12-31 10:11:12', '190853'],\n ['1909-12-31 11:12:13', '190952'],\n ['1910-12-31 12:13:14', '191052'],\n ['1911-12-31 13:14:15', '191152'],\n ['1912-12-31 14:15:16', '191301']\n ];\n }", "public function timeslots()\n\t{\n\t\treturn $this->hasMany('App\\Timeslot');\n\t}" ]
[ "0.73774993", "0.71763116", "0.7138246", "0.71138555", "0.6829815", "0.65974194", "0.6558628", "0.6518413", "0.65053576", "0.64678663", "0.63413227", "0.6321329", "0.6202663", "0.6196578", "0.6171982", "0.61415863", "0.61392254", "0.6102337", "0.6085183", "0.60841465", "0.6030896", "0.603042", "0.6021856", "0.59890383", "0.59852576", "0.5969204", "0.5968034", "0.5965791", "0.59344774", "0.59150743" ]
0.83255106
0
Updates or creates a lesson time
public function save(\inc\model\LessonTime $lessonTime) { if (!$lessonTime->id) { $stmt = $this->db->prepare(" INSERT INTO `lessontime` (`startTime`, `endTime`) VALUES ( ?, ? ) "); $stmt->bind_param( 'ss', $lessonTime->startTime->format('H:i:s'), $lessonTime->endTime->format('H:i:s') ); } else { $stmt = $this->db->prepare(" UPDATE `lessontime` SET `startTime`= ?, `endTime` = ? WHERE `id` = ? "); $stmt->bind_param( 'ssi', $lessonTime->startTime->format('H:i:s'), $lessonTime->endTime->format('H:i:s'), $lessonTime->id ); } $stmt->execute(); if (!$lessonTime->id) { $lessonTime->id = $this->db->insert_id; } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function setTime()\n {\n // set create time\n if (isset($this->_autoTime) && !empty($this->_autoTime) && in_array($this->_autoTime, $this->field)) {\n $this->_default[$this->_autoTime] = time();\n }\n // set update time\n if (isset($this->_autoUpdate) && !empty($this->_autoUpdate) && in_array($this->_autoUpdate, $this->field)) {\n $this->_default[$this->_autoUpdate] = time();\n }\n }", "function setTime($date){\r\n\r\n\t}", "public function updateTime(){\r\n\t\t$date = new DateTime();\r\n\t\t$this->_lastUpdate = date_timestamp_get($date);\t\t\r\n\t}", "protected function setWorkingTime(){\n global $wpdb;\n $sql = \"SELECT COUNT(*) FROM $this->tableName\";\n $numRows = $wpdb->get_var($sql);\n\n if($numRows == 0):\n\n //insert default working time\n $data = array('open_time' => '06:00:00', 'close_time' => '23:00:00');\n $wpdb->insert($this->tableName, $data);\n\n endif;\n }", "function caculateLessonTime($userID, $courseID, $lessonID) {\n global $DB;\n\n if ( !$lesson = $DB->get_record(\"lesson\", array(\"id\"=>$lessonID, \"course\"=>$courseID)) ) {\n return false;\n }\n if ( $all_lesson_timer =\n $DB->get_records_select(\"lesson_timer\", 'lessonid=\"'.$lessonID.'\" AND userid=\"'.$userID.'\"', \"starttime\")\n ) {\n $actionName = 'lesson';\n $actionTimeOrderArray = produceTimeInActionLog($userID, $courseID, $actionName, $lessonID);\n $courseActionTime = calculateActionInteTime($actionTimeOrderArray);\n } else {\n return false;\n }\n return $courseActionTime;\n}", "public function completed_lessons() {\n\n $this->layout = 'student';\n $user_id = $this->Auth->user('id');\n $this->set('user_id', $user_id);\n $completed_lesson = $this->Calendar->find('all', array('conditions' => array('Calendar.user_id' => $this->Auth->user('id'), 'OR' => array('Calendar.completed_type' => array('student_no_show', 'markcompleted', 'same_day_cancellation')), 'deleted !=' => 'yes'), 'order' => array('Calendar.modified' => 'ASC')));\n $this->set('completed_lesson', $completed_lesson);\n $total = 0;\n if (!empty($completed_lesson)) {\n foreach ($completed_lesson as $completed) {\n $schedule_time = $completed['Calendar']['schedule_time'];\n $teacher = $this->User->findById($completed['Calendar']['teacher_id']);\n $total += $schedule_time;\n }\n\n if ($total <= 30) {\n $total_time = $total . '-Minutes';\n } else {\n $total_time = ($total / 60);\n\n if ($total_time <= 1) {\n $total_time = $total_time . '-Hour';\n } else {\n $total_time = $total_time . '-Hours';\n }\n }\n if (!empty($total_time)) {\n $this->set('total_time', $total_time);\n }\n\n\n $total_time_2_convert = 0;\n if (!empty($completed_lesson)) {\n foreach ($completed_lesson as $key => $completed_les) {\n $time = $completed_les['Calendar']['schedule_time'];\n $total_time_2_convert += $time;\n if ($time >= '60') {\n $set_time = $this->secondsToTime($time);\n if (!empty($set_time['min']) && !empty($set_time['second'])) {\n $completed_lesson[$key]['converted_time'] = $set_time['min'] . ' Hours ' . $set_time['second'] . ' Minutes';\n } elseif (!empty($set_time['min']) && empty($set_time['second'])) {\n $completed_lesson[$key]['converted_time'] = $set_time['min'] . ' Hours ';\n } elseif (empty($set_time['min']) && !empty($set_time['second'])) {\n $completed_lesson[$key]['converted_time'] = $set_time['second'] . ' Minutes';\n } else {\n $completed_lesson[$key]['converted_time'] = '-';\n }\n } else {\n $completed_lesson[$key]['converted_time'] = $time . ' Minutes';\n }\n }\n $this->set('completed_lesson', $completed_lesson);\n }\n\n $set_tim = $this->secondsToTime($total_time_2_convert);\n $this->set('set_time', $set_tim);\n\n if (!empty($teacher)) {\n $name = ucfirst($teacher['User']['first_name']) . ' ' . ucfirst($teacher['User']['last_name']);\n $this->set('teacher_name', $name);\n }\n }\n $total_minutes = $this->Payment->find('all', array('conditions' => array('Payment.user_id' => $this->Auth->user('id'))));\n $total_min = 0;\n $total_hour = '';\n foreach ($total_minutes as $minutes) {\n $min = $minutes['Payment']['total_time'];\n $total_min += $min;\n $total_left = $total_min - $total;\n $total_hour = $total_left / 60;\n if ($total_hour <= 1) {\n $total_hour = $total_hour . '-Hour';\n } elseif ($total_hour > 1) {\n $total_hour = $total_hour . '-Hours';\n }\n }\n\n if (!empty($total_hour)) {\n $this->set('total_hour', $total_hour);\n }\n }", "public function add() {\n if($this->Auth->user('role') != 'admin') {\n $this->Session->setFlash(__('Only admins can add lessons'));\n return $this->redirect('/lessons');\n }\n $teachers = $this->User->findAllByRole('teacher');\n $this->set(compact('teachers'));\n if ($this->request->is('post')) {\n $post = $this->request->data;\n $data = array(\n 'name' => $post['lesson-name'],\n 'date_start' => date('Y-m-d',\n strtotime($post['lesson-date_start'])),\n 'date_end' => date('Y-m-d',\n strtotime($post['lesson-date_end'])),\n 'created_at' => date('Y-m-d'),\n 'updated_at' => date('Y-m-d'),\n 'user_id' => $post['user_id']\n );\n\n\n if (isset($post['lesson-is_active'])) {\n $data['is_active'] = $post['lesson-is_active'];\n }\n if ($this->Lesson->save($data)) {\n $this->Session->setFlash(__('The lesson has been saved'));\n } else {\n $errors = $this->Lesson->invalidFields();\n $values = $this->request->data;\n $this->set(compact('errors', 'values'));\n $this->Session->setFlash(__('There were problems saving the\n lesson'));\n }\n }\n }", "public function actionCreate()\n {\n $model = new Timetable;\n $modelLessons = [new TimetableLesson];\n\n if ($model->load(Yii::$app->request->post())) {\n\n $modelLessons = Model::createMultiple(TimetableLesson::className());\n Model::loadMultiple($modelLessons, Yii::$app->request->post());\n\n // validate all models\n $valid = $model->validate();\n $valid = Model::validateMultiple($modelLessons) && $valid;\n\n if ($valid) {\n $transaction = \\Yii::$app->db->beginTransaction();\n\n try {\n if ($flag = $model->save(false)) {\n foreach ($modelLessons as $lesson) {\n $lesson->timetable_id = $model->id;\n if (! ($flag = $lesson->save(false))) {\n $transaction->rollBack();\n break;\n }\n }\n }\n\n if ($flag) {\n $transaction->commit();\n \n Yii::$app->session->setFlash('success', 'Расписание на <strong>\"' . $model->date . '\"</strong>, для группы <strong>\"' . $model->group->name . '\"</strong> успено добавлено.');\n \n return $this->redirect(['index']);\n\n //return $this->redirect(['view', 'id' => $model->id]);\n }\n } catch (Exception $e) {\n $transaction->rollBack();\n }\n }\n }\n\n return $this->render('create', [\n 'model' => $model,\n 'modelLessons' => (empty($modelLessons)) ? [new TimetableLesson] : $modelLessons\n ]);\n }", "public function update_activity_time () {\n # update\n try { $this->Database->updateObject(\"users\", array(\"lastActivity\"=>date(\"Y-m-d H:i:s\"), \"id\"=>$this->user->id)); }\n catch (Exception $e) { }\n }", "public function set_examwise()\n {\n if (!get_permission('exam_timetable', 'is_add') && !$this->get_exam_privilege()) {\n access_denied();\n }\n\n $branchID = $this->application_model->get_branch_id();\n if ($_POST) {\n $examID = $this->input->post('exam_id');\n $classID = $this->input->post('class_id');\n $sectionID = $this->input->post('section_id');\n $this->data['exam_id'] = $examID;\n $this->data['class_id'] = $classID;\n $this->data['section_id'] = $sectionID;\n $this->data['subjectassign'] = $this->timetable_model->getSubjectExam($classID, $sectionID, $examID, $branchID);\n }\n $this->data['branch_id'] = $branchID;\n $this->data['title'] = translate('add') . \" \" . translate('schedule');\n $this->data['sub_page'] = 'timetable/set_examwise';\n $this->data['main_menu'] = 'exam_timetable';\n $this->data['headerelements'] = array(\n 'css' => array(\n 'vendor/bootstrap-timepicker/css/bootstrap-timepicker.css',\n ),\n 'js' => array(\n 'vendor/bootstrap-timepicker/bootstrap-timepicker.js',\n ),\n );\n $this->load->view('layout/index', $this->data);\n }", "public function update(Request $request, Lesson $lesson)\n {\n \n $this->validate(request(), [\n\n 'week_start' => 'required|integer|between:1,8',\n 'duration' => 'required|integer|between:1,8',\n 'title' => 'required|string'\n\n ]);\n\n $lesson->week_start = request('week_start');\n $lesson->duration = request('duration');\n $lesson->title = request('title');\n\n $lesson->save();\n\n return redirect('/lessons/' . $lesson->id);\n }", "public function thematic_advance_save()\n {\n $_course = api_get_course_info();\n\n // definition database table\n $tbl_thematic_advance = Database::get_course_table(TABLE_THEMATIC_ADVANCE);\n\n // protect data\n $id = intval($this->thematic_advance_id);\n $thematic_id = intval($this->thematic_id);\n $attendance_id = intval($this->attendance_id);\n $content = $this->thematic_advance_content;\n $start_date = $this->start_date;\n $duration = intval($this->duration);\n $user_id = api_get_user_id();\n\n $last_id = null;\n if (empty($id)) {\n // Insert\n $params = [\n 'c_id' => $this->course_int_id,\n 'thematic_id' => $thematic_id,\n 'attendance_id' => $attendance_id,\n 'content' => $content,\n 'start_date' => api_get_utc_datetime($start_date),\n 'duration' => $duration,\n 'done_advance' => 0\n ];\n $last_id = Database::insert($tbl_thematic_advance, $params);\n\n if ($last_id) {\n $sql = \"UPDATE $tbl_thematic_advance SET id = iid WHERE iid = $last_id\";\n Database::query($sql);\n\n api_item_property_update(\n $_course,\n 'thematic_advance',\n $last_id,\n \"ThematicAdvanceAdded\",\n $user_id\n );\n }\n } else {\n $params = [\n 'thematic_id' => $thematic_id,\n 'attendance_id' => $attendance_id,\n 'content' => $content,\n 'start_date' => api_get_utc_datetime($start_date),\n 'duration' => $duration\n ];\n\n Database::update(\n $tbl_thematic_advance,\n $params,\n ['id = ? AND c_id = ?' => [$id, $this->course_int_id]]\n );\n\n api_item_property_update(\n $_course,\n 'thematic_advance',\n $id,\n \"ThematicAdvanceUpdated\",\n $user_id\n );\n }\n\n return $last_id;\n }", "public function saveTaskTimer($task_id, $time_spent, $breaks, $time_ended){\r\n\t\t$query = \"UPDATE \".$this->table_task.\" SET end_date=?, time_spent=?, breaks=?, status=2, type='timer' WHERE task_id=?\";\r\n\t\t$stmt = $this->con->prepare($query);\r\n\t\t$stmt->bindParam(1,$time_ended);\r\n\t\t$stmt->bindParam(2,$time_spent);\r\n\t\t$stmt->bindParam(3,$breaks);\r\n\t\t$stmt->bindParam(4,$task_id);\r\n\r\n\t\tif($stmt->execute()){\r\n\t\t\techo '<script language=\"javascript\">';\r\n\t\t\techo 'alert(\"Success\")';\r\n\t\t\techo '</script>';\r\n\t\t}else{\r\n\t\t\techo \"failed\";\r\n\t\t}\t\r\n\t}", "public function testCreateTimeEntry()\n {\n $user = factory(User::class)->make();\n $this->be($user);\n $client = factory(Client::class)->make();\n $workspace = factory(Workspace::class)->make();\n $project = factory(Project::class)->make();\n $response = $this->call('POST', '/timer',\n array(\n '_token' => csrf_token(),\n 'data' => [\n 'workspaceID' => $workspace->id,\n 'projectID' => $project->id,\n 'userID' => $user->id,\n 'clientID' => $client->id,\n 'startTime' => '2017-7-12 22:42:00',\n 'endTime' => '2017-7-12 22:50:00',\n 'billable' => false,\n 'description' => 'Description for Timer 1',\n ]\n ));\n $this->assertEquals(200, $response->getStatusCode());\n $this->assertDatabaseHas('time_entries', [\n 'description' => 'Description for Timer 1'\n ]);\n $data = json_decode($response->getContent(), true);\n $this->assertEquals('success', $data['status']);\n }", "public function updateProjectTime($id, $time)\n\t{\n\t\t$sql = array('hours_worked' => new \\Zend\\Db\\Sql\\Expression('hours_worked+'.$time));\n\t\treturn $this->update('projects', $sql, array('id' => $id));\t\t\n\t}", "public function update(User $user, Time $time)\n {\n }", "public function setTime()\n {\n $this->send(\"SETT,\".date(\"H,i\"));\n }", "public function editAction($timeid) {\n $this->require_login('admin', $this->Url('time/index'));\n $gump = $this->getGump();\n $errors = null;\n \n // get time object\n if (!$timeid) {\n $time = \\ORM::for_table('traintime')->create();\n $time->id = 0;\n $time->time = time();\n } else {\n $time = \\ORM::for_table('traintime')->find_one($timeid);\n }\n \n // process data\n if ($request = $this->getRequest()) {\n if (!empty($request['cancel'])) {\n $this->redirect($this->Url('time/index'));\n }\n \n $gump->validation_rules(array(\n 'time' => 'required|time', \n ));\n if ($validated_data = $gump->run($request)) {\n $time->time = $request['time'];\n $time->save();\n $this->redirect($this->Url('time/index'));\n }\n $errors = $gump->get_readable_errors();\n }\n\n // Form\n $form = new \\stdClass;\n $form->time = $this->form->time('time', 'Service time', $time->time);\n $form->buttons = $this->form->buttons();\n \n // display form\n $this->View('time_edit', array(\n 'newtime' => $timeid == 0,\n 'time' => $time,\n 'form' => $form,\n 'errors' => $errors,\n ));\n }", "public function testTimeStatusSave()\n {\n\n // Create item, exhibit, and record.\n $item = $this->helper->_createItem();\n $neatline = $this->helper->_createNeatline();\n $record = new NeatlineDataRecord($item, $neatline);\n\n // Form the POST for a space change.\n $this->request->setMethod('POST')\n ->setPost(array(\n 'item_id' => $item->id,\n 'neatline_id' => $neatline->id,\n 'space_or_time' => 'time',\n 'value' => 'true'\n )\n );\n\n // Hit the route.\n $this->dispatch('neatline-exhibits/editor/status');\n\n // Re-get the record.\n $record = $this->_recordsTable->getRecordByItemAndExhibit($item, $neatline);\n\n // Time status should be true, space status unchanged.\n $this->assertEquals($record->time_active, 1);\n $this->assertEquals($record->space_active, 0);\n\n }", "public function set_times_been_taught_by($number, $week_number, $section_id) {\n // select database\n $sql = \"SELECT *\n FROM course_sections \n WHERE course_id=$this->course_id \n AND week_number=$week_number \n AND section_id=$section_id;\";\n $result = mysqli_query($this->connect_to_db, $sql);\n if (!$result) {\n die('Select failed: '.mysqli_error($this->connect_to_db));\n }\n\n if (mysqli_fetch_row($result)) { // if exist, update\n // update database\n $sql = \"UPDATE course_sections\n SET times_been_taught=$number \n WHERE course_id=$this->course_id \n AND week_number=$week_number \n AND section_id=$section_id;\";\n $result = mysqli_query($this->connect_to_db, $sql);\n if (!$result) {\n die('Update failed: '.mysqli_error($this->connect_to_db));\n }\n\n } else { // if does not exist, insert\n // insert database\n $sql = \"INSERT INTO course_sections (course_id, section_id, times_been_taught, week_number)\n VALUES ('$this->course_id','$section_id','$number','$week_number');\";\n $result = mysqli_query($this->connect_to_db, $sql);\n if (!$result) {\n die('Insert failed: '.mysqli_error($this->connect_to_db));\n }\n }\n }", "public function setTime($T)\n{\n $this -> Stardate = $T + 1420092377704080000 ;\n return $this -> Stardate ;\n}", "public function edit(Times $times)\n {\n //\n }", "function livewebteaching_update_instance($livewebteaching) {\n\n $livewebteaching->timemodified = time();\n $livewebteaching->id = $livewebteaching->instance;\n\n\tif (! isset($livewebteaching->wait)) {\n\t\t$livewebteaching->wait = 1;\n\t}\n\n\n # You may have to add extra stuff in here #\n\n return update_record('livewebteaching', $livewebteaching);\n}", "public function updateTimeTable($request) {\n\n\t\t$timetablexteacher = TimeTablexTeacher::where('IdHorario', $request['idT'])->get();\n\n\t\tfor($j=0; $j<count($timetablexteacher); $j++){\n\t\t\t\t\t$presente = false;\n\t\t\t\t\tfor($z=0; $z<count($_REQUEST['teacher']);$z++){\n\t\t\t\t\t\tif($timetablexteacher[$j]->IdDocente == $_REQUEST['teacher'][$z]){\n\t\t\t\t\t\t\t$presente = true;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif($presente== false){\n\t\t\t\t\t\t$txt = TimeTablexTeacher::where('IdHorarioxDocente', $timetablexteacher[$j]->IdHorarioxDocente)->first();\n \t\t\t\t$txt->delete();\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t}\n\n\n\t\tfor ($i=0; $i<count($_REQUEST['teacher']); $i++)\n\t\t{\n\t\t\t$timetableteacher = TimeTablexTeacher::where('IdHorario', $request['idT'])\n\t\t\t\t\t\t\t\t\t\t\t\t ->where('IdDocente', $_REQUEST['teacher'][$i])\n\t\t\t\t\t\t\t\t\t\t\t\t ->get();\n\t\t\t\n\t\t\tif(count($timetableteacher) == 0){\n\t\t\t\t$TimeTablexTeacher = TimeTablexTeacher::create([\n\t\t\t\t\t'IdHorario' => $request['idT'],\n\t\t\t\t\t'IdDocente' =>$_REQUEST['teacher'][$i],\n\t\t\t\t]);\n\t\t\t}\t\n\t\t}\n\n\n\t}", "public function setTime($time)\n {\n $this->time = $time;\n }", "public function setTime($time)\n {\n $this->time = $time;\n }", "public function update(Request $request, $id)\n {\n $request->validate([\n 'day_ku_night'=>'required',\n 'day_of_week_start'=>'required',\n 'time_start'=>'required',\n 'day_of_week_stop'=>'required',\n 'time_stop'=>'required',\n 'announce'=> 'required',\n ]);\n\n $time = Time::find($id);\n\n $time->day_ku_night = $request->get('day_ku_night');\n $time->day_of_week_start = $request->get('day_of_week_start');\n $time->time_start = $request->get('time_start');\n $time->day_of_week_stop = $request->get('day_of_week_stop');\n $time->time_stop = $request->get('time_stop');\n $time->announce = $request->get('announce');\n\n $time->save();\n\n return redirect('/settime')->with('success', 'บันทึกสำเร็จ');\n }", "public function setLessonScheduleInCourse($lesson, $fromTimestamp, $toTimestamp) {\n $lesson = EfrontLesson::convertArgumentToLessonObject($lesson);\n\n $fields = array(\"start_date\" => $fromTimestamp, \"end_date\" => $toTimestamp);\n $where = \"courses_ID=\".$this -> course['id'].\" and lessons_ID=\".$lesson -> lesson['id'];\n self::persistCourseLessons($fields, $where);\n }", "public function setTime($time)\r\n {\r\n $this->_time = $time;\r\n }", "public function updatetasks ($task_id , $description , $date , $duration_mins , $daytime , $course_id ) {\n return ($this -> restfullDAO -> updatetasks ($task_id , $description , $date , $duration_mins , $daytime , $course_id ));\n }" ]
[ "0.58654505", "0.5773755", "0.5753262", "0.5689604", "0.5603523", "0.55924743", "0.55838174", "0.5575226", "0.5559503", "0.552647", "0.5518702", "0.5482116", "0.54764485", "0.5460552", "0.54602677", "0.5420082", "0.541655", "0.5384436", "0.53459495", "0.5340735", "0.5337248", "0.53181636", "0.5314336", "0.5313896", "0.5310665", "0.5310665", "0.5304602", "0.530265", "0.5279678", "0.5273271" ]
0.68611455
0
Deletes a lesson time
public function delete($id) { $stmt = $this->db->prepare("DELETE FROM `lessontime` WHERE `id` = ?"); $stmt->bind_param('i', $id); $stmt->execute(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function delete()\n {\n parent::delete();\n\n // when no other times exist, delete the parent record\n $otherTimes = self::findByTrackingId($this->trackingId);\n if (!$otherTimes) {\n $tracking = TimeTrackingModel::findByPk($this->trackingId);\n echo \"<pre>\";\n print_r($tracking->id);\n exit;\n\n $tracking->delete();\n }\n }", "public function delete()\n\t{\n\t\t$obj = request()->all();\n\t\t$client = new Client(strtolower($obj['title']));\n\t\t$json = json_decode($client->getEvents(), true);\n\n\t\tforeach($json as $id => $event){\n\t\t\tif($event['start'] == $obj['start'] && $event['end'] == $obj['end']){\n\t\t\t\tunset($json[$id]);\n\t\t\t\t$json = array_values($json);\n\t\t\t\t$client->putEvents(json_encode($json, JSON_PRETTY_PRINT));\n\t\t\t\treturn 'Lesson Removed Successfully!';\n\t\t\t}\n\t\t}\n\n\t\treturn \"Unable to remove Lesson, check client's name and retry!\";\n\t}", "public function _deleteTime($idTime){\n return $this->timeDAO->deleteTime($idTime);\n }", "public function deleted(EduLesson $lesson)\n {\n //\n }", "public function delete($timechoice_id = null) {\n if(!is_null($timechoice_id)) {\n $timechoice = R::load('timechoice', $timechoice_id);\n R::trash($timechoice);\n }\n }", "public function remove_time() {\n\n\t\t$id = request()->id;\n\n\t\t$store_time = StorePreparationTime::find($id);\n\n\t\tif ($store_time) {\n\t\t\t$store_time->delete($id);\n\t\t}\n\n\t\treturn json_encode(['success' => true]);\n\n\t}", "public function deleteDuplicate(Lesson $lesson);", "public function lesson_delete($id = 0)\n {\n $lesson = $this->streams->entries->get_entry($id, 'lesson', 'streams');\n if($lesson){\n $this->streams->entries->delete_entry($id, 'lesson', 'streams');\n $this->session->set_flashdata('success', lang('pyrocourse:lesson_deleted'));\n \n redirect('admin/course/manage/'.$lesson->course_id);\n } else {\n $this->session->set_flashdata('error', lang('pyrocourse:error_lesson_deleted'));\n \n redirect(getenv('HTTP_REFERER'));\n }\n }", "public function destroy(HorarioTreinoTime $horarioTreinoTime)\n {\n //\n }", "public function deleted(Hours $hours)\r\n {\r\n $volunteer = $hours->volunteer;\r\n // points\r\n $new_points = $volunteer->points - $hours->points;\r\n $volunteer->points = $new_points;\r\n // minutes\r\n $new_minutes = $volunteer->minutes - $hours->minutes;\r\n $volunteer->minutes = $new_minutes;\r\n $volunteer->save();\r\n }", "public function delete_single_timeslot($id){\n $data= array(\n 'timeid' => $id ,\n );\n $query = $this->db->delete('facultyavailablity',$data);\n return $query; \n //delete from user where userid='$user_id'\n \n }", "public function delete()\n\t{\n\t\t\\App\\Db::getInstance('admin')->createCommand()\n\t\t\t->delete('s_#__business_hours', ['id' => $this->getId()])\n\t\t\t->execute();\n\t\t\\App\\Cache::clear();\n\t}", "public function delete($key)\n {\n unset($this->times[$key]);\n }", "function timelinetest_delete_instance($id) {\n global $DB;\n\n $DB->delete_records('timelineoptions', array('timelinetestid'=>$id));\n $DB->delete_records('timelinephases', array('timelinetestid'=> $id));\n $DB->delete_records('timelineattemptlog', array('timelinetestid'=>$id));\n $DB->delete_records('timelinetotalmark', array('timelinetestid'=>$id));\n $DB->delete_records('timelinetest', array('id'=> $id));\n\n return true;\n}", "public function destroy($id)\n {\n try {\n\n $time = (new Time())->getById($id);\n\n /** Caso o time em questão esteja associado a um jogo, não é possível remove-lo */\n if ($time->isInGame()) {\n throw new \\Exception(\"Time associado a algum jogo em um campeonato não pode ser removido\");\n }\n\n if ($time->delete()) {\n return redirect('times')->with('success', 'Time removido com sucesso');\n }\n } catch (\\Exception $e) {\n return redirect('times')->with('error', $e->getMessage());\n }\n }", "public function delete(){\r\n\t\tglobal $DB;\r\n\t\t\t$sql = \"DELETE FROM timekeeper WHERE id = {$this->id}\";\r\n\t\treturn $DB->no_result($sql);\r\n\t}", "protected static function delete_stats_hour(){\n\n\t\t$current_day = date('Y-m-d');\n\t\t$last_day = date('Y-m-d', strtotime('-1 month'));\n\n\t\t// delete every entry older than 1 month\n\t\t$delete = \\dotdev\\app\\adzoona\\stats::pdo_query([\n\t\t\t'query' => \"\n\t\t\t\tDELETE FROM `stats_hour`\n\t\t\t\t\tWHERE createTime <= ?\n\t\t\t\t\",\n\t\t\t'param' => [$last_day],\n\t\t\t]);\n\n\t\t// return result\n\t\treturn self::response(200, $delete->data);\n\t\t}", "public function delete() {\n $this -> removeLessons(array_keys($this -> getCourseLessons()));\n $courseUsers = eF_getTableDataFlat(\"users_to_courses\", \"users_LOGIN\", \"courses_ID=\".$this -> course['id']);\n $this -> removeUsers($courseUsers[\"users_LOGIN\"]);\n $this -> deleteCourseInstances();\n $this -> removeCourseSkills();\n $this -> deleteUniqueLessons();\n calendar::deleteCourseCalendarEvents($this);\n eF_deleteTableData(\"courses\", \"id=\".$this -> course['id']);\n $modules = eF_loadAllModules();\n foreach ($modules as $module) {\n $module -> onDeleteCourse($this -> course['id']);\n }\n EfrontSearch :: removeText('courses', $this -> course['id'], '');\n }", "public function unsetLessonScheduleInCourse($lesson) {\n $lesson = EfrontLesson::convertArgumentToLessonObject($lesson);\n\n $fields = array(\"start_date\" => null, \"end_date\" => null);\n $where = \"courses_ID=\".$this -> course['id'].\" and lessons_ID=\".$lesson -> lesson['id'];\n self::persistCourseLessons($fields, $where);\n }", "function _delete_log_entry($date_and_time,$memberid)\n\t{\n\t\t$GLOBALS['SITE_DB']->query_delete('sales',array('date_and_time'=>$date_and_time,'memberid'=>$memberid),'',1);\n\t}", "public function deletePriorTo($time)\n\t{\n\t\t$query = $this->db->getQuery(true)\n\t\t\t->delete($this->db->quoteName('#__session'))\n\t\t\t->where($this->db->quoteName('time') . ' < ' . (int) $time);\n\n\t\t$this->db->setQuery($query);\n\n\t\ttry\n\t\t{\n\t\t\t$this->db->execute();\n\t\t}\n\t\tcatch (\\JDatabaseExceptionExecuting $exception)\n\t\t{\n\t\t\t/*\n\t\t\t * The database API logs errors on failures so we don't need to add any error handling mechanisms here.\n\t\t\t * Since garbage collection does not result in a fatal error when run in the session API, we don't allow it here either.\n\t\t\t */\n\t\t}\n\t}", "private function deleteUniqueLessons() {\n $result = eF_getTableData(\"lessons\", \"*\", \"originating_course=\".$this -> course['id']);\n foreach ($result as $value) {\n $value = new EfrontLesson($value);\n $value -> delete(false);\n }\n }", "public function forceDeleted(EduLesson $lesson)\n {\n //\n }", "public function delete_wshd(){\n\n\t\t$id = $this->uri->segment(\"4\");\n\t\t//ws : working schedule\n\t\t$ws = $this->time_shift_table_model->get_work_sched_half($id);\n\t\t\n\t\t$this->db->query(\"update working_schedule_ref_half set InActive = 1 where id = \".$id);\n\n\t\t// logfile\n\t\t$company_id=$ws->company_id;\n\t\t$value = $ws->time_in. \" to \".$ws->time_out;\n\t\t\t/*\n\t\t\t--------------audit trail composition--------------\n\t\t\t(module,module dropdown,logfiletable,detailed action,action type,key value)\n\t\t\t--------------audit trail composition--------------\n\t\t\t*/\n\t\t\tGeneral::system_audit_trail('Time','Shift Table','logfile_time_shift_table','delete halfday shift : '.$value.' , id: '.$id.'','DELETE',$value);\n\t\t\t\n\t\t$this->session->set_flashdata('message',\"<div class='alert alert-success alert-dismissable'><i class='fa fa-check'></i><button type='button' class='close' data-dismiss='alert' aria-hidden='true'>&times;</button> Half Working Schedule, <strong>\".$value.\"</strong>, is Successfully Deleted!</div>\");\n\n\t\t$this->session->set_flashdata('onload',\"view(\".$company_id.\")\");\n\t\tredirect(base_url().'app/time_shift_table/index',$this->data);\n\t}", "public function delLesson() {\n $input = Input::all();\n\n $lesson = Lesson::where('idlesson','=',$input['idlesson'])->firstorFail();\n if($lesson == null){\n $alerts=\"null\";\n return view('adminlte::home',['alerts'=>$alerts]);\n }\n else{\n $lesson = Lesson::where('idlesson','=',$input['idlesson'])->delete();\n $alerts=\"del\";\n return redirect()->to('/tema');\n }\n }", "public function delete(string $type, string $phase, int $year, string $anchor, ?string $hoofdstukMinfinId);", "private static function delete()\n {\n Zend_Db_Table_Abstract::getDefaultAdapter()->delete(self::TABLE, \"DHIT < '\".date('Y-m-d H:i:s', time() - self::TIMEOUT).\"'\");\n }", "public function del()\r\n {\r\n $this->auth_get_token();\r\n $t_id = input('t_id/d', '');\r\n $org_id = input('orgid/d', '');\r\n if(empty($t_id) || empty($org_id))\r\n {\r\n $this->returnError( '10000', '缺少t_id或orgid');\r\n }\r\n Db::startTrans();\r\n try {\r\n $tmp = Db::name('teach_schedules')->field('t_id')->where('t_id' ,'=', $t_id)->select();\r\n Log::write(\"删除教师课表\");\r\n if(count($tmp) > 0)\r\n {\r\n $this->returnError('20003', '已排课,删除失败');\r\n }\r\n Db::name('cur_teacher_relations')->where('t_id', '=', $t_id)->delete();\r\n Log::write(\"删除教师课程关联表\");\r\n $s_id = Db::name('teacher_salary')->where('t_id', '=', $t_id)->value('s_id');\r\n if(!$s_id)\r\n {\r\n Log::write(\"删除教师课程薪酬\");\r\n Db::name('teacher_salary_cur')->where('s_id', '=', $s_id)->delete();\r\n }\r\n Log::write('删除教师班级关联表:');\r\n Db::name('classes_teachers_realations')->where('t_id', '=', $t_id)->delete();\r\n Log::write(\"删除班级教师关联\");\r\n Db::name('teacher_salary')->where('t_id')->delete();\r\n Log::write(\"删除教师薪酬\");\r\n $where[] = ['t_id', '=', $t_id];\r\n $where[] = ['org_id', '=', $org_id];\r\n $where[] = ['is_del', '=', 0];\r\n Db::name('teachers')->where($where)->delete();\r\n Log::write(\"删除教师\");\r\n Db::commit();\r\n $this->returnData(1,'删除教师成功');\r\n\r\n }catch (Exception $e)\r\n {\r\n Db::rollback();\r\n $this->returnError('20003', '删除教师失败');\r\n }\r\n }", "public function actionDelete()\n {\n $model = new AdminHour();\n $hours = $model->getAllHours();\n\n return $this->render('delete', [\n 'model' => $model,\n 'hours' => $hours\n ]);\n }", "public function assignment_delete($id = 0)\n {\n $lesson = $this->streams->entries->get_entry($id, 'lesson', 'streams');\n if($lesson){\n $this->streams->entries->delete_entry($id, 'lesson', 'streams');\n $this->session->set_flashdata('success', lang('pyrocourse:lesson_deleted'));\n \n redirect('admin/course/manage/'.$lesson->course_id);\n } else {\n $this->session->set_flashdata('error', lang('pyrocourse:error_assignment_deleted'));\n \n redirect(getenv('HTTP_REFERER'));\n }\n }" ]
[ "0.66460204", "0.649687", "0.64837503", "0.6473179", "0.6236127", "0.623212", "0.623031", "0.6176506", "0.6154863", "0.61038935", "0.6103387", "0.6084316", "0.6052182", "0.6044423", "0.5973959", "0.5935713", "0.5904262", "0.58532596", "0.5843139", "0.5830312", "0.58247554", "0.57942456", "0.57741636", "0.57687825", "0.57478315", "0.57236576", "0.57032883", "0.5693762", "0.5684961", "0.5667921" ]
0.65458703
1
Constructor instantiate an object PostManager.
public function __construct() { $this->onePost = new PostManager(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function __construct() {\n self::$objects = array(\n 'post' => Opal_Post::get_instance()\n );\n }", "public function __construct()\n {\n $this->postManager = new ArticleManager($this->getDatabase());\n $this->commentManager = new CommentsManager($this->getDatabase());\n $this->commentController = new CommentController();\n }", "protected function _construct()\n {\n $this->_init(\n\t\t\t\\Jc\\Blog\\Model\\Post::class,\n\t\t\t\\Jc\\Blog\\Model\\ResourceModel\\Post::class \n\t\t);\n }", "public function __construct(\n Post $post) \n {\n $this->model = $post;\n }", "public function __construct(Post $post)\n {\n $this->post = $post;\n }", "public function __construct(Post $post)\n {\n $this->post = $post;\n }", "public function __construct(Post $post)\n {\n $this->post = $post;\n }", "public function __construct(Post $post)\n {\n $this->post = $post;\n }", "public function __construct(Post $post)\n {\n $this->post = $post;\n }", "public function __construct(Model $post)\n {\n $this->post = $post;\n }", "public function __construct($post)\n {\n $this->post = $post;\n }", "public function __construct($post)\n {\n $this->post = $post;\n }", "protected function _construct()\r\n {\r\n $this->_init('Inchoo\\Recipe\\Model\\Post', 'Inchoo\\Recipe\\Model\\ResourceModel\\Post');\r\n }", "protected function getPostManager()\n {\n return $this->container->get('forum.post.manager');\n }", "public function __construct(SocialMediaPostTypePluginManager $socialMediaPostTypePluginManager, EntityTypeManagerInterface $entityTypeManager) {\n $this->socialMediaPostTypePluginManager = $socialMediaPostTypePluginManager;\n $this->entityTypeManager = $entityTypeManager;\n }", "public function __construct() {\n\n\t\t$this->plugin_slug = 'single-post-meta-manager-slug';\n\t\t$this->version = '1.0.0';\n\n\t\t$this->load_dependencies();\n\t\t$this->define_admin_hooks();\n\t\t$this->define_public_hooks();\n\n\t}", "function __construct($post) {\n parent::__construct($post);\n }", "function __construct($post) {\n parent::__construct($post);\n }", "function __construct($post) {\n parent::__construct($post);\n }", "function __construct($post) {\n parent::__construct($post);\n }", "public function __construct()\n {\n $this->commentManager = new TokyoAPI\\Model\\CommentManager();\n }", "public function __construct( $post = null ) {\n\t\t$this->post = get_post( $post );\n\t}", "public function registerPostManager()\n {\n add_action('init', array($this, 'removePostLabel'));\n // add_action('init', array($this, 'changeBlogLabel'));\n // add_action('init', array($this, 'changeBlogObject'));\n add_action('init', array($this, 'buildPlayScriptPost'));\n add_action('init', array($this, 'buildPlayScriptTaxonomy'));\n // add_action(\"load-edit.php\", array($this, 'addPlayScriptHelpTab'));\n // add_action(\"load-post.php\", array($this, 'addPlayScriptHelpTab'));\n }", "function __construct() {\n\t\t$this->set_default_props( array(\n\t\t\t'posts' => array()\n\t\t));\n\t}", "function __construct() {\n \tparent::__construct();\n \t$this->load->model('post_model');\n }", "function __construct()\n\t{\n\t\tparent::__construct();\n\t\t$this->load->model('App');\n\t\t$this->load->model('M_post');\n\t}", "public function __construct(){\n $this->formularz = new PostFormularz();\n }", "public function __construct(){\n parent::__construct();\n\n //\tload model\n $this->load->model('api/m_posts');\n\n }", "public function __construct( ) {\r\n\t\tif ( empty($this->objectManager) ) {\r\n\t\t\t$this->objectManager = \\TYPO3\\CMS\\Core\\Utility\\GeneralUtility::makeInstance('TYPO3\\\\CMS\\\\Extbase\\\\Object\\\\ObjectManager');\r\n\t\t}\r\n\t}", "public function __construct( $post_id ) {\n\t\t$this->post = get_post( $post_id );\n\t}" ]
[ "0.7535822", "0.7075779", "0.6969629", "0.695266", "0.68844336", "0.6878457", "0.6878457", "0.6878457", "0.6878457", "0.67315966", "0.6717813", "0.6717813", "0.6693185", "0.6684817", "0.66800904", "0.6557204", "0.65415764", "0.65415764", "0.65415764", "0.65415764", "0.6527569", "0.6521406", "0.64748317", "0.6398981", "0.6395094", "0.6380807", "0.63242984", "0.62742627", "0.6271281", "0.62628764" ]
0.86952454
0
Create an IMAP URL (RFC 5092/5593).
public function __toString() { $url = 'imap://' . parent::__toString(); if (($port = $this->port) != 143) { $url .= ':' . $port; } return $url . '/' . $this->_toImapString(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function build_url($ar=array()){\n $url = NULL;\n $url .= (isset($ar['scheme']) ? $ar['scheme'].'://' : NULL);\n if(isset($ar['user'])){ $url .= $ar['user'].(isset($ar['pass']) ? ':'.$ar['pass'] : NULL).'@'; }\n $url .= $ar['host'].(isset($ar['port']) ? ':'.$ar['port'] : NULL);\n $url .= ((isset($ar['query']) || isset($ar['fragment']) || isset($ar['path'])) ? (isset($ar['path']) ? (substr($ar['path'], 0, 1) != '/' ? '/' : NULL) : '/') : NULL);\n $url .= (isset($ar['path']) ? $ar['path'] : NULL);\n $url .= (isset($ar['query']) ? '?'.(is_array($ar['query']) ? http_build_query($ar['query']) : $ar['query']) : NULL);\n $url .= (isset($ar['fragment']) ? '#'.$ar['fragment'] : NULL);\n return $url;\n}", "function mailto_url ($addr, $subject='')\n{\n $s = \"mailto:$addr\";\n if ('' != $subject)\n $s .= '?subject=[' . CON_NAME . '] ' . $subject;\n\n return '\"' . $s . '\"';\n}", "function mylib_make_link(){\n\n\t$count = func_num_args();\n\tif($count < 1){\n\t\tmylib_error('invalid_argument','mylib_make_link');\n\t\t\t\treturn -1;\n\t}\n\t$arg = func_get_args();\n\n\t$string = $arg[0];\n\t//echo \"<br>\";\n\t//echo $string;\n\t//echo \"<br>\";\n\n\t$pattern = array(\"/([^\\s]+@[^\\s]+\\.[^\\s]+)/\", \"/\\[img\\](http:\\/\\/[^\\[]+)\\[\\/img\\]/\", \"/\\[url\\](http:\\/\\/[^\\[]+)\\[\\/url\\]/\" );\n\t$replace = array(\"<a href=\\\"mailto:\\\\1\\\">\\\\1</a>\", \"<img src=\\\"\\\\1\\\">\" , \"<a href=\\\"\\\\1\\\">\\\\1</a>\");\n\n\t$string = preg_replace($pattern, $replace, $string);\n\treturn $string;\n}", "private function createUrl(): string\n {\n return $this->url . $this->options;\n }", "private function buildUrl()\n {\n $realm = $this->getConfig('realm', $this->request->server('HTTP_HOST'));\n\n $params = [\n 'openid.ns' => self::OPENID_NS,\n 'openid.mode' => 'checkid_setup',\n 'openid.return_to' => $this->redirectUrl,\n 'openid.realm' => sprintf('%s://%s', $this->getScheme(), $realm),\n 'openid.identity' => 'http://specs.openid.net/auth/2.0/identifier_select',\n 'openid.claimed_id' => 'http://specs.openid.net/auth/2.0/identifier_select',\n ];\n\n return self::OPENID_URL.'?'.http_build_query($params, '', '&');\n }", "function sq_cid2http($message, $id, $cidurl, $mailbox){\n /**\n * Get rid of quotes.\n */\n $quotchar = substr($cidurl, 0, 1);\n if ($quotchar == '\"' || $quotchar == \"'\"){\n $cidurl = str_replace($quotchar, \"\", $cidurl);\n } else {\n $quotchar = '';\n }\n $cidurl = substr(trim($cidurl), 4);\n\n $match_str = '/\\{.*?\\}\\//';\n $str_rep = '';\n $cidurl = preg_replace($match_str, $str_rep, $cidurl);\n\n $linkurl = find_ent_id($cidurl, $message);\n /* in case of non-safe cid links $httpurl should be replaced by a sort of\n unsafe link image */\n $httpurl = '';\n\n /**\n * This is part of a fix for Outlook Express 6.x generating\n * cid URLs without creating content-id headers. These images are\n * not part of the multipart/related html mail. The html contains\n * <img src=\"cid:{some_id}/image_filename.ext\"> references to\n * attached images with as goal to render them inline although\n * the attachment disposition property is not inline.\n */\n\n if (empty($linkurl)) {\n if (preg_match('/{.*}\\//', $cidurl)) {\n $cidurl = preg_replace('/{.*}\\//','', $cidurl);\n if (!empty($cidurl)) {\n $linkurl = find_ent_id($cidurl, $message);\n }\n }\n }\n\n if (!empty($linkurl)) {\n $httpurl = $quotchar . SM_PATH . 'src/download.php?absolute_dl=true&amp;' .\n \"passed_id=$id&amp;mailbox=\" . urlencode($mailbox) .\n '&amp;ent_id=' . $linkurl . $quotchar;\n } else {\n /**\n * If we couldn't generate a proper img url, drop in a blank image\n * instead of sending back empty, otherwise it causes unusual behaviour\n */\n $httpurl = $quotchar . SM_PATH . 'images/blank.png' . $quotchar;\n }\n\n return $httpurl;\n}", "private static function build_url($url_arr){\r\n\t\tif(function_exists('http_build_url')){\r\n\t\t\treturn http_build_url($url_arr);\r\n\t\t} else {\r\n\t\t\t$scheme = isset($url_arr['scheme']) ? $url_arr['scheme'] . '://' : '';\r\n\t\t\t$host = isset($url_arr['host']) ? $url_arr['host'] : '';\r\n\t\t\t$port = isset($url_arr['port']) ? ':' . $url_arr['port'] : '';\r\n\t\t\t$user = isset($url_arr['user']) ? $url_arr['user'] : '';\r\n\t\t\t$pass = isset($url_arr['pass']) ? ':' . $url_arr['pass'] : '';\r\n\t\t\t$pass = ($user || $pass) ? \"$pass@\" : '';\r\n\t\t\t$path = isset($url_arr['path']) ? $url_arr['path'] : '';\r\n\t\t\t$query = isset($url_arr['query']) ? '?' . $url_arr['query'] : '';\r\n\t\t\t$fragment = isset($url_arr['fragment']) ? '#' . $url_arr['fragment'] : '';\r\n\t\t\treturn \"$scheme$user$pass$host$port$path$query$fragment\";\r\n\t\t}\r\n\t}", "public static function getPasswordResetURL()\n\t{\n\t\t$options = new \\ezcMailImapTransportOptions();\n\t\t$options->ssl = true;\n\t\t$imap = new \\ezcMailImapTransport( 'imap.gmail.com', null, $options );\n\t\t$imap->authenticate( '[email protected]', Config::get('kinvey::testMail') );\n\t\t$imap->selectMailbox('Inbox');\n\t\t$set = $imap->searchMailbox( 'FROM \"[email protected]\"' );\n\n\t\t$parser = new \\ezcMailParser();\n\t\t$mail = $parser->parseMail($set);\n\n\t\tpreg_match(\"#https.*#\", $mail[0]->generateBody(), $matches);\n\t\t$url = html_entity_decode($matches[0]);\n\t\t$url = mb_substr($url, 0, -1);\n\n\t\tforeach ($set->getMessageNumbers() as $msgNum) $imap->delete($msgNum);\n\t\t$imap->expunge();\n\n\t\treturn $url;\n\t}", "public function generate_url($m)\n\t{\n\t\t$arg = $m[2];\n\t\t$content = $m[3];\n\n\t\tif (!$arg || isset($m[5]))\n\t\t{\n\t\t\t// On tronque l'URL si elle est trop imposante\n\t\t\t$arg =\t\t$content;\n\t\t\t$content = (strlen($content) > 60) ? substr($content, 0, 30) . '...' . substr($content, -15) : $content;\n\t\t}\n\n\t\t$arg = trim($arg);\n\n\t\t// URL interne ou externe ?\n\t\tif (preg_match('#^\\w+?://.*?#', $arg))\n\t\t{\n\t\t\treturn (sprintf(Fsb::$session->getStyle('fsbcode', 'url'), trim($arg), $arg, $content));\n\t\t}\n\t\telse if (preg_match('#^(www|ftp).*?#', $arg))\n\t\t{\n\t\t\treturn (sprintf(Fsb::$session->getStyle('fsbcode', 'url'), 'http://' . $arg, $arg, $content));\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn (sprintf(Fsb::$session->getStyle('fsbcode', 'url'), Fsb::$cfg->get('fsb_path') . '/' . $arg, $arg, $content));\n\t\t}\n\t}", "private function assembleUrl()\n {\n $address = '';\n if (!empty($this->scheme)) {\n $address .= $this->scheme . '://';\n }\n if (!empty($this->user)) {\n $address .= $this->user;\n }\n if (!empty($this->pass)) {\n $address .= ':' . $this->pass . '@';\n }\n if (!empty($this->host)) {\n $address .= $this->host;\n }\n if (!empty($this->port)) {\n $address .= ':' . $this->port;\n }\n if (!empty($this->path)) {\n $address .= $this->path;\n }\n if (count($this->query) > 0) {\n $this->query_string = http_build_query($this->query);\n $address .= '?' . $this->query_string;\n }\n if (!empty($this->fragment)) {\n $address .= '#' . $this->fragment;\n }\n\n $this->full_address = $address;\n }", "private function constructUrl()\n {\n\n $url = $this->url . $this->inputKey;\n if ($this->tag) {\n $url .= '/tag/' . $this->tag . '/';\n }\n return $url;\n }", "public static function url_build( $data )\n {\n $url = '';\n if ( $data['scheme'] && $data['host'] )\n {\n $url .= $data['scheme'] . '://';\n if ( isset( $data['user'] ) )\n {\n $url .= $data['user'];\n if ( isset( $data['pass'] ) )\n {\n $url .= ':' . $data['pass'];\n };\n $url .= '@';\n }\n $url .= $data['host'];\n if ( isset( $data['port'] ) )\n {\n $url .= ':' . $data['port'];\n }\n }\n $url .= $data['path'];\n if ( isset( $data['query'] ) )\n {\n $url .= '?' . $data['query'];\n }\n if ( isset( $data['fragment'] ) ) \n {\n $url .= '#' . $data['fragment'];\n }\n\n return $url;\n }", "function getMailURL($email, $user_id = 0) \r\n {\r\n //Cuando este implementado el modulo mailBox si $user_id > 0 entonces muestra un enlace a escribir mensaje desde miguel\r\n return \"mailto:$email\";\r\n }", "function http_build_url($builder) {\n if (!$builder['host']) return false;\n if (!$builder['scheme']) $builder['scheme'] = 'http';\n $url = $builder['scheme'] . '://';\n if ($builder['user'] && $builder['pass']) $url .= \"${builder['user']}:${builder['pass']}@\";\n if ($builder['host']) $url .= \"${builder['host']}\";\n if ($builder['port']) $url .= \":${builder['port']}\";\n if ($builder['path']) {\n $path = $builder['path'];\n if (strpos($path, '/') === 0) {\n $url .= \"$path\";\n } else {\n $url .= \"/$path\";\n }\n } else {\n $url .= '/'; // TODO: ???\n }\n if ($builder['query']) $url .= \"?${builder['query']}\";\n if ($builder['fragment']) $url .= \"#${builder['fragment']}\";\n return $url;\n}", "function create_feed_url($email_address, $magic_cookie = null){\n\t\t$type = 'public';\n\t\tif($magic_cookie != null)\n\t\t$type = 'private-'.$magic_cookie;\n\n\t\treturn 'http://www.google.com/calendar/feeds/'.$email_address.'/'.$type.'/full';\n\t}", "public static function makeUrl() {\n $args = func_get_args();\n\n // Special case: $args is 1 argument, an array\n if (count($args) == 1 && is_array($args[0])) {\n $args = $args[0];\n }\n\n $finStr = \"\";\n\n for ($i =0; $i < count($args); $i++) {\n if ($i != (count($args) - 1) && substr($args[$i], strlen($args[$i]) - 1, 1) != '/') {\n $finStr .= $args[$i] . '/';\n } else {\n $finStr .= $args[$i];\n }\n }\n\n // Clean up multiple slashes, accounting for protocol://\n do {\n $finStr = preg_replace(\"/(?<!:)\\/\\//\", \"/\", $finStr);\n } while (preg_match(\"/(?<!:)\\/\\//\", $finStr));\n\n return $finStr;\n }", "function build_url(array $parts) : string\n {\n return (isset($parts['scheme']) ? \"{$parts['scheme']}:\" : '') .\n ((isset($parts['user']) || isset($parts['host'])) ? '//' : '') .\n (isset($parts['user']) ? \"{$parts['user']}\" : '') .\n (isset($parts['pass']) ? \":{$parts['pass']}\" : '') .\n (isset($parts['user']) ? '@' : '') .\n (isset($parts['host']) ? \"{$parts['host']}\" : '') .\n (isset($parts['port']) ? \":{$parts['port']}\" : '') .\n (isset($parts['path']) ? \"{$parts['path']}\" : '') .\n (isset($parts['query']) ? \"?{$parts['query']}\" : '') .\n (isset($parts['fragment']) ? \"#{$parts['fragment']}\" : '');\n }", "function post_notification_fe_make_link($param){\r\n\tglobal $post_notification_addr, $post_notification_code;\r\n\t$addr = &$post_notification_addr;\r\n\t$code = &$post_notification_code;\r\n\t$url = post_notification_get_mailurl($addr, $code);\r\n\t$url.= 'param=' .htmlentities(urlencode($param));\r\n\treturn $url;\r\n}", "private function generateURL($path)\n {\n $params = $this->con->getParameters();\n $url = parse_url($params['host']);\n $host = array_key_exists('host', $url)\n ? $url['host']\n : $url['path'];\n $proto = (array_key_exists('scheme', $url)\n ? $url['scheme']\n : 'https')\n . '://';\n\n if(!empty($params['port'])) {\n $host .= ':'.$params['port'];\n }\n\n $cred = empty($params['user'])\n ? ''\n : ((empty($params['password']) ? $params['user'] : $params['user'].':'.$params['password']).'@');\n\n return $proto.$cred.$host.htmlspecialchars_decode($path);\n }", "function glue_url($parsed)\n{\n\t/** Validate passed $parsed parameter */\n\tif (!is_array($parsed)) return false;\n\n\t/** Glue an URL together from all URL-Parts from the $parsed Array */\n\t$url = $parsed['scheme'] ? $parsed['scheme'].':'.((strtolower($parsed['scheme']) == 'mailto') ? '':'//'): '';\n\t$url .= $parsed['user'] ? $parsed['user'].($parsed['pass']? ':'.$parsed['pass']:'').'@':'';\n\t$url .= $parsed['host'] ? $parsed['host'] : '';\n\t$url .= $parsed['port'] ? ':'.$parsed['port'] : '';\n\t$url .= $parsed['path'] ? $parsed['path'] : '';\n\t$url .= $parsed['query'] ? '?'.$parsed['query'] : '';\n\t$url .= $parsed['fragment'] ? '#'.$parsed['fragment'] : '';\n\n\treturn $url;\n}", "function join_url($parts, $encode = FALSE) {\n if ($encode) {\n if (isset($parts['user'])) {\n $parts['user'] = rawurlencode($parts['user']);\n }\n if (isset($parts['pass'])) {\n $parts['pass'] = rawurlencode($parts['pass']);\n }\n if (isset($parts['host']) && !preg_match('!^(\\[[\\da-f.:]+\\]])|([\\da-f.:]+)$!ui', $parts['host'])) {\n $parts['host'] = rawurlencode($parts['host']);\n }\n if (!empty($parts['path'])) {\n $parts['path'] = preg_replace('!%2F!ui', '/', rawurlencode($parts['path']));\n }\n if (isset($parts['query'])) {\n $parts['query'] = rawurlencode($parts['query']);\n }\n if (isset($parts['fragment'])) {\n $parts['fragment'] = rawurlencode($parts['fragment']);\n }\n }\n\n $url = '';\n if (!empty($parts['scheme'])) {\n $url .= $parts['scheme'] . ':';\n }\n if (isset($parts['host'])) {\n $url .= '//';\n if (isset($parts['user'])) {\n $url .= $parts['user'];\n if (isset($parts['pass'])) {\n $url .= ':' . $parts['pass'];\n }\n $url .= '@';\n }\n if (preg_match('!^[\\da-f]*:[\\da-f.:]+$!ui', $parts['host'])) {\n $url .= '[' . $parts['host'] . ']';\n } // IPv6\n else {\n $url .= $parts['host'];\n } // IPv4 or name\n if (isset($parts['port'])) {\n $url .= ':' . $parts['port'];\n }\n if (!empty($parts['path']) && $parts['path'][0] != '/') {\n $url .= '/';\n }\n }\n if (!empty($parts['path'])) {\n $url .= $parts['path'];\n }\n if (isset($parts['query'])) {\n $url .= '?' . $parts['query'];\n }\n if (isset($parts['fragment'])) {\n $url .= '#' . $parts['fragment'];\n }\n return $url;\n }", "function makeLink($str)\n {\n // has no valid protocol?\n if(!preg_match(\"/mailto:|http:/\", $str)){\n // check for possible email-address (@)\n if(preg_match(\"/@/\", $str)){\n $str=\"mailto:\".$str; // add protocol\n }\n // check for possible website\n if(preg_match(\"/www/\", $str)){\n $str=\"http://\".$str; // add protocol\n }\n \n }\n //replace protocols with link\n return $this->replaceUri($str);\n }", "private function createUri()\n {\n $uri = '';\n $scheme = $this->getScheme();\n $authority = $this->getAuthority();\n $path = $this->getPath();\n $query = $this->getQuery();\n $fragment = $this->getFragment();\n\n if ($scheme) {\n $uri .= sprintf('%s://', $scheme);\n }\n\n if ($authority) {\n $uri .= $authority;\n }\n\n if ($path) {\n $uri .= '/' . trim($path, '/');\n }\n\n if ($query) {\n $uri .= sprintf('?%s', $query);\n }\n\n if ($fragment) {\n $uri .= sprintf('#%s', $fragment);\n }\n\n return $uri;\n }", "private function build_url() {\n $args = array(\n $this->query_var => $this->options['client_key'],\n );\n\n $url = $this->options['client_remote_url'];\n $url = add_query_arg($args, $url);\n\n return $url;\n }", "private function buildUrl($uid)\n {\n return \"https://bitcointalk.org/index.php?action=profile;u=\".$uid.\";wap\";\n }", "public static function AutoLink($input)\r\n\t{\r\n\t\t$output = preg_replace(\"/(http|https|ftp)://([a-z0-9\\-\\./]+))/\", \"<a href=\\\"\\\\0\\\">\\\\0</a>\", $input);\r\n\t\t$output = preg_replace(\"/(([a-z0-9\\-\\.]+)@([a-z0-9\\-\\.]+)\\.([a-z0-9]+))/\", \"<a href=\\\"mailto:\\\\0\\\">\\\\0</a>\", $output);\r\n\t\treturn $output;\r\n\t}", "private function createURL($email)\n {\n $filename = \"src/modules/verify/verify_controller.php\";\n $hash = $this->getHash();\n $url = \"http://\".$_SERVER['HTTP_HOST'].\"/\".$filename.'?email='.$email.'&hash='.$hash;\n\n return (string)$url;\n }", "function create_url() {\r\n\t\t$url = $this->gateway;\r\n\t\t$sort_array = array();\r\n\t\t$arg = \"\";\r\n\t\t$sort_array = $this->arg_sort($this->parameter);\r\n\t\twhile (list ($key, $val) = each ($sort_array)) {\r\n\t\t\t$arg.=$key.\"=\".urlencode($this->charset_encode($val,$this->parameter['_input_charset'],$this->parameter['_input_charset'])).\"&\";\r\n\t\t}\r\n\t\t$url.= $arg.\"sign=\" .$this->mysign .\"&sign_type=\".$this->sign_type;\r\n\t\treturn $url;\r\n\t}", "private function createUrl() {\r\n\r\n $url = \"\";\r\n\r\n\t\tif ( isset($this->shortUrl) ) {\r\n\r\n\t\t\t$url = \"/\" . $this->shortUrl;\r\n\r\n\t\t} else {\r\n\r\n\t\t\tswitch( $this->type ) {\r\n\r\n\t\t\t\tcase 'category': $url = '/categories/c' . rawurlencode($this->id); break;\r\n\t\t\t\tcase 'geotarget': $url = '/categories/t' . rawurlencode($this->id); break;\r\n\t\t\t\tcase 'grouping': $url = '/categories/g' . rawurlencode($this->id); break;\r\n\t\t\t\tcase 'help': $url = '/help/h' . rawurlencode($this->id); break;\r\n\t\t\t\tcase 'landing': $url = '/categories/l' . rawurlencode($this->id); break;\r\n\t\t\t\tcase 'page': $url = str_replace(APP_ROOT, '', $this->filename); break;\r\n\t\t\t\tcase 'product': $url = '/products/' . rawurlencode($this->id); break;\r\n\t\t\t\tcase 'subcategory': $url = '/categories/s' . rawurlencode($this->id); break;\r\n\t\t\t}\r\n //just a test\r\n\t\t\tif (!empty($this->slug)) { $url .= \"/\" . rawurlencode($this->encodeSlug($this->slug)); }\r\n\t\t}\r\n\r\n\t\t// return ($this->secure ? URL_PREFIX_HTTPS : URL_PREFIX_HTTP) . $url . (mb_substr($url, -1) !== \"/\" ? \"/\" : \"\");\r\n\t\treturn ($this->secure ? URL_PREFIX_HTTPS : URL_PREFIX_HTTP) . $url;\r\n\t}", "public function createUrl(Query $query) : string;" ]
[ "0.5687383", "0.5501851", "0.5457809", "0.54503536", "0.54285294", "0.54043883", "0.53929204", "0.5355063", "0.5333657", "0.52979034", "0.52651805", "0.5211506", "0.5210825", "0.51782334", "0.51527166", "0.51443905", "0.5127767", "0.5116429", "0.51016587", "0.5083691", "0.5083257", "0.50675714", "0.5060452", "0.50569993", "0.4970297", "0.49427903", "0.49183476", "0.49047711", "0.49013564", "0.48995364" ]
0.6311789
0
Get street line 3
public function getStreetLine3() { $street = $this->address->getStreet(); return isset($street[2]) ? $street[2] : ''; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getStreetLine4()\n {\n $street = $this->address->getStreet();\n return isset($street[3]) ? $street[3] : '';\n }", "private function shippingAddressLine3()\n {\n return null;\n }", "public function getLine3()\n {\n return $this->_fields['Line3']['FieldValue'];\n }", "public function getThirdLineNeighborhood()\n {\n return $this->helper->getConfig(\"brazilcustomerattributes/general/line_neighborhood\");\n }", "private function billingAddressLine3()\n {\n return null;\n }", "public function getAddressSecondLine()\n {\n return $this->AddressSecondLine;\n }", "public function street();", "public function getStreet()\n\t{\n\t\treturn $this->data[self::KEY_STREET];\n\t}", "public function getPaAddress2NdLine()\n {\n return $this->pa_address_2nd_line;\n }", "public function getStreetAddressLine($lineNumber)\n {\n return null;\n }", "public function getAddressLine2(): ?string\n {\n return $this->{self::ADDRESS_LINE_2};\n }", "public function getAddressLine1()\n {\n return isset($this->address_line_1) ? $this->address_line_1 : null;\n }", "public function getAddressLine1()\n {\n return $this->addressLine1;\n }", "public function getAddressLine2()\n {\n return isset($this->address_line_2) ? $this->address_line_2 : null;\n }", "public function getStreet()\n\t{\n\t\treturn $this->getKeyValue('street'); \n\n\t}", "public function getStreetAddressLines()\n {\n return [];\n }", "public function getAddressLine2()\n {\n return $this->addressLine2;\n }", "public function getAddressLine1(): ?string\n {\n return $this->{self::ADDRESS_LINE_1};\n }", "public function getAdditionalAddressLine1()\n {\n return $this->additionalAddressLine1;\n }", "public function getStreet2()\n {\n return $this->street2;\n }", "public function getStreetNo()\n {\n return $this->attributes->mayHave('street_no')->asString();\n }", "public static function street()\n {\n return static::randomElement(static::$street);\n }", "public function getStreet1()\n {\n return $this->street1;\n }", "public function getDispensaryStreet1() {\n\t\treturn ($this->dispensaryStreet1);\n\t}", "function getStreetNumber2()\n {\n return is_null($this->_sStreetNumber2) ? NULL : (string) $this->_sStreetNumber2;\n }", "public function getStreet2()\n {\n return $this->attributes->mayHave('street2')->asString();\n }", "public function getVenueStreet1() {\n\t\treturn ($this->venueStreet1);\n\t}", "public function getAdditionalAddressLine2()\n {\n return $this->additionalAddressLine2;\n }", "public function get_streetAndNo() {\n\t\treturn $this->streetAndNo;\n\t}", "public function getAddress3()\n {\n return $this->address3;\n }" ]
[ "0.72214216", "0.6970668", "0.65975106", "0.6453549", "0.6394526", "0.6374121", "0.6294188", "0.62021804", "0.6148385", "0.61411077", "0.602939", "0.6021843", "0.6018458", "0.6007488", "0.5948945", "0.59427124", "0.5920533", "0.5918058", "0.5876868", "0.58307856", "0.58046913", "0.5778551", "0.5773813", "0.5743755", "0.57284164", "0.57274824", "0.569326", "0.5685224", "0.56725514", "0.5661375" ]
0.8489443
0
Get street line 4
public function getStreetLine4() { $street = $this->address->getStreet(); return isset($street[3]) ? $street[3] : ''; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getStreetLine3()\n {\n $street = $this->address->getStreet();\n return isset($street[2]) ? $street[2] : '';\n }", "private function shippingAddressLine3()\n {\n return null;\n }", "public function street();", "public function getAddressSecondLine()\n {\n return $this->AddressSecondLine;\n }", "public function getPaAddress2NdLine()\n {\n return $this->pa_address_2nd_line;\n }", "public function getStreetAddressLine($lineNumber)\n {\n return null;\n }", "public function getAddressLine1()\n {\n return $this->addressLine1;\n }", "public function getAddressLine1()\n {\n return isset($this->address_line_1) ? $this->address_line_1 : null;\n }", "public function getStreetAddressLines()\n {\n return [];\n }", "public function getAddressLine1(): ?string\n {\n return $this->{self::ADDRESS_LINE_1};\n }", "public function getStreet()\n\t{\n\t\treturn $this->data[self::KEY_STREET];\n\t}", "public function getAddressLine2(): ?string\n {\n return $this->{self::ADDRESS_LINE_2};\n }", "public function getStreetNo()\n {\n return $this->attributes->mayHave('street_no')->asString();\n }", "public function getShippingAddressLine1()\n {\n if ($this->isPaypass) {\n return $this->getMpgResponseValue($this->masterPassData, 'ShippingAddressLine1');\n } else {\n return $this->getMpgResponseValue($this->vDotMeInfo['shippingAddress'], 'line1');\n }\n }", "public function getAdditionalAddressLine1()\n {\n return $this->additionalAddressLine1;\n }", "public function getAddressLine2()\n {\n return isset($this->address_line_2) ? $this->address_line_2 : null;\n }", "public function get_streetAndNo() {\n\t\treturn $this->streetAndNo;\n\t}", "public function getDispensaryStreet1() {\n\t\treturn ($this->dispensaryStreet1);\n\t}", "public function getStreet1()\n {\n return $this->street1;\n }", "public static function street()\n {\n return static::randomElement(static::$street);\n }", "public function getAddressLine2()\n {\n return $this->addressLine2;\n }", "public function getStreet()\n\t{\n\t\treturn $this->getKeyValue('street'); \n\n\t}", "public function getVenueStreet1() {\n\t\treturn ($this->venueStreet1);\n\t}", "public function getStreetNumber()\n {\n return $this->_streetNumber;\n }", "public function getAddressLine1Unwrapped()\n {\n return $this->readWrapperValue(\"address_line_1\");\n }", "public function streetPrefix()\n {\n $format = static::randomElement(static::$streetPrefix);\n\n return $this->generator->parse($format);\n }", "function getStreetNumber2()\n {\n return is_null($this->_sStreetNumber2) ? NULL : (string) $this->_sStreetNumber2;\n }", "public function getStreetNumber() {\n return $this->streetNumber;\n }", "public function getProfileAddressLine1(): string {\n\t\treturn($this->profileAddressLine1);\n\t}", "private function billingAddressLine3()\n {\n return null;\n }" ]
[ "0.7713064", "0.65068567", "0.6407665", "0.6347303", "0.62894017", "0.62827647", "0.6264341", "0.62523663", "0.625176", "0.6233332", "0.6221101", "0.61576235", "0.6085735", "0.60810435", "0.60541946", "0.6037488", "0.6030303", "0.6017944", "0.6000459", "0.5992838", "0.5986786", "0.5984392", "0.5939424", "0.58949", "0.58797485", "0.5836466", "0.58145773", "0.581136", "0.5804676", "0.5781179" ]
0.826607
0
Gets a TwitterOAuth instance with oauth_token and oauth_token_secret. This method creates the SDK object by also passing the oauth_token and oauth_token_secret. It is used for getting permanent tokens from Twitter and authenticating users that has already granted permission.
public function getSdk2($oauth_token, $oauth_token_secret);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function __construct()\n {\n # Check if there is a Twitter object.\n if (empty($this->twitter_obj) OR !is_object($this->twitter_obj)) {\n # Instantiate a new Twitter object.\n $twitter_obj = new TwitterOAuth(\n TWITTER_CONSUMER_KEY,\n TWITTER_CONSUMER_SECRET,\n TWITTER_TOKEN,\n TWITTER_TOKEN_SECRET\n );\n $this->setTwitterObj($twitter_obj);\n }\n\n return $this->getTwitterObj();\n }", "function getConnectionWithAccessToken($cons_key, $cons_secret, $oauth_token, $oauth_token_secret) {\n\t $connection = new TwitterOAuth($cons_key, $cons_secret, $oauth_token, $oauth_token_secret);\n\t return $connection;\n\t}", "function getOAuthClient(){\n\t// Load tokens from the session.\n\t$access_token = $_SESSION[\"oauth_access_token\"];\n\t$token_secret = $_SESSION[\"oauth_token_secret\"];\n\t\n\t// Create the new client and initalize the tokens\n\t$apiConsumer = new OAuthClient(AppConfig::$base_url, AppConfig::$consumer_key, AppConfig::$consumer_secret);\n\t$apiConsumer->initAccessToken($access_token,\n\t $token_secret);\n\t\n\treturn $apiConsumer;\n}", "function getConnectionWithAccessToken($cons_key, $cons_secret, $oauth_token, $oauth_token_secret) {\n\t\t\t\t\t $connection = new TwitterOAuth($cons_key, $cons_secret, $oauth_token, $oauth_token_secret);\n\t\t\t\t\t return $connection;\n\t\t\t\t\t}", "public function accessTokenFromTwitter()\n {\n $config = $this->application->config('oauth');\n $request = $this->application->request();\n\n // pass verification to the API so we can log in\n $clientId = $config['client_id'];\n $clientSecret = $config['client_secret'];\n\n // handle incoming vars\n $token = $request->get('oauth_token');\n $verifier = $request->get('oauth_verifier');\n\n $authApi = $this->application->container->get(AuthApi::class);\n $result = $authApi->verifyTwitter($clientId, $clientSecret, $token, $verifier);\n\n $this->handleLogin($result);\n }", "function __construct($consumerKey, $consumerSecret, $oauthToken = NULL,\n\t\t$oauthTokenSecret = NULL) {\n\n\t\t// set the twitter-specific API info\n\t\t$this->consumerKey = $consumerKey;\n\t\t$this->consumerSecret = $consumerSecret;\n\t\t$this->oauthToken = $oauthToken;\n\t\t$this->oauthTokenSecret = $oauthTokenSecret;\n\n\t\t$this->oembedUrl = 'https://publish.twitter.com/oembed';\n\t}", "public function oauth_callback() {\n\t\tif (!session_id()) {\n\t\t\tsession_start();\n\t\t}\n\t\t$session = $_SESSION['_opauth_twitter'];\n\t\tunset($_SESSION['_opauth_twitter']);\n\n\t\tif (!empty($_REQUEST['oauth_token']) && $_REQUEST['oauth_token'] == $session['oauth_token']) {\n\t\t\t$this->tmhOAuth->config['user_token'] = $session['oauth_token'];\n\t\t\t$this->tmhOAuth->config['user_secret'] = $session['oauth_token_secret'];\n\t\t\t\n\t\t\t$params = array(\n\t\t\t\t'oauth_verifier' => $_REQUEST['oauth_verifier']\n\t\t\t);\n\t\t\n\t\t\t$results = $this->_request('POST', $this->strategy['access_token_url'], $params);\n\n\t\t\tif ($results !== false && !empty($results['oauth_token']) && !empty($results['oauth_token_secret'])) {\n\t\t\t\t$credentials = $this->_verify_credentials($results['oauth_token'], $results['oauth_token_secret']);\n\t\t\t\t\n\t\t\t\tif (!empty($credentials['id'])) {\n\t\t\t\t\t\n\t\t\t\t\t$this->auth = array(\n\t\t\t\t\t\t'uid' => $credentials['id'],\n\t\t\t\t\t\t'info' => array(\n\t\t\t\t\t\t\t'name' => $credentials['name'],\n\t\t\t\t\t\t\t'nickname' => $credentials['screen_name'],\n\t\t\t\t\t\t\t'urls' => array(\n\t\t\t\t\t\t\t\t'twitter' => str_replace('{screen_name}', $credentials['screen_name'], $this->strategy['twitter_profile_url'])\n\t\t\t\t\t\t\t)\n\t\t\t\t\t\t),\n\t\t\t\t\t\t'credentials' => array(\n\t\t\t\t\t\t\t'token' => $results['oauth_token'],\n\t\t\t\t\t\t\t'secret' => $results['oauth_token_secret']\n\t\t\t\t\t\t),\n\t\t\t\t\t\t'raw' => $credentials\n\t\t\t\t\t);\n\t\t\t\t\t\n\t\t\t\t\t$this->mapProfile($credentials, 'location', 'info.location');\n\t\t\t\t\t$this->mapProfile($credentials, 'description', 'info.description');\n\t\t\t\t\t$this->mapProfile($credentials, 'profile_image_url', 'info.image');\n\t\t\t\t\t$this->mapProfile($credentials, 'url', 'info.urls.website');\n\t\t\t\t\t\n\t\t\t\t\t$this->callback();\n\t\t\t\t}\n\t\t\t}\n\t\t} else {\n\t\t\t$error = array(\n\t\t\t\t'code' => 'access_denied',\n\t\t\t\t'message' => 'User denied access.',\n\t\t\t\t'raw' => $_GET\n\t\t\t);\n\n\t\t\t$this->errorCallback($error);\n\t\t}\n\t\t\n\t\t\t\t\n\t}", "public function __construct($strOAuthToken = NULL, $strOAuthSecret = NULL)\n\t{\n\t\tparent::__construct();\n\t\t$this->import('Database');\n\t\t\n\t\tif(strlen($GLOBALS['TL_CONFIG']['twitter_key']) && strlen($GLOBALS['TL_CONFIG']['twitter_secret']) )\n\t\t{\n\t\t\t$this->strConsumerKey = $GLOBALS['TL_CONFIG']['twitter_key'];\n\t\t\t$this->strConsumerSecret = $GLOBALS['TL_CONFIG']['twitter_secret'];\n\t\t}\n\t\telse\n\t\t{\t\n\t\t\t$this->strErrorHTML = '<p class=\"tl_gerror\">'.$GLOBALS['TL_LANG']['TWIT']['twitter_auth_insecure'].'</p>';\n\t\t}\n\t\t\n\t\t$this->OAuth = new TwitterOAuth($this->strConsumerKey, $this->strConsumerSecret, $strOAuthToken, $strOAuthSecret );\n\t}", "public function GetOauthAccessToken($oauth_verifier) {\n $instance = new GetOauthAccessToken($this, $oauth_verifier);\n return $instance;\n }", "function returnToken($cons_key, $cons_secret, $oauth_token, $oauth_token_secret)\n {\n $twitter = new TwitterOAuth($cons_key, $cons_secret, $oauth_token, $oauth_token_secret);\n\n if (!$twitter){\n throw new Exception (\"Can't connect to Twitter's API.\"); \n die();\n }\n else{\n return $twitter;\n }\n }", "public function GetOauthRequestToken($oauth_callback) {\n $instance = new GetOauthRequestToken($this, $oauth_callback);\n return $instance;\n }", "protected function getConnection(){\n\n\t\tif(self::$twt == null){\n\t\t\t$twt = $this->app->getLibrary('Twitteroauth\\Twitteroauth');\n\t\t\t$con_key = $this->app->getConfig('TWITTER_CONSUMER_KEY');\n\t\t\t$con_secret = $this->app->getConfig('TWITTER_CONSUMER_SECRET');\n\t\t\t$oauth_callback = $this->app->getConfig('TWITTER_OAUTH_CALLBACK');\n\n\t\t\t$twt->connect($con_key, $con_secret, '371095924-EJvHxe1RGkY4TZnE3fen4dvpvHVO7d12hzYv0lc9', 'zILz1Cmfvu1kf2N2cckTc9FiMChcqURr3LKgrWb4sXUKx');\n\n\t\t\t// If token is not recieved, exit\n\t\t\tif(empty($twt->token->key)){\n\t\t\t\t$this->fail('Connection could not be initiated');\n\t\t\t}else{\n\t\t\t\tself::$twt = $twt;\n\t\t\t}\n\t\t}\n\n\t\treturn self::$twt; \n\t}", "public function oauth()\n {\n return OauthHelper::authed($this->oauth_token, $this->oauth_token_secret);\n }", "public function loginWithTwitter() {\n $token = Input::get( 'oauth_token' );\n $verify = Input::get( 'oauth_verifier' );\n\n // get twitter service\n $tw = OAuth::consumer( 'Twitter' );\n\n // check if code is valid\n\n // if code is provided get user data and sign in\n if ( !empty( $token ) && !empty( $verify ) ) {\n\n // This was a callback request from twitter, get the token\n $token = $tw->requestAccessToken( $token, $verify );\n\n // Send a request with it\n $result = json_decode( $tw->request( 'account/verify_credentials.json' ), true );\n \n $provider_id = \"Twitter_\".$result['id_str'];\n\n $account = Account::where('provider_id', '=', $provider_id);\n\n if (count($account->get()) == 0) {\n # TODO: ask user for email\n $account = Account::create(\n array(\n 'id' => null,\n 'name' => $result['name'],\n 'nick_name' => $result['screen_name'],\n 'provider_id' => $provider_id,\n 'avatar_url' => $result['profile_image_url'],\n )\n );\n\n }\n \n # TODO: sign in the registered user\n \n\n }\n // if not ask for permission first\n else {\n // get request token\n $reqToken = $tw->requestRequestToken();\n\n // get Authorization Uri sending the request token\n $url = $tw->getAuthorizationUri(array('oauth_token' => $reqToken->getRequestToken()));\n\n // return to twitter login url\n return Redirect::to( (string)$url );\n }\n }", "protected function createTwitterDriver()\n {\n $config = $this->config()->get('services.twitter');\n\n return new OAuthOne\\TwitterProvider(\n $this->app['request'],\n new TwitterServer($this->formatConfig($config))\n );\n }", "protected function createTwitterDriver()\n {\n $config = $this->app['config']['services.twitter'];\n\n return new $this->providers['twitter']['provider'](\n $this->app['request'], new $this->providers['twitter']['server']($this->formatConfig($config))\n );\n }", "static function GetTwitter()\n\t{\n\t\tTwitter::Init();\n\t\treturn Twitter::$API;\n\t}", "public function __construct($key, $secret, $callback) {\n \n parent::__construct('Twitter', $key, $secret, $callback);\n \n $this->requestURL = $this->baseURL.'oauth/request_token';\n $this->authURL = $this->baseURL.'oauth/authenticate';\n $this->accessURL = $this->baseURL.'oauth/access_token';\n }", "private function _initializeTwitterOauth($sOathType = self::OAUTH_BASIC)\n {\n if ($sOathType == self::OAUTH_BASIC) {\n $this->_oTwitterOAth = new TwitterOAuth(TwitterAPI::KEY, TwitterAPI::SECRET);\n } elseif ($sOathType == self::OAUTH_VERIFIED) {\n $aAccessToken = $this->getLoggedInAccessToken();\n $this->_oTwitterOAth = new TwitterOAuth(TwitterAPI::KEY, TwitterAPI::SECRET, $aAccessToken['oauth_token'], $aAccessToken['oauth_token_secret']);\n } elseif ($sOathType == self::OAUTH_VERIFIER) {\n $sOathToken = AppSessionHandler::i()->get('oauth_token');\n $sOathTokenSecret = AppSessionHandler::i()->get('oauth_token_secret');\n $this->_oTwitterOAth = new TwitterOAuth(TwitterAPI::KEY, TwitterAPI::SECRET, $sOathToken, $sOathTokenSecret);\n } elseif ($sOathType == self::OAUTH_VERIFIER_CONVERTED) {\n $sOathVerifier = AppSessionHandler::i()->get('oauth_verifier');\n $aAccessToken = $this->getAccessToken($sOathVerifier);\n if (isset($aAccessToken['oauth_token']) && isset($aAccessToken['oauth_token_secret'])) {\n $this->_oTwitterOAth = new TwitterOAuth(TwitterAPI::KEY, TwitterAPI::SECRET, $aAccessToken['oauth_token'], $aAccessToken['oauth_token_secret']);\n }\n }\n\n $this->_oTwitterOAth->setTimeouts(10, 15);\n\n return $this->_oTwitterOAth instanceof TwitterOAuth;\n }", "public function authenticateApp(Abraham\\TwitterOAuth\\TwitterOAuth $twitter) {\n\n\t\t$this->setTwitter($twitter);\n\n\t\tif (is_null($this->oauthToken) && is_null($this->oauthTokenSecret)) {\n\n\t\t\t// use application-only auth\n\n\t\t\t// get auth token\n\t\t\t$creds = $this->twitter->oauth2('oauth2/token',\n\t\t\t\t['grant_type' => 'client_credentials']);\n\n\t\t\tif ($this->twitter->getLastHttpCode() != '200') {\n\n\t\t\t\t// authentication failed\n\t\t\t\tthrow new Exception(\"Error authenticating app.\");\n\t\t\t}\n\n\t\t\t$this->oauthTokenSecret = $creds->access_token;\n\t\t}\n\n\t\t// TODO handle Twitter user-specific auth\n\n\t\t$authArray = array('consumerKey' => $this->consumerKey,\n\t\t\t'consumerSecret' => $this->consumerSecret,\n\t\t\t'oauthToken' => $this->oauthToken,\n\t\t\t'oauthTokenSecret' => $this->oauthTokenSecret);\n\n\t\treturn $authArray;\n\t}", "protected function createTwitterDriver()\n {\n $config = $this->app['config']['services.twitter'];\n\n return new TwitterProvider(\n $this->app['request'], new TwitterServer($this->formatConfig($config))\n );\n }", "protected function __construct()\n {\n if ($this->getLoggedInAccessToken()) {\n $this->_initializeTwitterOauth(self::OAUTH_VERIFIED);\n } else {\n $this->_initializeTwitterOauth(self::OAUTH_BASIC);\n }\n }", "public function getTwitter() {\n\t\tif($this->twitter) {\n\t\t\treturn $this->twitter;\n\t\t}\n\t\n\t\tif($this->TwitterConsumerKey && $this->TwitterConsumerSecret) {\n\t\t\treturn $this->twitter = new Twitter($this->TwitterConsumerKey, $this->TwitterConsumerSecret);\n\t\t}\n\t\treturn false;\n\t}", "public function __construct( $consumer_key, $consumer_secret, $oauth_token = null, $oauth_token_secret = null ) {\n\t\t$this->signature_method = new OAuthSignatureMethod_HMAC_SHA1();\n\t\t$this->consumer = new OAuthConsumer( $consumer_key, $consumer_secret );\n\n\t\tif ( ! empty( $oauth_token ) && ! empty( $oauth_token_secret ) ) {\n\t\t\t$this->token = new OAuthConsumer( $oauth_token, $oauth_token_secret );\n\t\t} else {\n\t\t\t$this->token = null;\n\t\t}\n\t}", "protected function getOauthProvider() {\n $credentials = $this->keyService->getOauthKeys();\n $provider = new OauthProvider(\n [\n 'clientId' => $credentials['cid'],\n 'clientSecret' => $credentials['secret'],\n 'redirectUri' => Url::fromRoute(\n 'fa_form.authorize.store',\n [],\n ['absolute' => TRUE]\n )->toString(TRUE)->getGeneratedUrl(),\n 'baseUrl' => $this->getUrl('base')->toString(TRUE)->getGeneratedUrl(),\n ]\n );\n return $provider;\n }", "public function get_access_token( $oauth_verifier = '' ) {\n\t\t$parameters = array();\n\t\tif ( ! empty( $oauth_verifier ) ) {\n\t\t\t$parameters['oauth_verifier'] = $oauth_verifier;\n\t\t}\n\n\t\t$request = $this->oauth_request( self::ACCESS_TOKEN_URL, 'GET', $parameters );\n\t\t$token = OAuthUtil::parse_parameters( wp_remote_retrieve_body( $request ) );\n\n\t\t$this->token = new OAuthConsumer( $token['oauth_token'], $token['oauth_token_secret'] );\n\n\t\treturn $token;\n\t}", "public function authen ()\n {\n $config = $this->getApiConfig();\n $this->token = new OAuthTokenCredential(\n $config['clientId'],\n $config['secret'],\n $config['sdk']\n );\n\n return $this->token;\n }", "public function __construct()\n {\n \n if (session_id() == \"\") {\n session_start(); \n }\n \n \n $this->connection = new TwitterOAuth(env('TWITTER_CONSUMER_KEY'), env('TWITTER_CONSUMER_SECRET'),env('TWITTER_ACCESS_TOKEN'),env('TWITTER_ACCES_TOKEN_SECRET'));\n\n \n if(isset($_SESSION['access_token'])){\n \n $access_token=$_SESSION['access_token'];\n\n $this->connection = new TwitterOAuth(env('TWITTER_CONSUMER_KEY'), env('TWITTER_CONSUMER_SECRET'), $access_token['oauth_token'], $access_token['oauth_token_secret']);\n \n }\n\n\n }", "function authorizationTwitterUser()\n{\n\n $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET);\n\n if (isset($_REQUEST['oauth_token']) && !empty($_REQUEST['oauth_token']) && isset($_REQUEST['oauth_verifier']) && !empty($_REQUEST['oauth_verifier'])) {\n\n if (isset($_REQUEST['oauth_token']) && $_SESSION['oauth_token'] !== $_REQUEST['oauth_token']) {\n echo \"oauth token is not the same as request token.\";\n session_destroy();\n }\n\n if (!isset($_SESSION['access_token']) || empty($_SESSION['access_token'])) {\n $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $_SESSION['oauth_token'], $_SESSION['oauth_token_secret']);\n try {\n $access_token = $connection->oauth(\"oauth/access_token\", array(\"oauth_verifier\" => $_REQUEST['oauth_verifier']));\n $_SESSION['access_token'] = $access_token;\n } catch (Abraham\\TwitterOAuth\\TwitterOAuthException $e) {\n echo(\"The returned oauth token is not valid.\");\n }\n }\n\n return $_SESSION['access_token'];\n } else if (isset($_SESSION['access_token']) && !empty($_SESSION['access_token'])) {\n return $_SESSION['access_token'];\n } else {\n\n $request_token = $connection->oauth('oauth/request_token', array('oauth_callback' => REDIRECT_URI));\n\n $_SESSION['oauth_token'] = $request_token['oauth_token'];\n $_SESSION['oauth_token_secret'] = $request_token['oauth_token_secret'];\n $url = $connection->url('oauth/authorize', array('oauth_token' => $request_token['oauth_token']));\n\n Echo \"<a href=$url>login</a>\";\n return null;\n }\n\n}", "public function get_token(){\n\t\tglobal $SLIQR_CONFIG;\n\t\t$c = $SLIQR_CONFIG;\n\t\tif(session_id() && array_key_exists(\"twitter_oauth_key\", $_SESSION)){\n\t\t\t$oauth = new OAuthService(\n\t\t\t\t$c[\"twitter\"][\"key\"], \n\t\t\t\t$c[\"twitter\"][\"secret\"],\n\t\t\t\t$_SESSION[\"twitter_oauth_key\"],\n\t\t\t\t$_SESSION[\"twitter_oauth_secret\"]\n\t\t\t);\n\t\t\t$_SESSION[\"twitter_oauth_key\"] = NULL;\n\t\t\t$_SESSION[\"twitter_oauth_secret\"] = NULL;\n\t\t\tunset($_SESSION[\"twitter_oauth_key\"]);\n\t\t\tunset($_SESSION[\"twitter_oauth_secret\"]);\n\n\t\t\t//\tgo get the access token.\n\t\t\t$t = $oauth->get_access_token($this->base_url . $this->access_token_url);\n\t\t\tif($t){\n\t\t\t\t//\tget the user's info and test for unique.\n\t\t\t\t$r = $oauth->GET($this->base_url . \"/account/verify_credentials.json\");\n\t\t\t\t$obj = json_decode($r[\"response\"]);\n\t\t\t\t$uid = $obj->id;\n\n\t\t\t\tif($this->is_unique_and_owned($uid)){\n\t\t\t\t\t$this->authorization($t);\n\t\t\t\t\t$this->create();\n\t\t\t\t\t$this->set_properties(array(\n\t\t\t\t\t\t\"uid\"=>$obj->id,\n\t\t\t\t\t\t\"screen_name\"=>$obj->screen_name,\n\t\t\t\t\t\t\"avatar\"=>$obj->profile_image_url,\n\t\t\t\t\t\t\"url\"=>\"http://twitter.com/\" . $obj->screen_name\n\t\t\t\t\t), true);\n\t\t\t\t} else {\n\t\t\t\t\tthrow new Exception('TwitterPresence->get_token: a user with this profile already exists on Sliqr!');\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}" ]
[ "0.68762326", "0.6623289", "0.6510552", "0.64777", "0.64562374", "0.6184138", "0.6164014", "0.61508816", "0.6134854", "0.608868", "0.6076587", "0.60261977", "0.6011411", "0.59382236", "0.59248793", "0.5883443", "0.58658904", "0.58433926", "0.57713544", "0.5768814", "0.57577264", "0.57576126", "0.5733019", "0.5723773", "0.5721492", "0.5708822", "0.56977654", "0.5692785", "0.56777334", "0.5655384" ]
0.66425693
1
Test Generated JSON files
public function testGeneratedJSONFiles() { $kernel = static::createKernel(); $application = new Application($kernel); $command = $application->find('stat:generate'); $commandTester = new CommandTester($command); $commandTester->execute([ 'input' => $kernel->getProjectDir() . '/tests/logs/dump', ]); // assert txt and json files were generated $this->assertFileExists($json = $kernel->getProjectDir() . '/tests/logs/output/test.json'); // get json to array $json_array = json_decode(file_get_contents($json), true); // assert ISBN of the book with longest checkout time $this->assertStringContainsString( $json_array['book_longest_checkout'], '99-9263-544-1' ); // assert total number of books checked out $this->assertStringContainsString($json_array['book_total_checkout'], 3); // assert Person ID of person with the largest checkouts currently $this->assertStringContainsString($json_array['person_largest_checkout'], 3); // assert Person ID of person has most checkouts $this->assertStringContainsString($json_array['person_most_checkout'], 3); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function testBadJson()\n\t{\n\t\t$loader = LoadManager::getInstance();\n\n\t\t$config1 = tempnam(\"./\", \"config1\");\n\t\t$handle1 = fopen($config1, \"w\");\n\t\tfwrite($handle1, \"{\\\"load:\\\"$config1\\\"}\"); // json missing a quotation\n\n\t\ttry {\n\t\t\tLoadManager::load($config1);\n\t\t\t$this->fail('Did not throw an exception with a bad JSON file.');\n\t\t} catch(\\Vcms\\Exception\\Syntax $e) {}\n\n\t\tfclose($handle1);\n\t\tunlink($config1);\n\t}", "public function testGeneratedTextFiles() {\n\n $kernel = static::createKernel();\n $application = new Application($kernel);\n $command = $application->find('stat:generate');\n $commandTester = new CommandTester($command);\n $commandTester->execute([\n 'input' => $kernel->getProjectDir() . '/tests/logs/dump',\n ]);\n \n // assert txt and json files were generated\n $this->assertFileExists($txt = $kernel->getProjectDir() . '/tests/logs/output/test.txt');\n $this->assertFileExists($json = $kernel->getProjectDir() . '/tests/logs/output/test.json');\n\n // get file lines to array\n $txt_array = file($txt, FILE_IGNORE_NEW_LINES);\n\n // get json to array\n $json_array = json_decode(file_get_contents($json), true);\n\n // assert ISBN of the book with longest checkout time\n $this->assertStringContainsString(\n $txt_array[0], \n 'ISBN of the book with longest checkout time: 99-9263-544-1'\n );\n\n // assert total number of books checked out\n $this->assertStringContainsString(\n $txt_array[1], \n 'Total number of books checked out : 3'\n );\n\n // assert Person ID of person with the largest checkouts currently\n $this->assertStringContainsString(\n $txt_array[2], \n 'Person ID of person with the largest checkouts now: 3'\n );\n\n // assert Person ID of person has most checkouts\n $this->assertStringContainsString(\n $txt_array[3], \n 'Person ID of person has most checkouts: 3'\n );\n }", "public function testGenerateFileValidation()\n {\n Storage::fake('trivago');\n\n $data = [\n 'output' => ['xyz']\n ];\n $response = $this->json('POST', 'generate-file', $data);\n\n $this->assertEquals(422, $response->getStatusCode());\n }", "public function testJsonBundles() {\n\t\t$bundle = new MessageBundle(['bundle' => 'ex']);\n\t\t$bundle->addReader(new JsonReader());\n\n\t\t$messages = $bundle->loadResource('default');\n\n\t\t$this->assertTrue(is_array($messages));\n\t\t$this->assertEquals(['titon', 'test', 'type', 'format'], array_keys($messages));\n\t\t$this->assertEquals([\n\t\t\t'titon' => 'Titon',\n\t\t\t'test' => 'Test',\n\t\t\t'type' => 'json',\n\t\t\t'format' => '{0,number,integer} health, {1,number,integer} energy, {2,number} damage'\n\t\t], $messages);\n\n\t\t$messages = $bundle->loadResource('doesntExist');\n\n\t\t$this->assertTrue(is_array($messages));\n\t\t$this->assertEmpty($messages);\n\t}", "public function testJsonStructureForCounts()\n {\n \t//refresh migrate to delete account [email protected] to seed data\n \t$this->artisan('migrate:refresh');\n $this->seed('DatabaseSeeder');\n $response = $this->json('GET', '/api/statistics/counts');\n $response->assertJsonStructure([ \n 'data' => [\n 'categories',\n 'daily_menus',\n 'foods',\n 'materials',\n 'orders',\n 'suppliers',\n 'users'\n ],\n 'success'\n ]);\n }", "public function generateAndDownloadFileJSON($json)\r\n {\r\n \r\n header('Cache-Control: max-age=0');\r\n header('Content-Type: text/json; charset=utf-8');\r\n header('Content-Disposition: attachment; filename=\"my_json_file.json\";');\r\n $output = fopen('php://output', 'w');\r\n \r\n fwrite($output, $json);\r\n fclose($output);\r\n }", "public function testUsersUseJson()\n {\n $users = $this->createUser();\n\n $this->get('/api/v1.0/user?api_token=' . $users\n ->api_token)->seeJson();\n }", "function test_json_serializable() {\n\t\t$this->markTestIncomplete('Missing test implementation.');\n\t}", "public function testJsonStructureForTrends()\n {\n $this->seed('DatabaseSeeder');\n $response = $this->json('GET', '/api/statistics/trends');\n $response->assertJsonStructure([\n 'data' => [\n 'foods' => [\n [\n 'id', 'name', 'category_id', 'price', 'image', 'description', 'total_order'\n ]\n ],\n 'materials' => [\n [\n 'id', 'name', 'category_id', 'price', 'image', 'description', 'total_order'\n ]\n ]\n ],\n 'success'\n ]);\n }", "public function testExample()\n {\n $faker = Faker\\Factory::create();\n\n foreach (range(1, 10) as $key) {\n $data = [\n 'name' => $faker->name,\n 'description' => $faker->text\n ];\n\n $this->post('/api/films', $data)->seeJsonEquals([\n 'created' => true\n ]);\n }\n }", "public function testGetJsonView() {\n\t\t$result = $this->testAction(Router::url(array('controller' => 'Scribbles', 'action' => 'view', '1234567.json')), array('method' => 'get', 'return' => 'contents'));\n\t\t$this->assertFalse(strpos($result, 'I am a Scribble!'), 'JSON response should not contain the Scribble requested.');\n\t}", "public function testGeneration()\n {\n $loaderDouble = $this->getMockBuilder('Graviton\\\\GeneratorBundle\\\\Definition\\\\Loader\\\\LoaderInterface')\n ->disableOriginalConstructor()\n ->onlyMethods(['load'])\n ->getMockForAbstractClass();\n\n $definitions = [\n Utils::getJsonDefinition(__DIR__ . '/Resources/Definition/TestA.json'),\n Utils::getJsonDefinition(__DIR__ . '/Resources/Definition/TestB.json')\n ];\n\n $loaderDouble\n ->expects($this->once())\n ->method('load')\n ->willReturn($definitions);\n\n $fieldMapper = new ResourceGenerator\\FieldMapper();\n $fieldMapper->addMapper(new ResourceGenerator\\FieldTypeMapper());\n $fieldMapper->addMapper(new ResourceGenerator\\FieldNameMapper());\n $fieldMapper->addMapper(new ResourceGenerator\\FieldJsonMapper());\n $fieldMapper->addMapper(new ResourceGenerator\\FieldTitleMapper());\n $fieldMapper->addMapper(new ResourceGenerator\\FieldHiddenRestrictionMapper());\n\n $bundleGenerator = new BundleGenerator();\n $bundleGenerator->setExposeSyntheticMap(null);\n\n $resourceGenerator = new ResourceGenerator(\n new Filesystem(),\n $fieldMapper,\n new ResourceGenerator\\ParameterBuilder()\n );\n $resourceGenerator->setExposeSyntheticMap(null);\n\n $dynamicBundleGenerator = new DynamicBundleBundleGenerator();\n $dynamicBundleGenerator->setExposeSyntheticMap(null);\n\n $command = new GenerateDynamicBundleCommand(\n $loaderDouble,\n $bundleGenerator,\n $resourceGenerator,\n $dynamicBundleGenerator,\n Utils::getSerializerInstance()\n );\n\n $application = new Application();\n $application->add($command);\n $fs = new Filesystem();\n\n $command = $application->find('graviton:generate:dynamicbundles');\n\n $tester = new CommandTester($command);\n $generationDir = sys_get_temp_dir().'/grvTest_'.uniqid().'/';\n $fs->mkdir($generationDir);\n\n $tester->execute(\n array_merge(\n ['command' => $command->getName()],\n ['--json' => __DIR__ . '/Resources/Definition/'],\n ['--srcDir' => $generationDir]\n )\n );\n\n /****** ASSERTS AFTER GENERATION *****/\n\n // check if all needed file exist\n $fileList = file(__DIR__.'/Resources/generated_filelist');\n foreach ($fileList as $file) {\n $file = $generationDir.trim($file);\n $this->assertTrue((is_dir($file) || is_file($file)));\n }\n\n // expose as\n $serializerConf = $this->getSerializerFile(\n $generationDir.'GravitonDyn/TestBBundle/Resources/config/serializer/Document.TestB.xml'\n );\n $this->assertSame('$c', (string) $serializerConf->class[0]->property[4]['serialized-name']);\n\n // id not set (noIdDefined)\n // * normal one is not excluded\n $serializerConf = $this->getSerializerFile(\n $generationDir.'GravitonDyn/TestABundle/Resources/config/serializer/Document.TestA.xml'\n );\n $this->assertNull($serializerConf->class[0]->property[0]['exclude']);\n // * no id defined is excluded (in TestB we don't have an id property in field definition)\n $serializerConf = $this->getSerializerFile(\n $generationDir.'GravitonDyn/TestBBundle/Resources/config/serializer/Document.TestB.xml'\n );\n $this->assertTrue((boolean) $serializerConf->class[0]->property[0]['exclude']);\n // * embed is excluded as well\n $serializerConf = $this->getSerializerFile(\n $generationDir.'GravitonDyn/TestABundle/Resources/config/serializer/Document.TestAExtref.xml'\n );\n $this->assertTrue((boolean) $serializerConf->class[0]->property[0]['exclude']);\n // * expose as for extref\n $serializerConf = $this->getSerializerFile(\n $generationDir.'GravitonDyn/TestABundle/Resources/config/serializer/Document.TestAExtref.xml'\n );\n $this->assertSame(\n '$ref',\n (string) $serializerConf->class[0]->property[3]['serialized-name']\n );\n $this->assertSame(\n 'Graviton\\DocumentBundle\\Entity\\ExtReference',\n (string) $serializerConf->class[0]->property[3]->type\n );\n\n // services\n $serviceConf = $this->getYmlFile(\n $generationDir.'GravitonDyn/TestABundle/Resources/config/services.yml'\n );\n // * repository is defined\n $this->assertTrue(isset($serviceConf['services']['gravitondyn.testa.repository.testaembed']));\n // * points to doctrine factory\n $this->assertSame(\n ['@doctrine_mongodb.odm.default_document_manager', 'getRepository'],\n $serviceConf['services']['gravitondyn.testa.repository.testaembed']['factory']\n );\n // * tag and router base is set\n $this->assertSame(\n ['name' => 'graviton.rest', 'collection' => 'TestA', 'router-base' => '/testa/'],\n $serviceConf['services']['gravitondyn.testa.controller.testa']['tags'][0]\n );\n\n // delete dir\n $fs->remove($generationDir);\n }", "public function testSuccess(): void\n {\n $data = json_encode([\n 'wiki' => 'https://some_test_wiki.com/w/api.php',\n 'category' => 'TestCategory'\n ]);\n\n file_put_contents('config_test.json', $data);\n\n $config = new ConfigJson('config_test.json');\n\n $configParsed = $config->parseConfig();\n $this->assertIsArray($configParsed);\n\n $this->assertEquals([\n 'wiki' => 'https://some_test_wiki.com/w/api.php',\n 'category' => 'TestCategory'\n ], $configParsed);\n }", "public function testFormatJson(): void {\n $obj = new Magento\\Report('My Title', '21-05-11 03:25:00', 'My Content');\n $result = $obj->formatJson();\n\n $inputArr = [\n 'title' => 'My Title',\n 'date' => '21-05-11 03:25:00',\n 'content' => 'My Content'\n ];\n\n $this->assertIsString($result);\n $this->assertJsonStringEqualsJsonString(\n json_encode($inputArr),\n $result\n );\n\n // Convert JSON to Array\n $result = json_decode($result, TRUE);\n\n $this->assertIsArray($result);\n $this->assertCount(3, $result);\n\n $this->assertArrayHasKey('title', $result);\n $this->assertArrayHasKey('date', $result);\n $this->assertArrayHasKey('content', $result);\n\n $this->assertEquals('My Title', $result['title']);\n $this->assertEquals('21-05-11 03:25:00', $result['date']);\n $this->assertEquals('My Content', $result['content']);\n\n $this->assertNotEquals('My Second Title', $result['title']);\n $this->assertNotEquals('21-05-12 03:25:00', $result['date']);\n $this->assertNotEquals('My Second Content', $result['content']);\n\n $this->assertContains('My Title', $result);\n $this->assertContains('21-05-11 03:25:00', $result);\n $this->assertContains('My Content', $result); \n\n $this->assertNotContains('My Second Title', $result);\n $this->assertNotContains('21-05-12 03:25:00', $result);\n $this->assertNotContains('My Second Content', $result);\n\n // When Properties are not defined\n $obj = new Magento\\Report();\n $result = $obj->formatJson();\n\n $this->assertIsString($result);\n\n // Convert JSON to Array\n $result = json_decode($result, TRUE);\n\n $this->assertIsArray($result);\n $this->assertCount(3, $result);\n\n $this->assertArrayHasKey('title', $result);\n $this->assertArrayHasKey('date', $result);\n $this->assertArrayHasKey('content', $result);\n\n $this->assertEquals('', $result['title']);\n $this->assertEquals('', $result['content']);\n\n $this->assertNotEquals('My Second Title', $result['title']);\n $this->assertNotEquals('My Second Content', $result['content']);\n\n $this->assertContains('', $result);\n $this->assertContains('', $result);\n\n $this->assertNotContains('My Second Title', $result);\n $this->assertNotContains('My Second Content', $result);\n\n }", "public function testJsonInfoUserStructure(){\n factory(User::class, self::NUMBER_RECORD_CREATE)->create();\n $this->app->instance('middleware.disable', true);\n $response = $this->json('GET', '/api/users/1');\n $response->assertJsonStructure($this->jsonStructureInfoUser());\n }", "function readjson($file)\r\n{\r\n\r\nif(file_exists($file)) {// check if the fiLe exists\r\n\t$filedata = file_get_contents($file);//read fiLe\r\n\t$objson = json_decode($filedata, true); // true geeft associatieve array\r\n $objson = AddSchool($objson);\r\n\techo\"<hr><code><pre>\";\r\n\t\tprint_r($objson); //Laat de array zien\r\n\t\techo\"</pre></code><hr>\";\r\n\t\tfile_put_contents('text.json', json_encode($objson));\r\n}\r\n else echo $file .' not exists'; }", "public function testLoadData3() {\n $Repoman = new Repoman(self::$modx,array());\n $data = $Repoman->load_data(dirname(__FILE__).'/repos/pkg5/bad_data/modChunk.bad_json.json',true);\n }", "public function test_asserting_a_json_paths_value()\n {\n $response = $this->json('POST', '/adminform/create', [\n \"SurveyName\"=>\"Nairouz\",\n \"qNumber\" => 4,\n \"qType\" => \"DropDown\",\n \"qText\" => \"required\"\n ]);\n\n $response\n ->assertStatus(200);\n // ->assertJsonPath('team.owner.name', 'Darian');\n }", "protected function setUp ()\n {\n parent::setUp();\n\n $this->fixture = <<<'EOF'\n{\n \"id\":\"leadresonder_route\",\n \"description\":\"some long description of the model\",\n \"properties\":{\n \"usr_mlr_route_id\":{\n \"type\":\"integer\",\n \"description\":\"some long winded description.\"\n },\n \"route\":{\n \"type\":\"string\",\n \"description\":\"some long description of the model.\"\n },\n \"createdDate\":{\n \"type\":\"string\",\n \"description\":\"\"\n },\n \"tags\":{\n \"type\":\"array\",\n \"description\":\"this is a reference to `tag`\",\n \"items\" : {\n \"$ref\": \"tag\"\n }\n },\n \"arrayItem\":{\n \"type\":\"array\",\n \"description\":\"This is an array of strings\",\n \"items\" : {\n \"type\": \"string\"\n }\n },\n \"refArr\":{\n \"type\":\"array\",\n \"description\":\"This is an array of integers.\",\n \"items\" : {\n \"type\": \"integer\"\n }\n },\n \"enumVal\":{\n \"type\":\"string\",\n \"description\":\"This is an enum value.\",\n \"enum\": [\"Two Pigs\",\"Duck\",\"And 1 Cow\"]\n },\n \"integerParam\":{\n \"description\":\"This is an integer Param\",\n \"type\":\"integer\"\n }\n }\n}\nEOF;\n\n\n }", "function test_json_error() {\n\t\t$this->markTestIncomplete('Missing test implementation.');\n\t}", "public function testJsonPostAction()\n {\n $this->client = static::createClient();\n $this->client->request(\n 'POST',\n 'api/v1/pages.json',\n [],\n [],\n ['CONTENT_TYPE' => 'application/json'],\n '{\"title\": \"title1\", \"body\": \"body1\"}'\n );\n\n $this->assertJsonResponse($this->client->getResponse(), 201, false);\n }", "public function testDataOnCreated(): void\n {\n $response = $this->json(\n 'POST',\n $this->uri,\n [\n\t\t\t\t'model' => $this->model,\n\t\t\t\t'attributes' => [\n\t\t\t\t\t'col1' => 'content1'\n\t\t\t\t],\n ]\n\t\t);\n\n $response\n ->assertJson([\n 'data.object.col1' => 'content1',\n 'data.object.col2' => 'content',\n\t\t\t]);\n }", "public function testExample()\n {\n $response = $this->json('POST','/user',['name'=>'Dinesh']);\n\n $response->assertStatus(200)\n \t\t\t->assertJson(['created'=>true]);\n }", "public function jsonFile(){\n $insta = DB_DataObject::Factory('Rexr_instagram');\n DB_DataObject::debugLevel(0);\n $insta->find();\n $dataInsta=[];\n $i=0;\n while($insta->fetch()){\n $dataInsta[$i]['low_resolution']=$insta->low_resolution ;\n $dataInsta[$i]['count']=$insta->count ;\n $dataInsta[$i]['link']=$insta->link ;\n $dataInsta[$i]['tags']=$insta->tags ;\n $dataInsta[$i]['likes']=$insta->likes ;\n $dataInsta[$i]['img_low_resolution']=$insta->img_low_resolution ;\n $dataInsta[$i]['text']=$insta->text ;\n $dataInsta[$i]['username']=$insta->username ;\n $dataInsta[$i]['profile_picture']=$insta->profile_picture ;\n $dataInsta[$i]['insta_id']=$insta->insta_id ;\n $i++;\n }\n //printVar($dataInsta,'arreglo de datos instagram');\n $insta->free();\n $fp = fopen('results/d.json', 'w');\n fwrite($fp, json_encode($dataInsta));\n fclose($fp);\n\n }", "public function testJsonSwitcharoo()\n {\n $card = new Card('What is your name?', 'Peter');\n $json = $card->toJson();\n $newCard = Card::fromJson($json);\n $this->assertEquals('What is your name?', $newCard->getQuestion());\n }", "public function testGenerate()\n {\n }", "public function test_example()\n {\n // $response = $this->get('/');\n // $this->assertTrue(true);\n // $response->assertStatus(200);\n $response = $this->withHeaders([\n 'X-Header' => 'Value',\n ])->json('POST', '/main', ['item_name' => '111','item_number' => '222']);\n\n $response\n ->assertStatus(200);\n // ->assertJson([\n // 'created' => true,\n // ]);\n $this->assertTrue(true);\n }", "public function run()\n {\n $template = file_get_contents($this->templateFilePath);\n $data = json_decode($template);\n\n if (json_last_error())\n {\n throw new Exception('malformed JSON data in template');\n }\n\n $this->createFiles($data);\n }", "private function check_file()\n {\n\n // Checks if DIR exists, if not create\n if (! is_dir($this->dir)) {\n mkdir($this->dir, 0700);\n }\n // Checks if JSON file exists, if not create\n if (! file_exists($this->file)) {\n touch($this->file);\n // $this->commit();\n }\n\n if ($this->load == 'partial') {\n $this->fp = fopen($this->file, 'r+');\n if (! $this->fp) {\n throw new \\Exception('Unable to open json file');\n }\n\n $size = $this->check_fp_size();\n if ($size) {\n $content = get_json_chunk($this->fp);\n\n // We could not get the first chunk of JSON. Lets try to load everything then\n if (! $content) {\n $content = fread($this->fp, $size);\n } else {\n // We got the first chunk, we still need to put it into an array\n $content = sprintf('[%s]', $content);\n }\n\n $content = json_decode($content, true);\n } else {\n // Empty file. File was just created\n $content = [];\n }\n } else {\n // Read content of JSON file\n $content = file_get_contents($this->file);\n $content = json_decode($content, true);\n }\n\n // Check if its arrays of jSON\n if (! is_array($content) && is_object($content)) {\n throw new \\Exception('An array of json is required: Json data enclosed with []');\n }\n // An invalid jSON file\n if (! is_array($content) && ! is_object($content)) {\n throw new \\Exception('json is invalid');\n }\n $this->content = $content;\n return true;\n }", "public function testItShouldGetListingOfTheResource()\n {\n $this->getNewEntry();\n $json = $this->json;\n $json['data'] = [];\n $json['data']['*'] = $this->json['data'];\n\n $this->json('GET', $this->base_url, [], $this->getHeaders())\n ->assertStatus(200)\n ->assertJsonStructure($json);\n }" ]
[ "0.674708", "0.65471166", "0.65223366", "0.64002645", "0.61388946", "0.60497344", "0.6027356", "0.59824175", "0.597046", "0.5962165", "0.59605294", "0.59476507", "0.5944395", "0.5938332", "0.5937662", "0.5907384", "0.5864113", "0.58183056", "0.5813972", "0.58096904", "0.5807532", "0.5800781", "0.57969946", "0.5779886", "0.57714427", "0.5761525", "0.57314116", "0.57301474", "0.5725743", "0.57210404" ]
0.830831
0
Test Generated Text files
public function testGeneratedTextFiles() { $kernel = static::createKernel(); $application = new Application($kernel); $command = $application->find('stat:generate'); $commandTester = new CommandTester($command); $commandTester->execute([ 'input' => $kernel->getProjectDir() . '/tests/logs/dump', ]); // assert txt and json files were generated $this->assertFileExists($txt = $kernel->getProjectDir() . '/tests/logs/output/test.txt'); $this->assertFileExists($json = $kernel->getProjectDir() . '/tests/logs/output/test.json'); // get file lines to array $txt_array = file($txt, FILE_IGNORE_NEW_LINES); // get json to array $json_array = json_decode(file_get_contents($json), true); // assert ISBN of the book with longest checkout time $this->assertStringContainsString( $txt_array[0], 'ISBN of the book with longest checkout time: 99-9263-544-1' ); // assert total number of books checked out $this->assertStringContainsString( $txt_array[1], 'Total number of books checked out : 3' ); // assert Person ID of person with the largest checkouts currently $this->assertStringContainsString( $txt_array[2], 'Person ID of person with the largest checkouts now: 3' ); // assert Person ID of person has most checkouts $this->assertStringContainsString( $txt_array[3], 'Person ID of person has most checkouts: 3' ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function runTextTestFixture(): string\n {\n ob_start();\n $argv = ['texttest_fixture.php', '11'];\n include __DIR__.'/../../fixtures/texttest_fixture.php';\n\n return ob_get_clean();\n }", "public function testCustomTextFile()\n {\n $testFile = './tests/testWordList.txt';\n\n $testWordList = explode(\"\\n\", file_get_contents($testFile));\n\n $password = PasswordGenerator::generate([\n 'wordList' => $testFile,\n ]);\n\n $passwordParts = $this->splitIntoParts($password);\n\n array_walk($passwordParts, function ($part) use ($testWordList) {\n $this->assertContains($part, $testWordList, \"Custom word list is not used\");\n });\n }", "public function testGetOutputFile()\n {\n $this->calc->setOutputFile('test.txt');\n $this->invokeMethod($this->calc,'createFile');\n $result = [\n 'month' == 'September',\n 'salary_date' => '2016-09-30',\n 'bonus_date' => '2016-10-19'\n ];\n $this->invokeMethod($this->calc,'addResultToFile',[$result]);\n $this->assertInstanceOf('SplFileObject',$this->calc->getResultsFile());\n }", "function testFilePathGeneration() {\n\t\t$file = TESTS . 'cases' . DS . 'models' . DS . 'my_class.test.php';\n\n\t\t$this->Task->Dispatch->expectNever('stderr');\n\t\t$this->Task->Dispatch->expectNever('_stop');\n\n\t\t$this->Task->setReturnValue('in', 'y');\n\t\t$this->Task->expectAt(0, 'createFile', array($file, '*'));\n\t\t$this->Task->bake('Model', 'MyClass');\n\n\t\t$this->Task->expectAt(1, 'createFile', array($file, '*'));\n\t\t$this->Task->bake('Model', 'MyClass');\n\n\t\t$file = TESTS . 'cases' . DS . 'controllers' . DS . 'comments_controller.test.php';\n\t\t$this->Task->expectAt(2, 'createFile', array($file, '*'));\n\t\t$this->Task->bake('Controller', 'Comments');\n\t}", "public function testOpeningAndGettingContents()\n {\n $testString = 'Different operating system families have different line-ending conventions. When you write a text file and want to insert a line break, you need to use the correct line-ending character(s) for your operating system.';\n $testFileName = $this->getTempFileName('GAAnotherFileToTest.txt');\n file_put_contents($testFileName, $testString);\n $this->assertFileExists($testFileName, 'Unable to create test file');\n $file = new File($testFileName);\n $this->assertEquals($testString, $file->getContent());\n $this->assertEquals($testString, $file->getContents());\n $this->assertEquals($testString, $file->read());\n }", "public function testGeneratedJSONFiles() {\n\n $kernel = static::createKernel();\n $application = new Application($kernel);\n $command = $application->find('stat:generate');\n $commandTester = new CommandTester($command);\n $commandTester->execute([\n 'input' => $kernel->getProjectDir() . '/tests/logs/dump',\n ]);\n\n // assert txt and json files were generated\n $this->assertFileExists($json = $kernel->getProjectDir() . '/tests/logs/output/test.json');\n\n // get json to array\n $json_array = json_decode(file_get_contents($json), true);\n\n // assert ISBN of the book with longest checkout time\n $this->assertStringContainsString(\n $json_array['book_longest_checkout'], \n '99-9263-544-1'\n );\n\n // assert total number of books checked out\n $this->assertStringContainsString($json_array['book_total_checkout'], 3);\n\n // assert Person ID of person with the largest checkouts currently\n $this->assertStringContainsString($json_array['person_largest_checkout'], 3);\n\n // assert Person ID of person has most checkouts\n $this->assertStringContainsString($json_array['person_most_checkout'], 3);\n }", "#[@test]\n public function onefile() {\n $this->assertEquals(\n array('hello.txt' => 'World'),\n $this->entriesWithContentIn($this->archiveReaderFor('fixtures', 'onefile'))\n );\n }", "public function testSimpleCreateFile()\n {\n $testString = 'This is a test';\n $testFileName = $this->getTempFileName('FileTesting.txt');\n $file = File::create($testFileName);\n $file->write($testString)\n ->save();\n $this->assertFileExists($testFileName, 'Unable to create file');\n $this->assertEquals($testString, file_get_contents($testFileName), 'Contents of file is not correct');\n }", "public function testBakeActionsContent()\n {\n $this->generatedFile = APP . 'Controller/BakeArticlesController.php';\n $this->exec('bake controller --connection test --no-test BakeArticles');\n\n $result = file_get_contents($this->generatedFile);\n $this->assertSameAsFile(__FUNCTION__ . '.php', $result);\n }", "public function testGenerate()\n {\n }", "function create_test($file_path_to_test, $test_template_path = '') {\n if (substr($file_path_to_test, -4) != '.php') $file_path_to_test .= '.php';\n if (!file_exists($file_path_to_test)) {\n $file_path_to_test = realpath(__DIR__.'/../src/'.$file_path_to_test);\n if (!file_exists($file_path_to_test)) die($file_path_to_test . ' is not a file');\n }\n if (substr($file_path_to_test, -4) != '.php') die($file_path_to_test . ' is not a PHP file');\n\n $filename = basename($file_path_to_test, '.php');\n\n $test_filename = $filename.'Test.php';\n $test_filepath = __DIR__.'/../tests/'.$test_filename;\n \n if (!file_exists($test_filepath)) {\n if ($test_template_path == '') $test_template_path = __DIR__.'/../tests/_Test.php.model';\n if (!file_exists($test_template_path)) die('The tests template file '.$test_template_path.' does not exist');\n $test_file_contents = file_get_contents($test_template_path);\n \n $test_file_contents = str_replace('__MODULE__', $filename, $test_file_contents);\n \n file_put_contents($test_filepath, $test_file_contents);\n echo \"Gloria a Dio, the file \".$test_filepath.\" has been successfully created !\";\n } else {\n echo \"TODO...\";\n }\n\n}", "protected function getTestFilePath()\n {\n return dirname(__FILE__) . '/../../dummy-text.txt';\n }", "public function testLongWayToCreateFile()\n {\n $testString = 'This is just a string';\n $testFileName = $this->getTempFileName('GAAnotherFileToTest.txt');\n $file = new File;\n $file->setFileName($testFileName);\n $file->write($testString);\n $file->save();\n $this->assertFileExists($testFileName, 'Unable to create file');\n $this->assertEquals($testString, file_get_contents($testFileName), 'Contents of file is not correct');\n }", "public function testLoadFromFile()\n {\n $filePath = __DIR__ . '/test-file.txt';\n $expectedResult = 'test' . PHP_EOL;\n\n $textLoader = new TextLoader();\n\n Assert::assertSame($expectedResult, $textLoader->load($filePath));\n }", "#[@test]\n public function twofiles() {\n $this->assertEquals(\n array('one.txt' => 'Eins', 'two.txt' => 'Zwei'),\n $this->entriesWithContentIn($this->archiveReaderFor('fixtures', 'twofiles'))\n );\n }", "function newTxt($text, $text2)\r\n{\r\n $text1 = file($text); //Reads file 'text.txt' to variable $text1\r\n function writeText($text1, $text2) //Creates a new 'text2.txt' file and writes text from function readTxt to it\r\n {\r\n $text3 = fopen($text2, 'w+');\r\n foreach ($text1 as $kay => $value) {\r\n\r\n if ($kay % 2 == 0) {\r\n fwrite($text3, \"$value\");\r\n\r\n }\r\n }\r\n fclose($text3);\r\n return $text3;\r\n }\r\n\r\n $result = writeText($text1, $text2);\r\n return $result;\r\n}", "public function testTranscripts()\n {\n }", "public function test_performing() {\n $this->file->update('Write to file');\n $this->assert_equal($this->file->load(), 'Write to file');\n\n $this->file->append(\"\\nAppend text\");\n $this->assert_equal($this->file->load(), \"Write to file\\nAppend text\");\n }", "public function testWordFrequencyCounterFileWithWords()\n {\n $this->commandTester->execute([\n 'source' => __DIR__.'/fixtures/file-with-words.txt'\n ]);\n\n $output = $this->commandTester->getDisplay();\n\n $expectedOutput = <<<EOF\nsells,4\nshe,4\nseashore,3\nshells,3\nthe,3\nseashells,2\nare,1\nby,1\ni,1\nif,1\nm,1\non,1\nso,1\nsure,1\nsurely,1\n\nEOF;\n\n Assert::assertSame($expectedOutput, $output);\n }", "public function testCanCreateFileWhenValidFilenameIsSet()\n {\n $this->calc->setOutputFile('test.txt');\n $this->assertTrue($this->invokeMethod($this->calc,'createFile'));\n $this->assertInstanceOf('SplFileObject',$this->calc->getResultsFile());\n }", "public function testHumanTxt()\n\t{\n\t\t$this->assertLink('author', asset('humans.txt'));\n\t}", "public function testGetFileData()\n {\n $this->assertTrue(true);\n }", "public function testAction() {\n\t\trequire_once(ROOT . '/lib/simpletest/autorun.php');\n\n\t\t$test_files_app = MagicUtils::get_directory_list(DIR_APP . \"/temp/tests\");\n\t\t$test_files_core = MagicUtils::get_directory_list(ROOT . \"/tests\");\n\t\t$test_files = array_merge($test_files_core, $test_files_app);\n\t\tMagicLogger::log(\"Running tests\");\n\t\tforeach ($test_files as $test_file) {\n\t\t\trequire_once($test_file);\n\t\t\t$test_class = basename($test_file, \".test.php\");\n\t\t\t$test = new $test_class();\n\t\t\t$test->setUp();\n\t\t\tunset($test);\n\t\t}\n\t\texit;\n\t\tob_start();\n\t\tforeach ($test_files as $test_file) {\n\t\t\t//echo \"Test case file: $test_file\\n\";\n\t\t\trequire_once($test_file);\n\t\t\t$test_class = basename($test_file, \".test.php\");\n\t\t\t$test = new $test_class();\n\t\t\t$test->run(new MagicTestTextReporter());\n\t\t\tunset($test);\n\t\t}\n\n\t\t$test_results = ob_get_flush();\n\t\t//echo $test_results;\n\n\t\tMail::Factory()->add_to(\"[email protected]\")->set_subject(APPNAME . \" automatic test results\")->set_message(\"Test results generated for project \" . APPNAME . \"\\n\\n\" . $test_results)->add_attachment($test_results, \"test_results.txt\")->send()->save();\n\n\t}", "public function testWithFileExist(): void\n {\n $pdfInfo = new PdfInfo();\n $info = $pdfInfo->exec($this->examplePdf);\n\n $this->checkTestData($info);\n }", "function writeText($text1, $text2) //Creates a new 'text2.txt' file and writes text from function readTxt to it\r\n {\r\n $text3 = fopen($text2, 'w+');\r\n foreach ($text1 as $kay => $value) {\r\n\r\n if ($kay % 2 == 0) {\r\n fwrite($text3, \"$value\");\r\n\r\n }\r\n }\r\n fclose($text3);\r\n return $text3;\r\n }", "public function setUp()\n\t{\n\t\t$fh = fopen($this->testFileName, 'w');\n\t\tfwrite($fh, '123abc');\n\t\tfclose($fh);\n\t}", "function test_template()\n {\n $t = $this->template;\n $case = __DIR__ . '/templates/case1.php';\n $content = $t->render( $case, array( 'test' => 'case1' ) );\n $this->assertEquals( 'test:case1', $content );\n }", "public function geenerateTXT(){\n $archivo = fopen('documents/archivo.txt','a');\n $rows = Bienes::find()->all();\n fputs($archivo,\"N° de Bien\");\n fputs($archivo,\" | \");\n fputs($archivo,\"Descripcion\");\n fputs($archivo,\"\\n\");\n foreach($rows as $row)\n {\n fputs($archivo,$row->codigo);\n fputs($archivo,\" | \");\n fputs($archivo,$row->descripcion);\n fputs($archivo,\"\\n\");\n\n }\n\n\n fclose($archivo);\n }", "public function test_all() {\n foreach (Text::Tokenizer($this->data) as $k => $v)\n $this->assert_equal($v, 'line'.$k);\n }", "protected function formatFile()\n {\n foreach ($this->cases as $key => $value) {\n $lines = file($this->file, FILE_IGNORE_NEW_LINES);\n $lines[2] = $this->namespace;\n $lines[8] = $this->getClassName($key, $lines[8]);\n $functions = implode(PHP_EOL, Arr::pluck($value['function'], 'code'));\n $content = array_merge(array_slice($lines, 0, 10) , [$functions] , array_slice($lines, 11));\n \n $this->writeToFile($key . 'Test', $content);\n }\n }" ]
[ "0.66387427", "0.6413656", "0.64067286", "0.6404739", "0.63247013", "0.62715274", "0.6266317", "0.62309194", "0.61862344", "0.61314744", "0.6087183", "0.60469645", "0.5993844", "0.59646386", "0.5958664", "0.59503406", "0.5933933", "0.59288716", "0.59245795", "0.58983827", "0.58949155", "0.5892482", "0.5874464", "0.58551806", "0.5845932", "0.5841083", "0.58380896", "0.58355707", "0.58212537", "0.5766816" ]
0.80189145
0
/ Add support to remove p tags from around kirby formatted text Author: Rob James License: MIT License
function kirbytextsans($text='') { $text = kirbytext($text, true); return preg_replace('/<p>(.*)<\/p>/', '$1', $text); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function strip_tag_p($txt){\n $txt = str_replace('<p>','',$txt);\n $txt = str_replace('</p>','',$txt);\n return $txt;\n}", "private function cleanUpParagraphTagsIfAny($input) {\n\t\t$output = preg_replace(\"/(<p[a-zA-Z0-9_.=,:;#'\\\"\\- \\(\\)]*>)/mi\", \"\", $input);\n\t\t$output = preg_replace(\"/(<\\/p>)/mi\", \"<br>\", $output);\n\t\treturn $output;\n\t}", "function remove_empty_p( $content ) {\n\t$content = force_balance_tags( $content );\n\t$content = preg_replace( '#<p>\\s*+(<br\\s*/*>)?\\s*</p>#i', '', $content );\n\t$content = preg_replace( '~\\s?<p>(\\s|&nbsp;)+</p>\\s?~', '', $content );\n\treturn $content;\n}", "function getCleanedText($text) {\n\n $find = array(\"<o:p>\", \"</o:p>\", \"&nbsp;\");\n $replace = array(\"\", \"\", \" \");\n\n return str_replace($find, $replace, $text);\n\n}", "function html_userapitransformoutput_clean_pre($text)\n{\n $text = str_replace('<br />', '', $text);\n $text = str_replace('<p>', \"\\n\", $text);\n $text = str_replace('</p>', '', $text);\n return $text;\n}", "function remove_empty_p( $content ) {\n\t\t$content = force_balance_tags( $content );\n\t\treturn preg_replace( '#<p>\\s*+(<br\\s*/*>)?\\s*</p>#i', '', $content );\n\t}", "function p2nl($text) {\n\n // replace all <p> and </p> tags with a newline characters\n // ending and starting tags\n $text = str_replace(\"</p>\\n\\n<p>\", \"\\n\\r\", $text);\n\n // remove <p> tag from begining and </p> tag from end of string\n $remove = array(\"<p>\", \"</p>\");\n $text = str_replace($remove, \"\", $text);\n\n return $text;\n\n}", "function remove_some_ptags( $content ) {\r\n $content = preg_replace('/<p>\\s*(<iframe.*>*.<\\/iframe>)\\s*<\\/p>/iU', '\\1', $content);\r\n return $content;\r\n }", "function mt_empty_paragraph_fix( $content ) {\n\t// An array of the offending tags.\n\t$arr = array (\n\t\t'<p>[' => '[',\n\t\t']</p>' => ']',\n\t\t']<br />' => ']'\n\t);\n\t// Remove the offending tags and return the stripped content.\n\t$stripped_content = strtr( $content, $arr );\n\treturn $stripped_content;\n}", "function strip_first_paragraph()\n{\n $str = wpautop(get_the_content());\n // execute shortcodes\n $str = apply_filters('the_content', $str);\n $str = preg_replace('~<p>.*?</p>~s', '', $str, 1);\n return $str;\n}", "function remove_p_on_img($content) {\r\n return preg_replace('/<p>[^<>]*(<img .+?>)[^<>]*<\\/p>/i', '\\1', $content);\r\n}", "function adventure_tours_fix_broken_p( $content ) {\n\t\t// $is_vc_frontend = isset( $_GET['vc_editable'] ) && isset ( $_GET['vc_post_id'] );\n\n\t\t// To prevent processing content that contains revslider related elements,\n\t\t// as force_balance_tags brokes revslider javascript code.\n\t\tif ( strpos( $content, '<script' ) !== false || strpos( $content, 'class=\"rev_slider' ) !== false ) {\n\t\t\treturn $content;\n\t\t}\n\n\t\t// Removes broken <p> tags added by wpuatop filter in case if sorce code editor has been used for content edition.\n\t\t$result = preg_replace(\n\t\t\tarray(\n\t\t\t\t'`<p>\\s*<div([^>]*)>(?:\\s*</p>)?|<div([^>]*)>\\s*</p>`', // <p><div></p>\n\t\t\t\t'`(<p>\\s*)?</div>\\s*</p>|<p>\\s*</div>`', // <p></div></p>\n\t\t\t),\n\t\t\tarray(\n\t\t\t\t'<div$1$2>',\n\t\t\t\t'</div>',\n\t\t\t),\n\t\t\t$content\n\t\t);\n\t\t// Fixes unclosed/unopened P tags\n\t\treturn force_balance_tags( $result );\n\t}", "function pdf_cleaner( $text )\n{\n\t$text = preg_replace(\"#\\s{2,}#s\", \" \", $text );\n\t$text = str_replace( '<p>', \t\t\t\"\\n\\n\", \t$text );\n\t$text = str_replace( '<P>', \t\t\t\"\\n\\n\", \t$text );\n\t$text = str_replace( '<br />', \t\t\t\"\\n\", \t\t$text );\n\t$text = str_replace( '<br>', \t\t\t\"\\n\", \t\t$text );\n\t$text = str_replace( '<BR />', \t\t\t\"\\n\", \t\t$text );\n\t$text = str_replace( '<BR>', \t\t\t\"\\n\", \t\t$text );\n\t$text = str_replace( '<li>', \t\t\t\"\\n - \", \t$text );\n\t$text = str_replace( '<LI>', \t\t\t\"\\n - \", \t$text );\n#\t$text = str_replace( '{mosimage}', \t\t'', \t\t$text );\n#\t$text = str_replace( '{mospagebreak}', \t'',\t\t\t$text );\n\t$text = strip_tags( $text, '<u>' );\n\t$text = pdf_decode( $text );\n\treturn $text;\n}", "function convertParagraph($element) {\n\n // Ignore empty <p> tag.\n if($element->innertext == \"\") {\n \n $element->outertext = \"\";\n }\n \n // Replace <p> tag containing an img and other junk, with just the img.\n if($element->find(\"text\") == null\n && $element->find(\"img\", 0) != null) {\n \n $element->outertext = $element->find(\"img\", 0)->outertext;\n }\n\n // Ignore PO \"upgrade\" text.\n else if(strposi($element->innertext, \"Upgrade to Unlimited Access\") != false) {\n \n $element->outertext = \"\";\n }\n \n // Ignore TT \"member\" text.\n else if(strposi($element->innertext, \"Become a Member\") != false) {\n \n $element->outertext = \"\";\n }\n \n // Ignore unimportant PH content.\n else if(strposi($element->innertext, \"Leave a Comment\") != false\n || $element->class == \"read-more\"\n || $element->class == \"pager-permalink\"\n || $element->class == \"pager-permalink-adjust\") {\n \n $element->outertext = \"\";\n \n }\n \n // <p> tag general scenario.\n else {\n\n $element->outertext = \"\\n\" . getCleanedText($element->innertext) . \"\\n\";\n }\n}", "function removeFormatting($text)\n\t{\n\t\t//remove tags\n\t\t$text = preg_replace ('/<[^>]*>/', '', $text);\n\t\t//remove footnotes/refrences\n\t\t$text = preg_replace ('#\\[\\d+\\]#', '', $text);\n\t\t//remove multiple empty lines/tabs/\n\t\t$text = preg_replace ('/(^[\\r\\n]*|[\\r\\n]+)[\\s\\t]*[\\r\\n]+/', \"\", $text);\n\n\t\t// ----- remove control characters ----- \n\t\t//$string = str_replace(\"\\n\", ' ', $string); // --- replace with empty space\n\t\t$text = str_replace(\"\\t\", ' ', $text); // --- replace with space\n\t\t$text = str_replace(\"\\t\", ' ', $text); // --- replace with space\n\t\t// ----- remove multiple spaces ----- \n\t\t$text = trim(preg_replace('/ {2,}/', ' ', $text));\n\t\t//remove slashes\n\t\t$text = str_replace(\"\\\\\", '', $text); // --- replace with space\n\t\treturn $text;\n\t}", "function stop_article_paragraph()\n{\n\techo \"</p>\";\n\techo \"</div>\";\n}", "function return_clean( $content, $p_tag = false, $br_tag = false )\r\n{\r\n\t$content = preg_replace( '#^<\\/p>|^<br \\/>|<p>$#', '', $content );\r\n\r\n\tif ( $br_tag )\r\n\t\t$content = preg_replace( '#<br \\/>#', '', $content );\r\n\r\n\tif ( $p_tag )\r\n\t\t$content = preg_replace( '#<p>|</p>#', '', $content );\r\n\r\n\treturn do_shortcode( shortcode_unautop( trim( $content ) ) );\r\n}", "function return_clean( $content, $p_tag = false, $br_tag = false )\n{\n\t$content = preg_replace( '#^<\\/p>|^<br \\/>|<p>$#', '', $content );\n\n\tif ( $br_tag )\n\t\t$content = preg_replace( '#<br \\/>#', '', $content );\n\n\tif ( $p_tag )\n\t\t$content = preg_replace( '#<p>|</p>#', '', $content );\n\n\treturn do_shortcode( shortcode_unautop( trim( $content ) ) );\n}", "function clean_inside_tags($txt) {\n\treturn preg_replace(\"/(<[A-Z]+?)\\s(.*?)+(>{1}?)/is\", \"$1$3\", $txt);\n}", "function cleanText( $text ) {\r\n\t\t$text = preg_replace( \"'<script[^>]*>.*?</script>'si\", '', $text );\r\n\t\t$text = preg_replace( '/<!--.+?-->/', '', $text );\r\n\t\t$text = preg_replace( '/{.+?}/', '', $text );\r\n\r\n\t\t// convert html entities to chars (with conditional for PHP4 users\r\n\t\tif(( version_compare( phpversion(), '5.0' ) < 0 )) {\r\n\t\t\trequire_once(JPATH_SITE.DS.'libraries'.DS.'tcpdf'.DS.'html_entity_decode_php4.php');\r\n\t\t\t$text = html_entity_decode_php4($text,ENT_QUOTES,'UTF-8');\r\n\t\t}else{\r\n\t\t\t$text = html_entity_decode($text,ENT_QUOTES,'UTF-8');\r\n\t\t}\r\n\r\n\t\t$text = strip_tags( $text ); // Last check to kill tags\r\n\t\t$text = str_replace('\"', '\\'', $text); //Make sure all quotes play nice with meta.\r\n $text = str_replace(array(\"\\r\\n\", \"\\r\", \"\\n\", \"\\t\"), \" \", $text); //Change spaces to spaces\r\n\r\n // remove any extra spaces\r\n\t\twhile (strchr($text,\" \")) {\r\n\t\t\t$text = str_replace(\" \", \" \",$text);\r\n\t\t}\r\n\t\t\r\n\t\t// general sentence tidyup\r\n\t\tfor ($cnt = 1; $cnt < JString::strlen($text); $cnt++) {\r\n\t\t\t// add a space after any full stops or comma's for readability\r\n\t\t\t// added as strip_tags was often leaving no spaces\r\n\t\t\tif ( ($text{$cnt} == '.') || (($text{$cnt} == ',') && !(is_numeric($text{$cnt+1})))) {\r\n\t\t\t\tif ($text{strlen($cnt+1)} != ' ') {\r\n\t\t\t\t\t$text = substr_replace($text, ' ', $cnt + 1, 0);\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\t\t\r\n\t\treturn $text;\r\n\t}", "function content_remove_wrapping_p( $html ) {\n\n // Iterating a nodelist while manipulating it is not a good thing, because\n // the nodelist dynamically updates itself. Get all things that must be\n // unwrapped and put them in an array.\n $tagNames = array( 'img', 'picture', 'video', 'audio', 'iframe' );\n $mediaElements = array();\n foreach ( $tagNames as $tagName ) {\n $nodes = $html->getElementsByTagName( $tagName );\n foreach ( $nodes as $node ) {\n $mediaElements[] = $node;\n }\n }\n\n foreach ( $mediaElements as $element ) {\n\n // Get a reference to the parent paragraph that may have been added by\n // WordPress. It might be the direct parent node or the grandparent\n // (LOL) in case of links\n $paragraph = null;\n\n // Get a reference to the image itself or to the link containing the\n // image, so we can later remove the wrapping paragraph\n $theElement = null;\n\n if ( $element->parentNode->nodeName == 'p' ) {\n $paragraph = $element->parentNode;\n $theElement = $element;\n } else if ( $element->parentNode->nodeName == 'a' &&\n $element->parentNode->parentNode->nodeName == 'p' ) {\n $paragraph = $element->parentNode->parentNode;\n $theElement = $element->parentNode;\n }\n\n // Make sure the wrapping paragraph only contains this child\n if ( $paragraph && $paragraph->textContent == '' ) {\n $paragraph->parentNode->replaceChild( $theElement, $paragraph );\n }\n }\n\n}", "function ppt_clean_text($string) {\n $chop = 1; // default: just a single char infront of the content\n \n // look for any other crazy things that may be infront of the content\n if (strstr($string, '&lt;') and strpos($string, '&lt;') == 0) { // look for the &lt; in the sting and make sure it is in the front\n $chop = 4; // increase the $chop\n }\n // may need to add more later....\n \n $string = substr($string, $chop);\n \n if ($string != '&#13;') {\n return $string;\n } else {\n return false;\n }\n}", "function nl2p($text) {\n\n // Return if there are no line breaks.\n if (!strstr($text, \"\\n\")) { return $text; }\n\n // put all text into <p> tags\n $text = '<p>' . $text . '</p>';\n\n // replace all newline characters with paragraph\n // ending and starting tags\n $text = str_replace(\"\\n\", \"</p>\\n<p>\", $text);\n\n // remove empty paragraph tags & any cariage return characters\n $remove = array(\"\\r\", \"<p></p>\");\n $text = str_replace($remove,\"\", $text);\n\n return $text;\n\n}", "function <%= name %>_remove_p_around_images($content){\n return preg_replace('/<p>\\s*(<a .*>)?\\s*(<img .* \\/>)\\s*(<\\/a>)?\\s*<\\/p>/iU', '\\1\\2\\3', $content);\n}", "function text_format($text,$is_text_wrapped=true) {\n if(stristr($text, '<!-- raw html -->') !== false) return $text;\n\n include_once('inc/inc.validate.php');\n\n // remove starting and trailing whitespace and blank lines\n $text = preg_replace('/^[\\s\\n]*/s' ,'',$text);\n $text = preg_replace( '/[\\s\\n]*$/s','',$text);\n\n // place into paragraph array and add spaces to both sides\n if($is_text_wrapped == true) {\n // strip out lines with only whitespace chars and reduce multiple blank lines to one\n $text = preg_replace('/^(\\s)*$/m','',$text);\n $paragraphs = explode(\"\\n\\n\",$text);\n foreach($paragraphs as $key => $value) { $paragraphs[$key] = ' '.$value.' '; }\n } else {\n $paragraphs = array(' '.str_replace(\"\\n\",\" <br/>\\n \",$text).' '); // extra spaces are needed for pattern matching\n }\n\n $start = '%(\\s[\\*_/><\\.,-]*)';\n $end = \"([\\*_/><\\.,-]*\\s)%U\";\n $middle = \"((?![^\\S]).*(?![^\\S]))\";\n $m1 = '((?![^\\S])(.(?![';\n $m2 = ']{2}))*[\\S]*(?![^\\S]))';\n $patterns = array(\n '/ & /' => ' &amp; ',\n '/^\\s*# ([^#]*)$/' => '<ul><li>$1</li></ul>', // # bullet point\n '/([ ,.!-])(\\d+)C([ ,.!-])/' => '$1$2&#176;C$3', // add &#176; degree sign after 2C\n\n $start.'(\"(?![^\\S])[^\"]{80,}(?![^\\S])\"[\\.,\\s]+)' .$end => '$1<p class=\"blockquote\"> $2 </p>$3', // \"Big ... Quote\"\n\n $start.'##'.$middle.'##'.$end => '$1<h3 style=\"text-align:center\">$2</h3>$3', // ##Header##\n $start.'\\*'.$middle.'\\*'.$end => '$1<strong>$2</strong>$3', // *Bold*\n //$start.'_' .$middle.'_' .$end => '$1<u>$2</u>$3', // _Underline_\n $start.'//'.$middle.'//'.$end => '$1<em>$2</em>$3', // //Italics//\n $start.'\"' .$middle.'\"' .$end => '$1<em>&quot;$2&quot;</em>$3', // \"Italics\"\n\n $start.'>>'.$m1.'<'.$m2.'>>'.$end => '$1<div style=\"text-align:right;\">$2</div>$3', // >>AlignRight>>\n $start.'<<'.$m1.'>'.$m2.'<<'.$end => '$1<div style=\"text-align:left\">$2</div>$3', // <<AlignLeft<<\n $start.'>>'.$m1.'>'.$m2.'<<'.$end => '$1<div style=\"text-align:center\">$2</div>$3', // >>Center<<\n $start.'<<'.$m1.'<'.$m2.'>>'.$end => '$1<div style=\"text-align:justify\">$2</div>$3', // <<Justify>>\n\n $start.'\\[\\s*'.$middle.'\\s*\\]'.$end => '$1<span class=\"source\">[ $2 ]</span>$3', // [End Quote]\n );\n // run formatting on paragraphs;\n $paragraphs = preg_replace(array_keys($patterns),$patterns,$paragraphs);\n\n // locate and a href emails and links\n foreach($paragraphs as $key => $value) {\n $paragraphs[$key] = highlight_emails($paragraphs[$key]);\n $paragraphs[$key] = highlight_links ($paragraphs[$key]);\n }\n\n foreach($paragraphs as $key => $value) {\n $html .= \" <div>\".$paragraphs[$key].\"</div>\\n\";\n }\n return $html;\n}", "function remove_wysiwyg_breaks($fulltext)\n\t{\n\t\t$fulltext = str_replace('\\\"', '\"', $fulltext);\n\t\tpreg_match('#^(\\[list(=(&quot;|\"|\\'|)(.*)\\\\3)?\\])(.*?)(\\[/list(=\\\\3\\\\4\\\\3)?\\])$#siU', $fulltext, $matches);\n\t\t$prepend = $matches[1];\n\t\t$innertext = $matches[5];\n\n\t\t$find = array(\"</p>\\n<p>\", '<br />', '<br>');\n\t\t$replace = array(\"\\n\", \"\\n\", \"\\n\");\n\t\t$innertext = str_replace($find, $replace, $innertext);\n\n\t\tif ($this->is_wysiwyg('ie'))\n\t\t{\n\t\t\treturn '</p>' . $prepend . $innertext . '[/list]<p>';\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn $prepend . $innertext . '[/list]';\n\t\t}\n\t}", "function shortcode_empty_paragraph_fix($content)\n{ \n $array = array (\n '<p>[' => '[', \n ']</p>' => ']', \n ']<br />' => ']'\n );\n\n $content = strtr($content, $array);\n\n return $content;\n}", "public function paragraphDetectorPass($text) {\n $re = \"/(\\\\n\\\\n)/m\"; \n $subst = \"\\\\par \"; \n \n return preg_replace($re, $subst, $text);\n }", "function parse_shortcode_content( $content ) {\n $content = trim( do_shortcode( $content ) );\n /* Remove '</p>' from the start of the string. */\n if ( substr( $content, 0, 4 ) == '</p>' )\n $content = substr( $content, 4 );\n /* Remove '<p>' from the end of the string. */\n if ( substr( $content, -3, 3 ) == '<p>' )\n $content = substr( $content, 0, -3 );\n /* Remove any instances of '<p></p>'. */\n $content = str_replace( array( '<p></p>' ), '', $content );\n return $content;\n}", "function SamFltrHtml($text,$suff=false)\r\n\t{\r\n \r\n\t return strip_tags($text,$suff);\r\n \r\n\t}" ]
[ "0.7820517", "0.76116794", "0.73427445", "0.72509927", "0.7247669", "0.7170987", "0.70921785", "0.7061682", "0.7048193", "0.69435203", "0.6857639", "0.6787069", "0.67649734", "0.67156905", "0.6700984", "0.65965885", "0.6551581", "0.6528568", "0.6525345", "0.65207225", "0.6520295", "0.65073025", "0.6473297", "0.64577454", "0.6449351", "0.64487606", "0.64242154", "0.6399206", "0.6389282", "0.6380619" ]
0.7661319
1
Get full class name from path. Path must be absolute For example /var/www/user001/data/www/site.ru/admin/controllers/core/LoginController.php transform to admin\controllers\core\LoginController
public static function getFullClassFromPath($path) { return str_replace([\Yii::getAlias('@root'), '.php', '/'], ['', '', '\\'], $path); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private static function classNameFromPath($path)\n {\n $str_list = explode(DS, $path);\n if (strpos($path, HYPHEN) !== false)\n {\n foreach ($str_list as $index => $str)\n {\n if (strpos($str, HYPHEN) !== false)\n {\n $str_list[$index] = implode('', array_map('ucfirst', explode(HYPHEN, $str)));\n }\n }\n }\n return implode(UNDERSCORE, array_map('ucfirst', $str_list));\n }", "private static function getClassName() {\n $className = self::getCompleteClassName();\n $path = explode('\\\\', $className);\n\n return strtolower(array_pop($path));\n }", "public function class_name( $path ) {\n\t\t$file_name = basename( $path, '.php' );\n\t\t$class_name_elements = explode( '-', $file_name );\n\t\tforeach ( $class_name_elements as $key => &$el ) {\n\t\t\t$el = ucwords( $el );\n\t\t}\n\t\treturn implode( '_', $class_name_elements );\n\t}", "public static function \t\tclassname_resolver($_path) {\n\t\treturn \"\\\\\".str_replace(self::resolver_separator, \"\\\\\", $_path);\n\t}", "function getClassForClasspath($a_class_path)\n\t{\n\t\t$path = pathinfo($a_class_path);\n\t\t$file = $path[\"basename\"];\n\t\t$class = substr($file, 6, strlen($file) - 10);\n\n\t\treturn $class;\n\t}", "function class_basename($class)\r\n {\r\n $class = is_object($class) ? get_class($class) : $class;\r\n return basename(str_replace('\\\\', '/', $class));\r\n }", "function class_basename($class)\n{\n\tif (is_object($class)) $class = get_class($class);\n\n\treturn basename(str_replace('\\\\', '/', $class));\n}", "protected function getClassName(): string\n {\n $pos = ($pos = strrpos(static::class, '\\\\')) !== false ? $pos + 1 : 0;\n\n return substr(static::class, $pos);\n }", "function class_basename( $class ) {\n\t$class = is_object( $class ) ? get_class( $class ) : $class;\n\n\treturn basename( str_replace( '\\\\', '/', $class ) );\n}", "public static function class() {\n return strtolower(basename(str_replace('\\\\', '/', static::class)));\n }", "function class_basename($class)\n {\n $class = is_object($class) ? get_class($class) : $class;\n\n return basename(str_replace('\\\\', '/', $class));\n }", "function class_basename($class)\n {\n $class = is_object($class) ? get_class($class) : $class;\n\n return basename(str_replace('\\\\', '/', $class));\n }", "function class_basename($class)\n {\n $class = is_object($class) ? get_class($class) : $class;\n\n return basename(str_replace('\\\\', '/', $class));\n }", "protected function _getBaseName() {\n // delete \"Controller\" at the end and transform the first letter to lower case\n $className = get_class($this);\n return strtolower($className[0]) . substr($className, 1, -10);\n }", "abstract public function getClassPath();", "public function findClass($path)\n {\n $namespace = null;\n\n $tokens = token_get_all(file_get_contents($path));\n\n foreach ($tokens as $key => $token) {\n if ($this->tokenIsNamespace($token)) {\n $namespace = $this->getNamespace($key + 2, $tokens);\n } elseif ($this->tokenIsClassOrInterface($token)) {\n return ltrim($namespace.'\\\\'.$this->getClass($key + 2, $tokens), '\\\\');\n }\n }\n }", "public static function getBaseRouteNameByClassFqn($class)\n {\n $routeName = strtolower($class);\n $routeName = str_replace(\"controller\", \"\", $routeName);\n $routeName = str_replace(\"bundle\", \"\", $routeName);\n $routeName = str_replace(\"\\\\\\\\\", \"\\\\\", $routeName);\n $routeName = str_replace(\"\\\\\", \"_\", $routeName);\n\n return substr($routeName, 1);\n }", "private function getClassFromName(string $name)\n {\n return substr($name, strrpos('\\\\', $name));\n }", "function name(string $class)\n{\n\t/** @var string[] */\n\t$parts = explode('\\\\', $class);\n\treturn array_pop($parts);\n}", "public function __toString()\n {\n $fullClassPath = get_class($this);\n $fullClassPathParts = explode('\\\\', $fullClassPath);\n $fullClassPathParts = array_reverse($fullClassPathParts);\n $className = $fullClassPathParts[0];\n\n return $className;\n }", "function class_basename($class): string\n {\n return Hlp::classBasename($class);\n }", "public function getControllerName() {\r\n $controllerName = str_singular($this->path);\r\n $controllerName[0] = strtoupper($controllerName[0]);\r\n return $controllerName . 'Controller';\r\n }", "private function _getFullClassname()\n {\n $this->_className = get_called_class();\n if( strpos( $this->_className, \"__CG__\" ) !== false )\n {\n $this->_className = substr( $this->_className, strpos( $this->_className, \"__CG__\" ) + 6 );\n }\n return $this->_className;\n }", "public function getClassName()\n {\n if (false !== $pos = strrpos($this->class, '\\\\')) {\n return substr($this->class, $pos + 1);\n }\n\n return $this->class;\n }", "protected function getClass(): string\n {\n return strtolower($this->handleBackslashes(\n get_class($this->manager->getModel())\n ));\n }", "function get_class_name($file) {\n $class = str_replace(\"./cards/\", \"\", $file);\n $class = preg_split(\"/\\//\", $class);\n $class = $class[0];\n return $class;\n }", "function get_class_name();", "protected function getClassName($file)\n {\n preg_match('/^(?:.*\\/)*(.+)\\.php$/i', $file, $m);\n $name = ucfirst($m[1]);\n $name = 'Controller\\\\' . $name;\n return $name;\n }", "public static function getClassnameFromPath($file)\n\t{\n\t\tif (!is_file(FCPATH . $file))\n\t\t{\n\t\t\treturn false;\n\t\t}\n\t\t$fp = fopen(FCPATH . $file, 'r');\n\n\t\t$class\t = $buffer\t = '';\n\t\t$i\t\t = 0;\n\t\twhile (!$class)\n\t\t{\n\t\t\tif (feof($fp))\n\t\t\t\tbreak;\n\n\t\t\t$buffer\t .= fread($fp, 512);\n\t\t\t$tokens\t = token_get_all($buffer);\n\n\t\t\tif (strpos($buffer, '{') === false)\n\t\t\t\tcontinue;\n\n\t\t\tfor (; $i < count($tokens); $i++)\n\t\t\t{\n\t\t\t\tif ($tokens[$i][0] === T_CLASS)\n\t\t\t\t{\n\t\t\t\t\tfor ($j = $i + 1; $j < count($tokens); $j++)\n\t\t\t\t\t{\n\t\t\t\t\t\tif ($tokens[$j] === '{')\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t$class = $tokens[$i + 2][1];\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $class;\n\t}", "private function _getShortClassname()\n {\n return substr( $this->_className, strrpos( $this->_className, '\\\\' ) + 1 );\n }" ]
[ "0.7405129", "0.7016821", "0.6979647", "0.68464994", "0.6658349", "0.6581384", "0.65525526", "0.6543331", "0.6532707", "0.6496375", "0.6449056", "0.6449056", "0.6449056", "0.630047", "0.6299867", "0.6276836", "0.62603796", "0.6250304", "0.62224984", "0.6215394", "0.6213523", "0.6195905", "0.6182692", "0.61645865", "0.61313593", "0.609705", "0.6078343", "0.60773885", "0.6069251", "0.6055634" ]
0.7532926
0
checks if `$haystack` string starts with `$needle`.
private function startsWith(string $haystack, string $needle) { if (version_compare(\PHP_VERSION, '8.0.0') >= 0) { return str_starts_with($haystack, $needle); } return ('' === $needle) || (mb_substr($haystack, 0, mb_strlen($needle)) === $needle); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function startsWith($haystack, $needle)\n\t{\n\t\treturn strncmp($haystack, $needle, strlen($needle)) === 0;\n\t}", "public static function startsWith($haystack, $needle)\n {\n return strncmp($haystack, $needle, strlen($needle)) === 0;\n }", "static function stringStartsWith($haystack, $needle) {\n return (stripos($haystack, $needle) === 0);\n }", "public static function startsWith($haystack, $needle)\n {\n return !strncmp($haystack, $needle, mb_strlen($needle));\n }", "static public function startsWith($haystack, $needle) {\n $length = strlen($needle);\n return (substr($haystack, 0, $length) === $needle);\n }", "protected function stringStartsWith($haystack, $needle)\n {\n return strpos($haystack, $needle) === 0 ? true : false;\n }", "public static function startsWith($haystack, $needle) {\n return !strncmp($haystack, $needle, strlen($needle));\n }", "public static function starts_with($str, $needle)\r\n\t{\r\n\t\t$pos = stripos($str, $needle);\r\n\t\treturn $pos === 0;\r\n\t}", "public static function startsWith($haystack, $needle) {\n return (strpos($haystack, $needle) === 0);\n }", "public static function startsWith(string $haystack, string $needle): bool\r\n {\r\n $length = strlen( $needle );\r\n return substr( $haystack, 0, $length ) === $needle;\r\n }", "public static function startsWith(string $subject, string $needle): bool\n {\n return str_starts_with($subject, $needle);\n }", "public static function startsWith($haystack, $needle)\n {\n return stristr($haystack, $needle) && strrpos($haystack, $needle, -strlen($haystack)) !== false;\n }", "public static function startsWith( string $haystack, string $needle ) {\n $length = strlen( $needle );\n if( !$length ) {\n return true;\n }\n return substr( $haystack, $length ) === $needle;\n }", "private function startsWith($haystack, $needle)\n {\n $length = strlen($needle);\n return (substr($haystack, 0, $length) === $needle);\n }", "function starts_with($haystack, $needle)\n{\n\treturn strpos($haystack, $needle) === 0;\n}", "function starts_with($haystack, $needle)\n{\n\treturn strpos($haystack, $needle) === 0;\n}", "protected function strStarts($haystack, $needle)\n\t{\n\t\t$length = strlen($needle);\n\t\treturn (substr($haystack, 0, $length) === $needle);\n\t}", "public static function startsWith(string $haystack, string $needle)\n {\n $length = strlen($needle);\n return substr($haystack, 0, $length) === $needle;\n }", "function startsWith($haystack, $needle) {\n\t\t$length = strlen($needle);\n\t\treturn (substr($haystack, 0, $length) === $needle);\n\t}", "function startsWith($haystack, $needle)\n\t{\n\t\t$length = strlen($needle);\n\t\treturn (substr($haystack, 0, $length) === $needle);\n\t}", "public static function startsWith($haystack, $needle)\n {\n return $needle === \"\" || strpos($haystack, $needle) === 0;\n }", "public function startsWith($haystack, $needle)\n {\n return strpos($haystack, $needle) === 0;\n }", "function string_starts_with($haystack, $needle)\n {\n return substr($haystack, 0, strlen($needle)) === $needle;\n }", "function startsWith($haystack, $needle) {\n\t\tif(substr($haystack, 0, strlen($needle)) === $needle) {\n\t\t\treturn true;\n\t\t}\n\t\treturn false;\n\t}", "public static function startsWith($haystack, $needle)\n {\n $length = strlen($needle);\n return (substr($haystack, 0, $length) === $needle);\n }", "public static function startsWith($haystack, $needle) // full String - param\n {\n return $needle === \"\" || strrpos($haystack, $needle, -strlen($haystack)) !== FALSE;\n }", "public static function startsWith($haystack, $needle) {\r\n\t\treturn $needle === \"\" || strrpos ( $haystack, $needle, - strlen ( $haystack ) ) !== false;\r\n\t}", "static public function startsWith($haystack, $needle) {\n return $needle === \"\" || strrpos($haystack, $needle, -strlen($haystack)) !== false;\n }", "static public function startsWith($haystack, $needle) {\n return $needle === \"\" || strrpos($haystack, $needle, -strlen($haystack)) !== FALSE;\n }", "public static function start_with($haystack, $needle) {\n return $needle === \"\" || strrpos($haystack, $needle, -strlen($haystack)) !== FALSE;\n }" ]
[ "0.8684131", "0.86617374", "0.8657449", "0.8589401", "0.8549996", "0.85376227", "0.85234183", "0.85202354", "0.85018706", "0.8485479", "0.8480919", "0.8449533", "0.84457934", "0.8444358", "0.8436948", "0.8436948", "0.8435278", "0.84346485", "0.8431721", "0.8430888", "0.84260845", "0.83994883", "0.83909464", "0.8387991", "0.8365892", "0.8362362", "0.8339421", "0.832881", "0.83042735", "0.830132" ]
0.8730877
0
/ CREATE Add an invitation from post datas
public function add($iid=null) { $this->reset(); if(!empty($iid)) $this->invitationID = $iid; // $this->copyFrom('POST'); $newData = []; $this->copyFrom('POST', function($data) { foreach ($data as $key => $value) { $newData[$key] = Controller::sanitizeDatas($value); } return $newData; }); $this->save(); return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function create_invitation($request){\n if(empty($request['id_payment'])){\n $request['id_payment'] = null;\n }\n $result= Invitation::create([\n 'cd_invitation' => $request['cd_invitation'],\n 'valid_from' => $request['valid_from'],\n 'valid_to' => $request['valid_to'],\n 'id_payment' => $request['id_payment'],\n 'valid_from' => $request['valid_from'],\n 'valid_to' => $request['valid_to'],\n 'created_by' =>$request['created_by'],\n ] );\n return $result;\n }", "function ws_add_attendee( $entry, $form ){\n\n\t$attendee_first_name \t= ucfirst( $entry[\"1.3\"] );\n\t$attendee_last_name\t\t= ucfirst( $entry[\"1.6\"] );\n\t$attendee_email \t\t= $entry['2'];\n\t$attendee_city \t\t\t= $entry['3'];\n\t$attendee_country \t\t= $entry['4'];\n\t$attendee_state \t\t= $entry['5'];\n\t$attendee_title = $attendee_first_name . ' ' . $attendee_last_name;\n\t$attendee = array(\n\t 'post_title' => esc_html( $attendee_title ),\n\t 'post_content' => '',\n\t 'post_status' => 'pending',\n\t 'post_author' => 1,\n\t 'post_type' => 'team-member'\n\t);\n\t$attendee_id = wp_insert_post( $attendee );\n\n\tupdate_post_meta( $attendee_id, 'ws_attendee_first_name', esc_html( $attendee_first_name ) );\n\tupdate_post_meta( $attendee_id, 'ws_attendee_last_name', esc_html( $attendee_last_name ) );\n\tupdate_post_meta( $attendee_id, '_gravatar_email', esc_html( $attendee_email ) );\n\tupdate_post_meta( $attendee_id, 'ws_attendee_city', esc_html( $attendee_city ) );\n\tupdate_post_meta( $attendee_id, 'ws_attendee_country', esc_html( $attendee_country ) );\n\tupdate_post_meta( $attendee_id, 'ws_attendee_state', esc_html( $attendee_state ) );\n\n}", "function fre_create_invite($user_id, $project_id){\n\tglobal $user_ID, $current_user;\n\t$invite_id = wp_insert_comment(array(\n 'comment_post_ID' => $project_id,\n 'comment_author' => $current_user->data->user_login,\n 'comment_author_email' => $current_user->data->user_email,\n 'comment_content' => sprintf(__(\"Invite %s to bid project\", ET_DOMAIN), get_the_author_meta( 'display_name', $user_id )) ,\n 'comment_type' => 'fre_invite',\n 'user_id' => $user_ID,\n 'comment_approved' => 1\n ));\n update_comment_meta( $invite_id, 'invite', $user_id);\n return $invite_id;\n}", "public function p_addrecipient() {\n\t\t$_POST['created'] = Time::now();\n\t\t$_POST['modified'] = Time::now();\n\t\t\n\t\t# Insert and save returned ID in a variable\n\t\t$recipient =\n\t\tDB::instance(DB_NAME)->insert('recipients', $_POST);\n\t\t#var_dump($recipient);\n\t\t\n\t\t# Create an array containing the recipient ID and user ID.\n\t\t$user_recip = array(\"recipient_id\" =>$recipient, \"user_id\"=>$this->user->user_id);\n\t\t#var_dump($user_recip);\n\t\t\n\t\t# Create a relationship between the user and the recipient\n\t\t# Also store the returned ID in a variable.\n\t\t$user_recipient =\n\t\tDB::instance(DB_NAME)->insert('users_recipients', $user_recip);\n\t\t\n\t\t# Create a relationship between the recipient and the occasion\n\t\t# Temporary: the db contains one occasion, Christmas. Hard-coded for now.\n\t\t$recip_occasion = array(\"user_recipient_id\" => $user_recipient, \"occasion_id\" => '2');\n\t\tDB::instance(DB_NAME)->insert('recipients_occasions', $recip_occasion);\n\t\t\n\t\tRouter::redirect(\"/gifts/\");\n\t\n\t}", "public function createInvitation(Request $request)\n {\n try {\n Invite::create([\n 'username' => $request->username,\n 'role_id' => $request->user_role,\n 'token' => $request->_token\n ]);\n $this->response =\n [\n 'message' => 'Invitation created',\n 'status_code' => 201\n ];\n } catch (QueryException $e) {\n $this->response =\n [\n 'message' => 'Invitation already sent',\n 'status_code' => 400\n ];\n }\n\n return $this->response;\n }", "public function createInvite(Request $request)\n {\n $createInvite = $this->insertInvite($request);\n\n if ($createInvite['status_code'] == 201) {\n $this->response = $this->getInviteeEmail($request);\n } else {\n $this->response =\n [\n 'message' => $createInvite['message'],\n 'status_code' => $createInvite['status_code']\n ];\n }\n\n return $this->response;\n }", "public function postInvitation(Request $request) {\n $user = Auth::user();\n // type 1 is invitation to answer question\n $results = [];\n\n // get page parameters\n $page = $request->get('page') ? $request->get('page') : 1;\n $itemInPage = $request->get('itemInPage') ? $request->get('itemInPage') : $this->homeItemInPage;\n\n foreach ($user->notifications()->where('type', 1)->where('has_read', false)\n ->get()->forPage($page, $itemInPage)\n as $invitation) {\n $inviter = User::find($invitation->subject_id);\n $question = Question::find($invitation->object_id);\n array_push($results, [\n 'inviter' => [\n 'name' => $inviter->name,\n 'id' => $inviter->id,\n 'url_name' => $inviter->url_name\n ],\n 'question' => [\n 'title' => $question->title,\n 'id' => $question->id,\n 'numAnswer' => $question->answers()->count(),\n 'numSubscriber' => $question->subscribers()->count(),\n ],\n 'id' => $invitation->id,\n ]);\n }\n\n // determine whether the results is empty\n if(empty($results)) {\n return [\n 'questions' => $results,\n 'status' => false\n ];\n } else {\n return [\n 'questions' => $results,\n 'status' => true\n ];\n }\n }", "public function createAttendee(UserInterface $user = NULL, Request $request);", "public function create(array $data)\n {\n $petition = $this->model->newInstance();\n\n // esta informacion no nos interesa al\n // momento de crear los items asociados.\n $petition->comments = $data['comments'];\n $petition->petition_type_id = $data['petition_type_id'];\n $petition->request_date = Carbon::now();\n\n $items = $this->checkItems($data['items'], $petition);\n\n // asociamos la peticion al usuario en linea.\n $this->getCurrentUser()->petitions()->save($petition);\n\n // Añade los items solicitados y sus cantidades a la\n // tabla correspondiente en la base de datos.\n foreach ($items as $id => $data) {\n $petition->items()->attach($id, [\n 'quantity' => $data['amount'],\n 'stock_type_id' => $data['type'],\n ]);\n }\n\n return $petition;\n }", "public function invite()\n {\n try {\n $postdata = $this->input->post();\n $user = $this->user;\n $medical_group_id = $postdata['medical_group_id'];\n $mgroup = MedicalGroup::find_by_id($medical_group_id);\n //valid user &&&& valid medical group &&&& valid user for given group\n\n $errors = array(\n 'mgroup' => $mgroup,\n 'group_user' => $mgroup->checkForGroupUser($user->id, 0),\n );\n if (!empty($user) && !empty($mgroup) && ($mgroup->checkOwner($user->id) == true || $mgroup->checkForGroupUser($user->id, 0) == true)) {\n $invited_emailids = explode(',', $postdata['invited_emailid']);\n $count = 0;\n foreach ($invited_emailids as $emailid) {\n $ginv = new MedicalGroupInvitation();\n $ginv->email = $emailid;\n $ginv->medical_group_id = $medical_group_id;\n\n $save = $ginv->saveInvitation();\n if ($save) {\n ++$count;\n }\n }\n echo json_encode(array('status' => true, 'message' => $count.' Invitation(s) Sent.'));\n } else {\n echo json_encode(array('status' => false, 'message' => 'Something went wrong. Please try again later.', 'errors' => $errors));\n }\n } catch (Exception $ex) {\n echo json_encode(array('status' => false, 'message' => 'Invalid Data submitted.'.$ex->getMessage()));\n }\n }", "public function create(Request $request)\n {\n $user= $request->user();\n $notificationAdds= $user->unreadNotifications();\n $notificationAdd= $user->unreadNotifications->where('type','App\\Notifications\\AnnonceAddDatabase');\n $notificationAd= $user->unreadNotifications->where('type','App\\Notifications\\newReservation'); \n $commune = [];\n $data = [\n 'title'=>'Logez bien | Commune',\n 'commune'=>$commune,\n 'notificationAdds'=>$notificationAdds->count(),\n 'notificationAdd'=>$notificationAdd,\n 'notificationAd'=>$notificationAd,\n ];\n return view('commune/create')->with($data); \n }", "public function invite()\n {\n return view('forms.invite.create');\n }", "public function createPost(PostInterface $post);", "function createInvitation($taskId, $userId) {\n include_once(\"../database/databaseConnection.php\");\n $sql = \"INSERT INTO invitation (taskId, playerId) VALUES ($taskId, $userId)\";\n sendQuery($sql);\n }", "public function inviteAction(Request $request)\n { \n $inviteForm = $this->createForm(new InviteType());\n \n if($request->getMethod() === 'POST')\n {\n $inviteForm->handleRequest($request);\n \n if($inviteForm->isValid()){\n $user = $inviteForm->getData();\n \n $isExist = $this->getRepository('CdmUserBundle:Entity')->findOneBy(array('email'=>$user->getEmail()));\n \n if($isExist){\n die('record already exist');\n }\n \n $name = $inviteForm->get('name')->getData();\n \n $surname = $inviteForm->get('surname')->getData();\n \n $manager = $inviteForm->get('description')->getData();\n \n $email = $inviteForm->get('email')->getData();\n \n // add new entity record\n $entity = new Entity();\n \n $entity->setName($name)\n ->setSurname($surname)\n ->setManager($manager)\n ->setEmail($email)\n ->setCreatedBy($this->getUser());\n \n $this->getRepository('CdmUserBundle:Entity')->save($entity);\n \n // add user record for login authentication\n $factory = $this->get('security.encoder_factory');\n \n $encoder = $factory->getEncoder($user);\n \n $generatePassword = $this->generatePassword(); // the password string\n \n $password = $encoder->encodePassword($generatePassword, $user->getSalt()); // encrypt password\n \n $user->setPassword($password)\n ->setActive(true)\n ->setToken('')\n ->setEntity($entity)\n ->setCreatedBy($this->getUser());\n \n $this->getRepository('CdmUserBundle:User')->save($user);\n \n // send mail to user with userName and Password, Thankyou message\n }\n }\n \n return $this->render('CdmUserBundle:User:invite.html.twig', array('form'=>$inviteForm->createView()));\n }", "public function store(Request $request)\n {\n $invitation = new Invitation;\n $invitation->makeInvitation($request);\n\n return response()->json(['msg' => 'Invitation realizada com sucesso', 'data' => $invitation], 201);\n\n }", "public function store(Request $request)\n {\n $evenements = new Evenements;\n\n //$contact = User($email);\n\n \n\n\n\n $evenements->nom_evenement = $request['nom_evenement'];\n $evenements->auteur_evenement = $request['auteur_evenement'];\n $evenements->date_debut_evenement = $request['date_debut_evenement'];\n $evenements->date_fin_evenement = $request['date_fin_evenement'];\n $evenements->lieu_evenement = $request['lieu_evenement'];\n $evenements->prix_evenement = $request['prix_evenement'];\n $evenements->description_evenement = $request['description_evenement'];\n $evenements->url_photo = $request['url_photo'];\n $evenements->description_image_evenement = $request['description_image_evenement'];\n $evenements->idee_evenement = $request['idee_evenement'];\n $evenements->recurrence_evenement = $request['recurrent'];\n $evenements->user_id = Auth::id();\n\n\n $evenements->save();\n\n //$contact->notify(new NotificationAuteurIdee);\n\n return view('Evenements/create_event')->withEvenements($evenements)->withUpdated('Événement créé');\n }", "public function sendInvite(Request $request)\n {\n if( !Auth::check() )\n return response()->json( 'noauth' );\n \n $debate = Debate::where('id', $request['roomId'])->first();\n if( $debate != NULL )\n {\n if( $request['who'] == 'debator_one' )\n {\n $debate->debator_one = $request['email'];\n $debate->one_timelimit = 0;\n }\n else if( $request['who'] == 'debator_two' )\n {\n $debate->debator_two = $request['email'];\n $debate->one_timelimit = 0;\n }\n $debate->save();\n\n // Create new invite\n // $invite = Invites::create([\n // 'debateid' => $request['roomId'],\n // 'email' => $request['email']\n // ]);\n\n $email = $request['email'];\n\n Mail::send('emails.invitation', ['debate' => $debate], function ($m) use ($email) {\n\n $m->to($email)->subject('You got an invitation!');\n });\n \n // $invite->save();\n\n return response()->json( 'success' );\n } \n else\n return response()->json( 'fail' );\n }", "function invite()\n\t{\n\t\tif (!empty($this->data['SuiUser']))\n\t\t{\n\t\t\t$error = $saved = false;\n\t\t\t\n\t\t\tunset($this->data['SuiUser']['id']);\n\t\t\t$this->data['SuiUser']['user_status'] = 'invited';\n\t\t\t\n\t\t\t$this->SuiUser->create($this->data);\n\t\t\tif ($this->SuiUser->validates())\n\t\t\t{\n\t\t\t\tif ($this->SuiUser->save())\n\t\t\t\t{\n\t\t\t\t\t$saved = true;\n\t\t\t\t\t$this->set('data', $this->data);\n\t\t\t\t\t$this->MexcMail->send($this->data['SuiUser']['email'], 'MEXC', 'Convite', 'third_user_confirmation');\n\t\t\t\t\t$email = $this->data['SuiUser']['email'];\n\t\t\t\t}\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$validationErrors = $this->SuiUser->validationErrors;\n\t\t\t}\n\t\t\t\n\t\t\t$this->view = 'JjUtils.Json';\n\t\t\t$this->set('jsonVars', compact('error', 'saved', 'validationErrors', 'email'));\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$this->data['SuiUser']['email'] = $this->data['email'];\n\t\t\n\t\t}\n\t\t$this->setFormData();\n\t}", "public function nuevo_post(Request $request){\n if (null !== session('usuario')){\n if (session('usuario')['rol_id'] == 4){\n // Datos Preinforme\n $data = $request->all();\n $preinforme['persona_id'] = $request->persona;\n $preinforme['asesor_id'] = $request->asesor;\n $preinforme['descripcion'] = $request->descripcion_preinforme;\n $preinforme['medio'] = $request->medio;\n $preinforme['como_encontro'] = $request->como_encontro;\n $preinforme['filial_id'] = session('usuario')['entidad_id'];\n if($this->preinformeRepo->create($preinforme)){\n // Intereces\n $preinforme = $this->preinformeRepo->all()->last();\n $interes['preinforme_id'] = $preinforme['id'];\n $interes['persona_id'] = $request->persona;\n $interes['descripcion'] = $request->descripcion_interes;\n\n if ( isset($data['ninguna']) ){\n $interes['descripcion'] = $data['descripcion_interes'];\n $this->personaInteresRepo->create($interes);\n }\n else{\n for ($i=0; $i < count($data['curso']); $i++) {\n $interes['curso_id'] = $data['curso'][0];\n $this->personaInteresRepo->create($interes);\n }\n $interes['curso_id'] = null;\n for ($i=0; $i < count($data['carrera']); $i++) {\n $interes['carrera_id'] = $data['carrera'][0];\n $this->personaInteresRepo->create($interes);\n }\n $interes['carrera_id'] = null;\n }\n return redirect()->route('filial.preinformes');\n }\n }\n else\n return redirect()->back();\n }\n else\n return redirect('login');\n }", "public function create()\n\t{\n\t\t$this->auth->restrict('Indicateur.Vendee.Create');\n $pcets = $this->pcet_model->list_pcet_by_departement('85');\n\n\t\tif (isset($_POST['save']))\n\t\t{\n\t\t\tif ($insert_id = $this->save_indicateur())\n\t\t\t{\n\t\t\t\t// Log the activity\n\t\t\t\t$this->activity_model->log_activity($this->current_user->id, lang('indicateur_act_create_record').': ' . $insert_id . ' : ' . $this->input->ip_address(), 'indicateur');\n\n\t\t\t\tTemplate::set_message(lang('indicateur_create_success'), 'success');\n\t\t\t\tredirect(SITE_AREA .'/vendee/indicateur');\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\tTemplate::set_message(lang('indicateur_create_failure') . $this->indicateur_model->error, 'error');\n\t\t\t}\n\t\t}\n\t\tAssets::add_module_js('indicateur', 'indicateur.js');\n Template::set('pcets', $pcets);\n\t\tTemplate::set('toolbar_title', lang('indicateur'));\n\t\tTemplate::render();\n\t}", "public function create(Request $request){\n // $r->post_id = $request->post;\n // $r->user->id = $request->user;\n // $r->save();\n\n //return dd($request->all());\n $post = new PostController;\n $post->create($request, \"reply\");\n return back();\n }", "public function store(Request $request){\n $data = $request->all();\n $id = $data['user_id'];\n\n if(Auth::user()){\n try {\n $checkinvite= BusinessPartner::where('inviter_id', Auth::user()->id)->where('invitee_id',$id)->where('company_site_slug', $data['company_site_slug'])->where('type','!=','Company Network')->first();\n if(!empty($checkinvite) ){\n return redirect()->back()->withErrors('You have already sent the partnership invitation to this person'); \n }\n \n $info = BusinessInfo::where('user_id', $id)->first();\n // When request type is available in invitation\n\n if(isset($data['request_type'])){\n $partner = new BusinessPartner(); \n $partner->name = $this->GetUserName($data['invitee_id']); \n $partner->email = $data['invitee_email'];\n $partner->invitee_id = $data['invitee_id'];\n $partner->inviter_id = Auth::user()->id;\n $partner->inviter_email = Auth::user()->email;\n $partner->site_slug = $data['site_slug'];\n $partner->invitation_date = date(\"Y-m-d\", time());\n $partner->ecosystem_name = $data['ecosystem_name'];\n $partner->ecosystem_slug = $data['ecosystem_slug'];\n $partner->company_site_slug = $data['company_site_slug'];\n $partner->company_name = $info->company_name;\n $partner->status = \"Pending\";\n $partner->request_type = $data['request_type'];\n $partner->type = 'Internal';\n if(isset($data['interest']) || isset($data['message'])){\n $partner->interested_in = $data['interest'];\n $partner->message = $data['message'];\n }\n $partner->register = 1;\n if($partner->save()){\n $data = array(\n 'username' => $partner->name,\n 'email' => $partner->email, \n 'site' => $partner->site_slug,\n 'inviter' => $partner->inviter_email,\n );\n Mail::send('emails.join_business', $data, function($message) use ($partner) {\n $message->from($partner->inviter_email, $this->GetUserName($partner->inviter_id));\n $message->to($partner->email,$partner->name)->subject('Internal invitation with Gdoox code');\n });\n }\n return Redirect::route('site', $partner->site_slug)->with('message','Request Sent.');\n }\n else {\n // When there is no request type\n $partner= new BusinessPartner(); \n $partner->name = $this->GetUserName($id); //$id is invitee id who get the invitation\n $partner->email = $this->GetUserEmail($id);\n $partner->invitee_id = $id;\n $partner->message = $data['message'];\n $partner->inviter_id = Auth::user()->id;\n $partner->inviter_email = Auth::user()->email;\n $partner->ecosystem_name = $data['ecosystem_name'];\n $partner->ecosystem_slug = $data['ecosystem_slug'];\n $partner->status = \"Pending\";\n $partner->company_site_slug = $data['company_site_slug'];\n $partner->company_name = $info->company_name;\n $partner->invitation_date = date(\"Y-m-d\", time());\n $partner->type = 'Internal';\n $partner->register = 1;\n $code = $this->randomString(6);\n \n $invitation_code = BusinessPartner::where('gdoox_code', '=', $code)->first();\n if(!empty($invitation_code->gdoox_code)){\n $partner->gdoox_code = 'B-ECOSYS-'.strtoupper($this->randomString(7));\n }\n else {\n $partner->gdoox_code = 'B-ECOSYS-'.strtoupper($this->randomString(6));\n }\n \n if($partner->save()){\n $data = array(\n 'username' => $partner->name,\n 'email' =>$partner->email,\n 'gdoox_code' =>$partner->gdoox_code,\n 'inviter' =>$partner->inviter_email,\n );\n Mail::send('emails.internal_business_partners', $data, function($message) use ($partner) {\n $message->from($partner->inviter_email, $this->GetUserName($partner->inviter_id));\n $message->to($partner->email,$partner->name)->subject('Internal invitation with Gdoox code');\n });\n }\n \n return Redirect::route('invite.inter.partner.create')->with('message','Invitation Sent.');\n }\n \n }\n catch (\\Exception $e){\n $error = \"An error occured. \".\n \"Line Number: \".$e->getLine().\" \".\n \"File Name: \".$e->getFile().\" \".\n \"Error Description: \".$e->getMessage();\n return view('errors.custom_error')->withErrors($error);\n }\n }\n else {\n return redirect('auth/login')->with('message',\"You must be login!\"); \n }\n }", "public function create()\n {\n $this->resetFields();\n $this->created_id = request()->user()->id;\n //DAN MEMBUKA MODAL\n $this->openModal();\n }", "public function insertInvite(Request $request)\n {\n if ($this->checkIfUserExist($request)) {\n $this->response = $this->createInvitation($request);\n } else {\n $this->response =\n [\n 'message' => 'User does not exist',\n 'status_code' => 400\n ];\n }\n\n return $this->response;\n }", "public function postMailInvitation(Request $request)\n {\n $moneybox = Moneybox::byUrl($request->get('url'))->first();\n\n if (!$moneybox) {\n throw new EntityNotFoundException('No existe la alcancía', -1);\n }\n\n $emailsS = preg_replace('/\\s+/', '', $request->get('emails'));\n $emails = preg_split(\"/[\\s,;:]+/\", $emailsS);\n \n foreach ($emails as $email) {\n $validator = Validator::make(['mail' => trim($email)], [\n 'mail' => 'required|email'\n ]);\n\n if ($validator->passes()) {\n $data = ['moneybox' => $moneybox];\n $record = Invitation::create([\n 'email' => trim($email),\n 'status' => 0,\n 'moneybox_id' => $moneybox->id]);\n\n if ($record) {\n $options = array(\n 'from' => ['[email protected]' => 'Coperacha.com.mx'],\n 'to' => [$email => 'Invitado ' . $email],\n 'bcc' => explode(',', PLConstants::EMAIL_BCC),\n 'title' => 'Mensaje de Invitación'\n );\n $this->_mailer->send(PLConstants::EMAIL_MONEYBOX_INVITATION, $data, $options);\n }\n } else {\n return response()->json(['success' => false, 'data' => $emails]);\n }\n }\n\n return response()->json(['success' => true, 'data' => $emails]);\n }", "public function storeCreatoriInvite(Request $request)\n {\n $this->validate($request, [\n 'email' => 'required|email|unique:creatori_invites',\n ]);\n\n $creatoriInvite = new CreatoriInvite($request->all());\n $creatoriInvite->save();\n\n return redirect ('/thankyou');\n }", "function invitefriend()\r\n\t{\r\n\t\t$this->autoRender = false;\r\n\t\t\r\n\t\tif (!empty($this->data))\r\n\t\t{\r\n\t\t\t$sentEmails = $this->Mail->inviteFriends ( $this->data,$this );\r\n\t\t\t\r\n\t\t\t$inviteData['FriendInvitaion']['user_id'] = $this->Session->read(\"Auth.Member.id\");\r\n\t\t\t$inviteData['FriendInvitaion']['emails'] = implode(\",\", $sentEmails['emails']);\r\n\t\t\t$inviteData['FriendInvitaion']['message'] = $sentEmails['message'];\r\n\t\t\t$inviteData['FriendInvitaion']['code'] = $sentEmails['code'];\r\n\t\t\t\r\n\t\t\t$this->FriendInvitaion->create();\r\n\t\t\t$this->FriendInvitaion->save($inviteData);\r\n\t\t}\r\n\t}", "public function store(Request $request)\n {\n $this->validate($request, [\n 'email' => 'required|email|unique:invitations',\n ]);\n\n $invitation = new Invitation($request->all());\n $invitation->generateInvitationToken();\n $invitation->save();\n \n //Send invitation email to the user\n $link = $invitation->getLink();\n $toEmail = $request->email;\n \tMail::to($toEmail)->send(new SendEmail($link));\n\n if (!$invitation) {\n return $this->responseRedirectBack('Error occurred while invite admin.', 'error', true, true);\n }\n return $this->responseRedirect('admin.adminuser', 'Invitation link has been sent to the user' ,'success',false, false);\n }", "public function sendInvitation (Request $request) \n {\n if((int) $request->input('admin') >0 \n && !Invitation::where('coworker_id',Auth::user()->id)->where('admin_id', $request->input('admin'))->exists() \n )\n {\n $invitation = new Invitation;\n $invitation->coworker_id = Auth::user()->id;\n $invitation->admin_id = (int) $request->input('admin');\n $invitation->save();\n }\n\n return redirect()->back();\n }" ]
[ "0.7032738", "0.62362254", "0.60612386", "0.5923009", "0.59051603", "0.58884025", "0.58096594", "0.57940775", "0.5791719", "0.57680136", "0.5734353", "0.57245696", "0.57235867", "0.57211006", "0.57063085", "0.5678959", "0.5659656", "0.56571597", "0.56565654", "0.56524163", "0.5646261", "0.5642788", "0.56411153", "0.56340605", "0.5626752", "0.56265694", "0.5608628", "0.55948144", "0.5577965", "0.55640924" ]
0.65215176
1
Method to set the value of field division_under
public function setDivisionUnder($division_under) { $this->division_under = $division_under; return $this; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getDivisionUnder()\n {\n return $this->division_under;\n }", "public function funder($value)\n {\n $this->setProperty('funder', $value);\n return $this;\n }", "public function divide(Division $other)\n {\n $this->guardDivisorIsNotZero($other);\n\n $newValue = clone $this;\n $newValue->value = floor($newValue->value / $other->value);\n\n return $newValue;\n }", "public function _operator_divide($value);", "public function divide(Division $other)\n {\n $this->guardDivisorIsNotZero($other);\n\n $newValue = clone $this;\n $newValue->value /= $other->value;\n\n return $newValue;\n }", "public function setCastedField($fieldName, $value)\n {\n if ($fieldName === 'Percent' && $value > 1) {\n $value /= 100.0;\n }\n\n return parent::setCastedField($fieldName, $value);\n }", "function divide() {\r\n \r\n }", "public function highField($value) {\n return $this->setProperty('highField', $value);\n }", "public function getDivisionCode()\n {\n return $this->division_code;\n }", "public function getDivisionId()\n {\n return $this->division_id;\n }", "protected function setValue()\n {\n $value = $this->liveData->units_held * $this->liveData->sell_price;\n if($this->investment->currency->value !== 'GBP') {\n $convertor = new CurrencyConverter($this->investment->currency,'GBP');\n $value = $convertor->convert($value);\n }\n\n // Normalise the output based on knowing what units to expect\n $this->liveData->value = $value / $this->investment->priceUnits;\n }", "private function ProductDiscountPercentage() {\n\t\tif ($this->_datafield) {\n\t\t\tif (substr($this->_datafield,-1,1) == \"%\") {\n\t\t\t\t$this->is_percent = \"1\";\n\t\t\t}\n\t\t}\n\t}", "function setFixedScale($VMin,$VMax,$Divisions=5,$VXMin=0,$VXMax=0,$XDivisions=5)\r\n\t{\r\n\t\t$this->VMin = $VMin;\r\n\t\t$this->VMax = $VMax;\r\n\t\t$this->Divisions = $Divisions;\r\n\r\n\t\tif ( !$VXMin == 0 )\r\n\t\t{\r\n\t\t\t$this->VXMin = $VXMin;\r\n\t\t\t$this->VXMax = $VXMax;\r\n\t\t\t$this->XDivisions = $XDivisions;\r\n\t\t}\r\n\t}", "public function setTextUnderColor (ImagickPixel $under_color) {}", "function setFixedScale($VMin, $VMax, $Divisions = 5, $VXMin = 0, $VXMax = 0, $XDivisions = 5) {\r\n\t\t$this->VMin = $VMin;\r\n\t\t$this->VMax = $VMax;\r\n\t\t$this->Divisions = $Divisions;\r\n\t\t\r\n\t\tif (! $VXMin == 0) {\r\n\t\t\t$this->VXMin = $VXMin;\r\n\t\t\t$this->VXMax = $VXMax;\r\n\t\t\t$this->XDivisions = $XDivisions;\r\n\t\t}\r\n\t}", "public function setUnderWarranty($underWarranty)\n {\n $this->underWarranty = $underWarranty;\n\n return $this;\n }", "public function setFloorLabel(?string $value): void {\n $this->getBackingStore()->set('floorLabel', $value);\n }", "public function division(){\n return $this->belongsTo(Division::class);\n }", "public function setHpPercent($value)\n {\n return $this->set(self::HP_PERCENT, $value);\n }", "public function divide($divisor, $roundingMode = self::ROUND_HALF_UP);", "function div(string $field, int|float $value): UpdateInstruction\n{\n return new UpdateInstruction('div', [$field => $value]);\n}", "function lvlUp(){\n $this->setLevel($this->getLevel() + \n 1);\n $this->setAttaque($this->getAttaque() + 2);\n $this->setArmure($this->getArmure() + 1);\n }", "public function getDivisionName()\n {\n return $this->division_name;\n }", "public function testSetNbHeuresInterim() {\n\n $obj = new Affaires();\n\n $obj->setNbHeuresInterim(10.092018);\n $this->assertEquals(10.092018, $obj->getNbHeuresInterim());\n }", "function normalize($value, $upperBound)\n{\n return clamp($value / $upperBound, 0, 1);\n}", "protected function setHigh($high)\n {\n $this->high = (float)$high;\n\n return $this;\n }", "#[@test]\n public function division() {\n $this->assertEquals(\n new AssignmentNode(['variable' => new VariableNode('a'), 'op' => '/=', 'expression' => new VariableNode('b')]),\n $this->optimize(new AssignmentNode([\n 'variable' => new VariableNode('a'), \n 'op' => '=', \n 'expression' => new BinaryOpNode(['lhs' => new VariableNode('a'), 'op' => '/', 'rhs' => new VariableNode('b')])\n ]))\n );\n }", "protected function _setVolume($val)\n {\n if ((is_integer($val) || is_float($val)) && $val >= 0) {\n $this->setDpProperty('volume', $val);\n }\n }", "public function inPercent() {\n\t\tif ($this->PreferredUnit->isHRreserve() && $this->canShowInHRrest()) {\n\t\t\treturn $this->inHRrest();\n\t\t}\n\n\t\treturn $this->inHRmax();\n\t}", "public function setFunder($funder)\n {\n ObjectHelper::isInstanceOf($funder, [Organization::class, PersonInterface::class]);\n\n $this->_funder = $funder;\n return $this;\n }" ]
[ "0.6992492", "0.49977893", "0.49404097", "0.49188167", "0.48250002", "0.48244968", "0.46971688", "0.46328047", "0.4632484", "0.45979902", "0.4577645", "0.45340854", "0.4526723", "0.45101237", "0.4496088", "0.4486497", "0.44113684", "0.435942", "0.43530664", "0.43519676", "0.43499374", "0.43484807", "0.4342934", "0.43158358", "0.4298877", "0.42846248", "0.42800486", "0.4271507", "0.4269151", "0.42430028" ]
0.6602872
1
Returns the value of field division_id
public function getDivisionId() { return $this->division_id; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getDivisionCode()\n {\n return $this->division_code;\n }", "function getDivision($zsp)\n\t{\n\t\treturn $this->newQuery()->where('depot_id','=',$zsp)->getVal('division_id');\n\t}", "public function getDivisionName()\n {\n return $this->division_name;\n }", "public function division()\n {\n return $this->hasOne('App\\Division', 'id', 'division_id');\n }", "function getIdValue()\n {\n }", "public function getIdField();", "public function get_field_ident($field_data);", "public function getIdPart()\n {\n return $this->id_part;\n }", "function getId() {\n return $this->getFieldValue('id');\n }", "function getId() {\n return $this->getFieldValue('id');\n }", "public function id()\n\t{\n\t\t$id_field = static::getIdFieldname();\n\t\n\t\tif(!strlen($id_field))\n\t\t{\n\t\t\ttrigger_error(get_called_class().' does not support an ID-Field', E_USER_ERROR);\n\t\t}\n\t\n\t\treturn $this->get($id_field);\n\t}", "function getId()\n {\n return $this->getFieldValue('id');\n }", "public function id() {\n\t\t$settings = $this->getFieldSettings($this->key);\n\t\treturn $settings['value']['id'];\n\t}", "public function getIDField()\n {\n return $this->_objField;\n }", "public function get_id(){ return intval($this->get_info('robot_id')); }", "function fieldValue($field=\"race_group_id\",$id=\"\",$condition=\"\",$order=\"\")\n\t{\n\t\t$rs=$this->fetchRecordSet($id, $condition, $order);\n\t\t$ret=0;\n\t\twhile($rw=mysql_fetch_assoc($rs))\n\t\t{\n\t\t\t$ret=$rw[$field];\n\t\t}\n\t\treturn $ret;\n\t}", "public function getIdValue($id) {}", "function getIdField() {\n\t\treturn $this->table->idfield;\n\t}", "public function id()\n {\n return $this->entry->getField($this->getField())->getId();\n }", "function getId() {\r\n return $this->data['entity']->id->text;\r\n }", "public function division(){\n return $this->belongsTo(Division::class);\n }", "function getCompanyId() {\n return $this->getFieldValue('company_id');\n }", "public function listeDivision(){\n $sql = \"SELECT div_nom as nom_div from division\";\n $listeDiv=$this->db->prepare($sql);\n $listeDiv->execute();\n return $listeDiv;\n }", "public function getId()\r\n {\r\n if ($fieldName = $this->getIdFieldName()) {\r\n\t\t\tif (is_array($fieldName)) {\r\n if (count($fieldName) < 2) {\r\n return $this->getData(current($fieldName));\r\n } else {\r\n $cpk = array();\r\n foreach ($fieldName as $key) {\r\n $cpk[$key] = $this->getData($key);\r\n }\r\n return $cpk;\r\n }\r\n }\r\n\r\n return $this->getData($fieldName);\r\n }\r\n\r\n return null;\r\n }", "function fieldValue($field = \"client_id\",$id = \"\",$condition = \"\",$order = \"\")\n\t{\n\t\t$rs = $this->fetchRecordSet($id, $condition, $order);\n\t\t$ret = 0;\n\t\twhile($rw = mysql_fetch_assoc($rs))\n\t\t{\n\t\t\t$ret = $rw[$field];\n\t\t}\n\t\treturn $ret;\n\t}", "public function getDivisionArray() {\r\n\t\treturn $this->divisionArray;\r\n\t}", "function controllers_field_id($field, $id) {\n global $db;\n $data = null;\n $req = $db->prepare(\"SELECT $field FROM controllers WHERE id= ?\");\n $req->execute(array($id));\n $data = $req->fetch();\n //return $data[0];\n return (isset($data[0]))? $data[0] : false;\n}", "public function getId()\n {\n return $this->getField('id');\n }", "function getProjectId() {\n return $this->getFieldValue('project_id');\n }", "function getProjectId() {\n return $this->getFieldValue('project_id');\n }" ]
[ "0.69644433", "0.6303932", "0.629957", "0.5895314", "0.58554554", "0.5843348", "0.554182", "0.5521979", "0.55215716", "0.55215716", "0.55112153", "0.54933184", "0.5445827", "0.5425737", "0.5424018", "0.53905183", "0.53782684", "0.5367801", "0.5355702", "0.5343253", "0.53243315", "0.5311679", "0.5305082", "0.5270894", "0.5255005", "0.52520555", "0.52511215", "0.52346516", "0.5233126", "0.5233126" ]
0.788885
0
Returns the value of field division_code
public function getDivisionCode() { return $this->division_code; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "final public function getCode() {\n\t\t$this->prepare();\n\n\t\treturn $this->getSurroundedByLayoutDiv($this->getFieldCode());\n\t}", "public function getDivisionId()\n {\n return $this->division_id;\n }", "public function getDivisionName()\n {\n return $this->division_name;\n }", "public function get_code() {\n return $this->code;\n }", "function GetCode() { return $this->code; }", "function getCode()\n\t{\n\t\treturn $this->code;\n\t}", "function getCode()\n {\n return $this->code;\n }", "public function getCode() {\n return $this->code;\n }", "public function getCode()\r\n {\r\n return $this->code;\r\n }", "public function getCode()\r\n {\r\n return $this->code;\r\n }", "public function setDivisionCode($division_code)\n {\n $this->division_code = $division_code;\n\n return $this;\n }", "function getCode() {\n return $this->code;\n }", "protected function getCode()\n {\n return $this->code;\n }", "public function getProductCode() \n {\n return $this->_fields['ProductCode']['FieldValue'];\n }", "public function getProductCode() \n {\n return $this->_fields['ProductCode']['FieldValue'];\n }", "public function getCode() \n {\n return $this->code;\n }", "public function getCode() {\n return @$this->attributes['code'];\n }", "public function getCode()\n {\n return $this->request->get('code');\n }", "public function getCode()\n {\n return $this->get(self::CODE);\n }", "public function getCode()\n {\n return $this->get(self::CODE);\n }", "public function getCode()\n {\n return $this->get(self::CODE);\n }", "public function getCode()\n {\n return $this->get(self::CODE);\n }", "public function getCode()\n {\n return $this->code;\n }", "public function getCode()\n {\n return $this->code;\n }", "public function getCode()\n {\n return $this->code;\n }", "public function getCode()\n {\n return $this->code;\n }", "public function getCode()\n {\n return $this->code;\n }", "public function getCode()\n {\n return $this->code;\n }", "public function getCode()\n {\n return $this->code;\n }", "public function getCode()\n {\n return $this->code;\n }" ]
[ "0.6489298", "0.6338746", "0.6226784", "0.56724495", "0.5608517", "0.5602175", "0.5581877", "0.5575699", "0.55742633", "0.55742633", "0.55677605", "0.55611813", "0.55588365", "0.5545668", "0.5545668", "0.5538158", "0.55240023", "0.5508894", "0.55024755", "0.55024755", "0.55024755", "0.55024755", "0.55023026", "0.55023026", "0.55023026", "0.55023026", "0.55023026", "0.55023026", "0.55023026", "0.55023026" ]
0.8014768
0
Returns the value of field division_name
public function getDivisionName() { return $this->division_name; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getDivisionCode()\n {\n return $this->division_code;\n }", "public function getDivisionId()\n {\n return $this->division_id;\n }", "public function get_field_name($field_name);", "function getDivision($zsp)\n\t{\n\t\treturn $this->newQuery()->where('depot_id','=',$zsp)->getVal('division_id');\n\t}", "public function getFieldName();", "public function getFieldName();", "public function getDivisionSelect()\n {\n $mainframe = Factory::getApplication();\n $db = Factory::getDbo();\n $query = $db->getQuery(true);\n\n $project = $this->getProject();\n if (!is_object($project))\n return false;\n if (!$this->_project_id && !($this->_project_id > 0) && $project->project_type !=\n 'DIVISION_LEAGUE') {\n return false;\n }\n $options = array(HTMLHelper::_('select.option', 0, Text::_($this->getParam('divisions_text'))));\n\n $query->select('d.id AS value, d.name AS text');\n $query->select('CONCAT_WS( \\':\\', d.id, d.alias ) AS division_slug');\n $query->from('#__sportsmanagement_division AS d');\n $query->where('d.project_id = ' . $project->id);\n if ($this->getParam(\"show_only_subdivisions\", 0)) {\n $query->where('d.parent_id > 0 = ');\n }\n $query->order('d.name');\n\n $db->setQuery($query);\n $res = $db->loadObjectList();\n if ($res) {\n $options = array_merge($options, $res);\n }\n return HTMLHelper::_('select.genericlist', $options, 'd', 'class=\"jlnav-division\"',\n 'value', 'text', $this->getDivisionId());\n }", "function getEnteredValue() {\n $data = $this->field->getSource();\n if (isset($data[$this->name.'_name'])) {\n // Drop the extra part, if any\n $v = $data[$this->name.'_name'];\n $v = substr($v, 0, strrpos($v, ' — '));\n return trim($v);\n }\n return parent::getValue();\n }", "function getLabelField() \n {\n return \"meas_name\";\n }", "public function getFieldName(){\n\t\treturn $this->field_name;\n\t}", "function name() { return $this->get('name')? $this->get('name') : $this->get('field'); }", "abstract public function getGroupingField(): string;", "public function field_name()\n\t{\n\t\tif ( ! empty($this->field->fields))\n\t\t{\n\t\t\treturn reset($this->field->fields)->name;\n\t\t}\n\n\t\treturn $this->field->name;\n\t}", "public function get_target_field_name();", "public function fieldName();", "public function getFieldName() : string;", "public function getFieldName() : string;", "public function listeDivision(){\n $sql = \"SELECT div_nom as nom_div from division\";\n $listeDiv=$this->db->prepare($sql);\n $listeDiv->execute();\n return $listeDiv;\n }", "protected function _get_name() {\n\t\treturn $this->getData( 'name' );\n\t}", "public function getFieldsName();", "public function getNamePart() {}", "public function getFieldName()\n {\n return $this->field_name;\n }", "public function getDivisionArray() {\r\n\t\treturn $this->divisionArray;\r\n\t}", "public function getFieldName()\n {\n return $this->field;\n }", "public function getFieldName(): string;", "public function getMainField()\n\t{\n\t\tforeach($this->fields as $field)\n\t\t{\n\t\t\tif($field['type'] !== 'integer' and $field['type'] !== 'text')\n\t\t\t{\n\t\t\t\treturn $field['name'];\n\t\t\t}\n\t\t}\n\t}", "function _field_name($field){\n if(count($this->_path)){\n return $this->_path[count($this->_path) - 1] . '->' . $field;\n }else{\n return '$publication->' . $field;\n }\n }", "public function getFieldValue(): string;", "public function getFieldValue() : string;", "public static function label() {\n return __('nova-laravel-world::novaLaravelWorld.division');\n }" ]
[ "0.708081", "0.67304295", "0.60902494", "0.60199517", "0.5795371", "0.5795371", "0.5771326", "0.57622916", "0.57350546", "0.5674915", "0.56695026", "0.56408507", "0.5619839", "0.5591142", "0.5590352", "0.5557955", "0.5557955", "0.5556533", "0.5554419", "0.5550604", "0.5550583", "0.5533073", "0.5531875", "0.55122435", "0.5490773", "0.54806376", "0.54547775", "0.54439247", "0.5435889", "0.5429514" ]
0.78650707
0
Returns the value of field division_under
public function getDivisionUnder() { return $this->division_under; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setDivisionUnder($division_under)\n {\n $this->division_under = $division_under;\n\n return $this;\n }", "public function getDivisionCode()\n {\n return $this->division_code;\n }", "public function zwrocDIV();", "public function getUnderWarranty()\n {\n return $this->underWarranty;\n }", "public function _operator_divide($value);", "public function getDivisionName()\n {\n return $this->division_name;\n }", "public function getValue() : float {\n return $this->getRangeD() / $this->getRangeH();\n }", "public function criticalValue(): float\n {\n if ($this->relation === '>=')\n return -1 * $this->calculate();\n\n return $this->calculate();\n }", "public function inPercent() {\n\t\tif ($this->PreferredUnit->isHRreserve() && $this->canShowInHRrest()) {\n\t\t\treturn $this->inHRrest();\n\t\t}\n\n\t\treturn $this->inHRmax();\n\t}", "public function includeUpperBound() {\n return $this->uBoundIn;\n }", "public function getDivisionId()\n {\n return $this->division_id;\n }", "public function univ($avg) {\n\t\t\tif ($avg>=85) {\n\t\t\t\t$hasil = \"Universitas Airlangga\";\n\t\t\t} else if ($avg<85 && $avg>=75) {\n\t\t\t\t$hasil = \"Univ Negeri\";\n\t\t\t} else if ($avg<75) {\n\t\t\t\t$hasil = \"Univ Swasta\";\n\t\t\t}\n\t\t\treturn $hasil;\n\t\t}", "public function div($leftOperand, $rightOperand);", "public function getThur()\n {\n return $this->thur;\n }", "function divide() {\r\n \r\n }", "public function getHeureSupInfluCassation() {\n return $this->heureSupInfluCassation;\n }", "public function getSurchargePercent();", "public function getDiscountPercent();", "function fuel_left() {\r\n return $this->crt_fuel * 100 / $this->total_fuel; // ca sa afiseje procentaj\r\n }", "public function getHeure()\n {\n return $this->heure;\n }", "public function calculateVolume(): int|float\r\n {\r\n return parent::calculateArea() * $this->height;\r\n }", "public function getLiquidationProceedsAmount()\n {\n return $this->_fields['LiquidationProceedsAmount']['FieldValue'];\n }", "public function divide(Division $other)\n {\n $this->guardDivisorIsNotZero($other);\n\n $newValue = clone $this;\n $newValue->value /= $other->value;\n\n return $newValue;\n }", "public function hitungLuas() {\n return $this->panjang * $this->lebar;\n }", "public function fraction(): ?float\n {\n return $this->total ? $this->current / $this->total : null;\n }", "public function getArea():float ;", "public function getPercentual()\n {\n return $this->percentual;\n }", "public function divide(Division $other)\n {\n $this->guardDivisorIsNotZero($other);\n\n $newValue = clone $this;\n $newValue->value = floor($newValue->value / $other->value);\n\n return $newValue;\n }", "function jumlahHalaman($jmldata, $batas){\n$jmlhalaman = ceil($jmldata/$batas);\nreturn $jmlhalaman;\n}", "function jumlahHalaman($jmldata, $batas){\n$jmlhalaman = ceil($jmldata/$batas);\nreturn $jmlhalaman;\n}" ]
[ "0.5940573", "0.5356665", "0.5324866", "0.5195511", "0.5167869", "0.5146358", "0.5039946", "0.5012091", "0.49689782", "0.49560055", "0.49422646", "0.4934071", "0.48506933", "0.4826106", "0.47743613", "0.47322664", "0.47282615", "0.47220242", "0.46877044", "0.46590734", "0.46423778", "0.46396083", "0.46310422", "0.46291158", "0.4627938", "0.46277297", "0.46161756", "0.4590427", "0.4588721", "0.4588721" ]
0.83468264
0
Gets query for [[FederalDistricts]].
public function getFederalDistricts() { return $this->hasMany(FederalDistrict::class, ['country_id' => 'id']); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function getDistrict()\n {\n $result = null;\n\n $district_urls = self::getDistrictUrls();\n\n $search_url = '//' . Application::$base_domain_short;\n if (!in_array($search_url, $district_urls)) {\n $search_url = '//' . Application::$main_domain_short;\n }\n\n $district_info = Application::$db->query(\n CommonModuleSQLHelper::sel_district(),\n [\n ':url' => $search_url\n ],\n Application::$db->SEC_PER_DAY,\n self::$db_cache_id\n )->fetchAssocArray();\n\n if (!is_null($district_info)) {\n $result = $district_info;\n }\n return $result;\n }", "public function getDistrict()\n\t{\n $query = $this->Api_model->getDistrict();\n echo json_encode($query);\n }", "public function Get_spicific_District()\r\n {\r\n $DID = $this->Get_Admin_DID();\r\n //data is retrive from this query\r\n $query = $this->db->get_where('district', array('DID' => $DID));\r\n return $query->result();\r\n }", "public function getDistricts()\n\t{\n\t\t$districts = $this->getContent($this->geoDomain . 'api/districts');\n\n\t\treturn $districts;\n\t}", "public function getDistricts()\n {\n try {\n $districts = cache()->rememberForever(\"districts\", function () {\n $provinces = $this->ghnService->getProvinces();\n\n $districts = $this->ghnService->getDistricts();\n // format for frontend\n return $districts->reduce(function ($carry, $item) use ($provinces) {\n if ($item->SupportType !== 3) return $carry;\n\n $text = $provinces->where('ProvinceID', $item->ProvinceID)->first()->ProvinceName ?? 'undefined';\n\n array_push($carry, [\n 'id' => $item->DistrictID,\n 'text' => $item->DistrictName . ' - ' . $text,\n ]);\n\n return $carry;\n }, []);\n });\n } catch (\\Throwable $th) {\n return $this->responseJson(message: $th->getMessage(), responseCode: $th->getCode());\n }\n\n return $this->responseJson(data: $districts, error: false);\n }", "public function getDistrict()\n {\n return $this->district;\n }", "public function getDistrict()\n {\n return $this->district;\n }", "public function getDistrict()\n {\n return $this->district;\n }", "public function getDistrict()\n {\n return $this->district;\n }", "public function listDistrict()\n {\n return view('District::list');\n }", "public function district();", "function getDistrict()\n {\n return $this->district;\n }", "public function districts()\n {\n return $this->hasMany('Kriyar\\CambodiaGeographic\\Models\\District');\n }", "protected function getDistrictsRequest()\n {\n\n $resourcePath = '/districts';\n $formParams = [];\n $queryParams = [];\n $headerParams = [];\n $httpBody = '';\n $multipart = false;\n\n\n\n // body params\n $_tempBody = null;\n\n if ($multipart) {\n $headers= $this->headerSelector->selectHeadersForMultipart(\n ['application/json']\n );\n } else {\n $headers = $this->headerSelector->selectHeaders(\n ['application/json'],\n []\n );\n }\n\n // for model (json/xml)\n if (isset($_tempBody)) {\n $httpBody = $_tempBody; // $_tempBody is the method argument, if present\n\n } elseif (count($formParams) > 0) {\n if ($multipart) {\n $multipartContents = [];\n foreach ($formParams as $formParamName => $formParamValue) {\n $multipartContents[] = [\n 'name' => $formParamName,\n 'contents' => $formParamValue\n ];\n }\n // for HTTP post (form)\n $httpBody = new MultipartStream($multipartContents);\n\n } elseif ($headers['Content-Type'] === 'application/json') {\n $httpBody = \\GuzzleHttp\\json_encode($formParams);\n\n } else {\n // for HTTP post (form)\n $httpBody = \\GuzzleHttp\\Psr7\\build_query($formParams);\n }\n }\n\n // this endpoint requires OAuth (access token)\n if ($this->config->getAccessToken() !== null) {\n $headers['Authorization'] = 'Bearer ' . $this->config->getAccessToken();\n }\n\n $defaultHeaders = [];\n if ($this->config->getUserAgent()) {\n $defaultHeaders['User-Agent'] = $this->config->getUserAgent();\n }\n\n $headers = array_merge(\n $defaultHeaders,\n $headerParams,\n $headers\n );\n\n $query = \\GuzzleHttp\\Psr7\\build_query($queryParams);\n return new Request(\n 'GET',\n $this->config->getHost() . $resourcePath . ($query ? \"?{$query}\" : ''),\n $headers,\n $httpBody\n );\n }", "public function getDistricts(Request $request)\n {\n $province = $request->get('province');\n $list = $this->getDistrict($province);\n return $list;\n }", "public function searchDistrict($search)\n\t{\n\t\t$search = $this->produceUrlParameter($search);\n\t\treturn $this->getContent($this->geoDomain . 'api/districts/' . $search . '/search');\n\t}", "public function getDistrictsbyStateId()\n\t{\n\t\t$values = Input::all();\n\t\t$entities = \\City::where(\"stateId\",\"=\",$values['id'])->get();\n\t\t$response = \"<option> --select city-- </option>\";\n\t\tforeach ($entities as $entity){\n\t\t\t$response = $response.\"<option value='\".$entity->id.\"'>\".$entity->name.\"</option>\";\t\t\t\n\t\t}\n\t\techo $response;\n\t}", "public function getDistrict() {\n return $this->hasOne(Districts::className(), ['id' => 'district_id']);\n }", "public function show(district $district)\n {\n //\n }", "function portal_get_district_info($district_id) {\n\n\t$query = 'SELECT * FROM portal_districts WHERE district_id = ?';\n\t$params = array($district_id);\n\t\n\t$results = mystery_select_query($query, $params, 'portal_dbh');\n\t\n\tif (count($results) > 0) {\n\t\treturn $results[0];\n\t} else {\n\t\treturn $results;\n\t}\n\t\n}", "public function getDsFusion() {\n return $this->dsFusion;\n }", "public function action_list() {\n return \\Bus\\Districts_List::getInstance()->execute();\n }", "private function getDistrict($province = null)\n {\n if (empty($province)) {\n $districts = array();\n } else {\n $districts = LocationDistrict::select('code', 'title')\n ->where('p_code', '=', $province)\n ->pluck('title', 'code')\n ->toArray();\n }\n return $districts;\n }", "public function ajaxdistricts(Request $request, $id)\n {\n $districts = District::where('region_id', $id)->get();\n return $districts;\n }", "public function getDistrictList()\n\t{\n\t\t$districts = $this->getDistricts();\n\t\t$districtsList = array();\n\n\t\tif ($districts) {\n\t\t\tforeach ($districts as $value) {\n\t\t\t\t$districtsList[$value->id] = $value->title;\n\t\t\t}\n\t\t}\n\n\t\treturn $districtsList;\n\t}", "public function show(District $district)\n {\n //\n }", "public function show(District $district)\n {\n //\n }", "public function district(Request $request)\n {\n $district = District::where('zone_id', $request->zone)->get();\n return \\Response::json($district);\n }", "public function search() {\n // @todo Please modify the following code to remove attributes that should not be searched.\n\n $criteria = new CDbCriteria;\n\n $criteria->compare('district_id', $this->district_id);\n $criteria->compare('district_name_en', $this->district_name_en, true);\n $criteria->compare('district_name_ch', $this->district_name_ch, true);\n $criteria->compare('district_countryID', $this->district_countryID);\n $criteria->compare('district_created', $this->district_created, true);\n $criteria->compare('district_updated', $this->district_updated, true);\n $criteria->compare('district_status', $this->district_status);\n\n return new CActiveDataProvider($this, array(\n 'criteria' => $criteria,\n 'sort' => array(\n 'defaultOrder' => 'district_countryID ASC, district_name_en ASC'\n ),\n 'Pagination' => array(\n 'PageSize' => 20\n ),\n ));\n }", "public function listlocations()\n\t{\n\t\t$query = $this->db->get('district');\n return $query->result();\n\t}" ]
[ "0.62352544", "0.60537654", "0.6019778", "0.60001016", "0.57286537", "0.5532115", "0.5532115", "0.5532115", "0.5532115", "0.5519216", "0.5479691", "0.545605", "0.5440413", "0.5387399", "0.53843594", "0.53769886", "0.5365626", "0.5283368", "0.52199304", "0.5219082", "0.5191941", "0.5182247", "0.5177287", "0.51512325", "0.51338166", "0.5122581", "0.5122581", "0.51166433", "0.51108336", "0.50800645" ]
0.7659177
0
Lists all IncOrdenesCompras models.
public function actionIndex() { $searchModel = new IncOrdenesComprasSearch(); $dataProvider = $searchModel->search(Yii::$app->request->queryParams); $this->layout="main"; return $this->render('index', [ 'searchModel' => $searchModel, 'dataProvider' => $dataProvider, ]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function list()\n {\n return \\App\\Compromisso::all();\n }", "public function actionIndex() {\n\n $searchModel = new OrdenCompraSearch();\n $dataProvider = $searchModel->searchCliente(Yii::$app->request->queryParams);\n\n return $this->render('index', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]);\n }", "public function obterTodasCompras(){\n $compra = new CompraDAO();\n return $compra->getAll();\n }", "public function index()\r\n {\r\n return LicenciaConduccion::all();\r\n }", "public function actionIndex()\n {\n $searchModel = new EncomiendasSearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams);\n\n return $this->render('index', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]);\n }", "public function index(){\n $compras = compra::all();\n $compras->load(['proveedor']);\n $compras->load(['personal']);\n $compras = compra::orderBy('codicom', 'asc')->get();\n return view('compra.index',compact('compras'));\n }", "public function index()\n {\n $compartirs = Compartir::orderBy('created_at', 'DESC')->get();\n return \\view('admin.datosInteracciones.datosCompartirs', compact('compartirs'));\n }", "public function index()\n {\n //\n return Company::all();\n }", "public function index()\n { \n\n $compras = Compra::all();\n\n return view('compras.index', compact('compras'));\n }", "public function index()\n {\n $compras = Compra::get();\n\n return view('admin.compra.index', compact( 'compras' ));\n }", "public function actionIndex()\n {\n $searchModel = new CapacitacionesSearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams);\n\n return $this->render('index', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]);\n }", "public function index()\n {\n $user_id = Auth::user()->id;\n $compras = Compra::all()->where('user_id', '=', $user_id);\n\n return view('cliente.compras')->with('compras', $compras);\n \n }", "public function index()\n {\n return view('Diagrama.OTCompras.index');\n }", "public function indexAction()\n {\n $em = $this->getDoctrine()->getManager();\n\n $comprars = $em->getRepository('AppBundle:Comprar')->findAll();\n\n return $this->render('comprar/index.html.twig', array(\n 'comprars' => $comprars,\n ));\n }", "public function actionIndex()\n {\n $searchModel = new ColaboradorSearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams);\n\n return $this->render('index', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]);\n }", "public function actionIndex()\n {\n $searchModel = new ChildCompanyCategroySearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams);\n $dataProvider->query->orderBy(\"id desc\");\n\n return $this->render('index', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]);\n }", "public function actionIndex()\n {\n $model = Co::find()->orderBy([\n 'created_at'=>SORT_ASC,\n 'id' => SORT_DESC,\n ])->limit(50)->all();\n \n $countAll = Co::getCountAll();\n \n return $this->render('index',[\n 'models' => $model,\n 'countAll' => $countAll,\n ]);\n }", "public function list_entrega_cocina(){\r\n\t\t$data =array( \r\n\t\t\t\"actas\" => $this->Formularios_model->get_actas_entrega_prod_cocina(),\r\n\t\t\t//\"id_form\" => $id_form_pedido,\r\n\t\t);\r\n\t\t$this->load->view(\"layouts/header\");\r\n\t\t$this->load->view(\"layouts/aside\");\r\n\t\t$this->load->view(\"admin/formularios/fentrega_cocina/list\",$data);\r\n\t\t$this->load->view(\"layouts/footer\");\r\n\t}", "public function compras()\n {\n return $this->hasMany(\"App\\Models\\Compra\");\n }", "function getAllCompagnies() {\r\n// Initialiser la connexion BDD\r\n try {\r\n // LIST: CONTIENDRA UN TABLEAU D'OBJETS\r\n $list = array();\r\n if (is_null(parent::getBdd())) {\r\n parent::__construct();\r\n }\r\n if (!parent::getBdd()->inTransaction()) {\r\n parent::getBdd()->beginTransaction();\r\n }\r\n// Query SQL\r\n $query = \"SELECT * FROM Compagnies\";\r\n\r\n\r\n $response = parent::getBdd()->query($query);\r\n// Boucler sur les resultats \r\n while ($data = $response->fetch()) {\r\n // SI ID exite => Creer l'objet\r\n if (isset($data['id'])) {\r\n $object = new Compagnie($data['id']);\r\n } else {\r\n // ERROR\r\n return null;\r\n }\r\n\r\n // REMPLIR LOBJET AVEC LES ATTRIBUTS\r\n\r\n if (isset($data['adresseFacturation'])) {\r\n $object->setAdresseFacturation($data['adresseFacturation']);\r\n }\r\n if (isset($data['manager'])) {\r\n $object->setManager($data['manager']);\r\n }\r\n if (isset($data['libelle'])) {\r\n $object->setLibelle($data['libelle']);\r\n }\r\n if (isset($data['logo'])) {\r\n $object->setLogo($data['logo']);\r\n }\r\n\r\n\r\n // REMPLIR LA LISTE AVEC\r\n array_push($list, $object);\r\n }\r\n $response->closeCursor();\r\n if (empty($list)) {\r\n return null;\r\n }\r\n return $list;\r\n } catch (Exception $e) {\r\n error_log($e->getMessage());\r\n }\r\n return null;\r\n }", "public function index()\n {\n $compa = Companies::orderBy('id', 'DESC')->paginate(10);\n return view('companies.index', ['compa'=> $compa]);\n }", "public function actionIndex()\n {\n $searchModel = new CompanySearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams);\n\n return $this->render('index', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]);\n }", "public function actionIndex()\n {\n $searchModel = new ComsaveSearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams);\n\n return $this->render('index', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]);\n }", "public function index()\n {\n $compras = Compras::where('status', 1)\n ->orderBy('id')->get(); \n return view('Compras.index')->with('compras', $compras);\n }", "public function index()\n {\n //get Companies\n $companies = Company::paginate(15);\n\n return CompanyResource::collection($companies);\n }", "public function index()\n {\n return CategoriaLicencia::all();\n }", "public function actionIndex()\n {\n $dataProvider = new ActiveDataProvider([\n 'query' => ContaCorrente::find(),\n ]);\n\n return $this->render('index', [\n 'dataProvider' => $dataProvider,\n ]);\n }", "public function indexAction()\n {\n $em = $this->getDoctrine()->getManager();\n\n $comunicados = $em->getRepository('SICBundle:Comunicado')->findAll();\n\n return $this->render('comunicado/index.html.twig', array(\n 'comunicados' => $comunicados,\n ));\n }", "public function getAll()\n {\n //\n //$liste_comptes = Compte::paginate(2);\n $liste_comptes = Compte::all();\n return view('compte.list',['liste_comptes' =>$liste_comptes]);\n }", "public function index()\n {\n return new ProductionCompaniesCollection(ProductionCompanies::all());\n }" ]
[ "0.7230284", "0.71356934", "0.64602125", "0.61487764", "0.61207134", "0.61107665", "0.6060886", "0.6054965", "0.6045934", "0.6044142", "0.60334647", "0.6028672", "0.60007024", "0.60003805", "0.59872365", "0.59542316", "0.5950522", "0.5944885", "0.5896776", "0.58881044", "0.58723783", "0.5845228", "0.5839486", "0.5836906", "0.58313996", "0.5825809", "0.5821055", "0.57884425", "0.5784691", "0.57842904" ]
0.73186177
0
Creates a new IncOrdenesCompras model. If creation is successful, the browser will be redirected to the 'view' page.
public function actionCreate() { $model = new IncOrdenesCompras(); if ($model->load(Yii::$app->request->post()) && $model->save()) { return $this->redirect(['view', 'id' => $model->id]); } $this->layout="main"; return $this->render('create', [ 'model' => $model, ]); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function actionCreate() {\n\n $model = new OrdenCompra();\n $model->cliente_uuid = Yii::$app->getModule('ared')->uuid;\n\n if ($model->load(Yii::$app->request->post())) {\n if ($model->save()) {\n Yii::$app->getSession()->setFlash('success', 'La operación se realizó con éxito');\n return $this->redirect(['view', 'id' => $model->_id]);\n } else {\n Yii::$app->getSession()->setFlash('error', 'Se ha producido un error al realizar la operación');\n }\n }\n\n return $this->render('create', ['model' => $model]);\n }", "public function actionCreate()\n {\n $model = new Comsave();\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n return $this->redirect(['view', 'usuario_id' => $model->usuario_id, 'comentario_id' => $model->comentario_id]);\n }\n\n return $this->render('create', [\n 'model' => $model,\n ]);\n }", "public function actionCreate()\n\t{\n\t\t$model=new Ocompra;\n\t\t$model->valorespordefecto();\n\t\t// Uncomment the following line if AJAX validation is needed\n\t\t $this->performAjaxValidation($model);\n\n\t\tif(isset($_POST['Ocompra']))\n\t\t{\n\t\t\t$model->attributes=$_POST['Ocompra'];\n\t\t\tif($model->save())\n\t\t\t {\n\t\t\t $command = Yii::app()->db->createCommand(\" delete from \".Yii::app()->params['prefijo'].\"docompra_t where idsesion=\".Yii::app()->user->getId());\n\t\t $command->execute();\n\t\t\t\t$this->redirect(array('update','id'=>$model->idguia));\n\n\t\t\t\t}\n\t\t}\n\n\t\t$this->render('create',array(\n\t\t\t'model'=>$model,\n\t\t));\n\t}", "public function actionCreate()\n {\n $model = new TarjControlvacs();\n $modelVacunacion = [new Calendariovacunacion];\n \n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n return $this->redirect(['view', 'id' => $model->CODTARCONTVAC]);\n } else {\n return $this->render('create', [\n 'model' => $model,\n 'modelVacunacion' => (empty($modelVacunacion)) ? [new Calendariovacunacion] : $modelVacunacion\n ]);\n }\n }", "public function actionCrear()\n {\n $model = new Coches();\n $model->usuario_id = Yii::$app->user->id;\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n Yii::$app->session->setFlash('success', 'Tu coche ha sido añadido correctamente.');\n return $this->redirect(['coches/mis-coches']);\n }\n\n return $this->render('crear', [\n 'model' => $model,\n ]);\n }", "public function actionCreate() {\n $this->title_action = Yii::t('smith', Yii::t('smith', 'Criar Colaborador'));\n $this->pageTitle = Yii::t('smith', Yii::t('smith', 'Criar Colaborador'));\n $model = new Colaborador;\n $modelEquipe = new Equipe;\n\n if (isset($_POST['Equipe'])) {\n $modelEquipe->attributes = $_POST['Equipe'];\n $user = UserGroupsUser::model()->findByPk(Yii::app()->user->id);\n if (isset($user->fk_empresa))\n $modelEquipe->fk_empresa = $user->fk_empresa;\n\n if ($modelEquipe->save()) {\n Yii::app()->user->setFlash('success', Yii::t('smith', 'Equipe inserida com sucesso.'));\n $this->refresh();\n }\n }\n\n if (isset($_POST['Colaborador'])) {\n $salario = MetodosGerais::real2float($_POST['Colaborador']['salario']);\n $model->attributes = $_POST['Colaborador'];\n $model->salario = $salario;\n $model->fk_equipe = $_POST['Colaborador']['fk_equipe'];\n $model->fk_empresa = MetodosGerais::getEmpresaId();\n $model->ativo = 1;\n\n if ($model->save()) {\n\n Yii::app()->user->setFlash('success', Yii::t('smith', 'Colaborador inserido com sucesso.'));\n $this->redirect(array('index'));\n } else {\n Yii::app()->user->setFlash('error', Yii::t('smith', 'Colaborador não pôde ser inserido.'));\n }\n }\n\n $this->render('create', array(\n 'model' => $model,\n 'modelEquipe' => $modelEquipe\n ));\n }", "public function actionCreate() {\n $model = new Clientes;\n\n // Uncomment the following line if AJAX validation is needed\n // $this->performAjaxValidation($model);\n\n if (isset($_POST['Clientes'])) {\n $model->attributes = $_POST['Clientes'];\n\t\t\t\n\t\t\tif (isset($_POST['Clientes']['estrella']))\n\t\t\t\t$model->estrella = $_POST['Clientes']['estrella'];\n\t\t\telse\n\t\t\t\t$model->estrella = 0;\n\t\t\tif (($model->tipoCliente != Clientes::TYPE_INVERSOR) && ($model->tipoCliente != Clientes::TYPE_TOMADOR_E_INVERSOR)) {\n\t\t\t\t$model->porcentajeSobreInversion = 0;\n\t\t\t\t$model->estrella = 0;\n\t\t\t}\n\t\t\t\n if ($model->save())\n $this->redirect(array('view', 'id' => $model->id));\n }\n\n $this->render('create', array(\n 'model' => $model,\n ));\n }", "public function create ()\n\t{\n\t\tif(Input::hasPost('Compra'))\n\t\t{\n\t\t\t$us = new Compra(Input::post('Compra'));\n\t\t\tif($us->create())\n\t\t\t{\n\t\t\t\t//Flash::Valid($us->nombreCliente);\n\t\t\t\tFlash::Valid('Operacion Exitosa');\n\t\t\t\tInput::delete();//Limpia los campos del input\n\t\t\t\treturn Redirect::to(\"Compra/index/\");\n\t\t\t}else\n\t\t\t{\n\t\t\t\tFlash::Error('Fallo en la Operacion');\n\t\t\t\treturn Redirect::to(\"Compra/create/\");\n\t\t\t}\n\n\t\t}\n\t}", "public function actionCrear_curso()\n {\n $model= new Curso;\n $this->render('crear_curso',array('model'=>$model));\n }", "public function actionCreate()\n {\n $model = new RecursoProgramado();\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n return $this->redirect(['view', 'id' => $model->id]);\n } else {\n return $this->render('create', [\n 'model' => $model,\n ]);\n }\n }", "public function actionCreate()\n\t{\n\t\t$model=new Vehiculos;\n\n\t\t// Uncomment the following line if AJAX validation is needed\n\t\t// $this->performAjaxValidation($model);\n\n\t\tif(isset($_POST['Vehiculos']))\n\t\t{\n\t\t\t$model->attributes=$_POST['Vehiculos'];\n\t\t\t$model->marca = $_POST['Vehiculos']['marca'];\n\t\t\t$model->modelo_anio = $_POST['Vehiculos']['modelo_anio'];\n\t\t\t$model->propietario = $_POST['Vehiculos']['propietario'];\n\t\t\tif($model->save())\n\t\t\t\t$this->redirect(array('view','id'=>$model->id));\n\t\t}\n\n\t\t$this->render('create',array(\n\t\t\t'model'=>$model,\n\t\t));\n\t}", "public function actionCreate()\n\t{\n\t\t$model=new Contrato;\n\n\t\t// Uncomment the following line if AJAX validation is needed\n\t\t //$this->performAjaxValidation($model);\n\n//\t\tif(isset($_POST['Contrato']))\n//\t\t{\n// \n// \n//\t\t}\n\n\t\t$this->render('create',array(\n\t\t\t'model'=>$model,\n\t\t));\n\t}", "public function actionCreate()\n\t{\n\n\n\n\n\t\t$model=new Inventariofisicopadre;\n\n\n\t\tif(isset($_POST['Inventariofisicopadre']))\n\t\t{\n\t\t\t$model->attributes=$_POST['Inventariofisicopadre'];\n\t\t\tif(!is_null($model->findInventarioabierto($model->codcen,$model->codal))){//verificanosd primero si se han cerrado los otros inventarios\n\t\t\t\tMiFactoria::Mensaje('error','Ya existe un conteo abierto, cierrelo e intente nuevamente ');\n\t\t\t\t$this->render('create',array(\n\t\t\t\t\t'model'=>$model,\n\t\t\t\t));\n\t\t\t\tyii:app()->end();\n\t\t\t}\n\n\t\t\tif($model->save()){\n\t\t\t\tMiFactoria::Mensaje('success','Se ha creado el conteo');\n\t\t\t\tif(yii::app()->settings->get('inventario','inventario_bloqueado')=='1'){\n\t\t\t\t\t$registro=$model->almacen;\n\t\t\t\t\t$registro->setScenario('bloqueo');\n\t\t\t\t\t$registro->bloqueado='1';$registro->save();unset($registro);\n\t\t\t\t\tMiFactoria::Mensaje('notice','El conteo mantendrá bloqueado el inventario deeste almacen, no podrá efectuar movimietos de materiales\n\t\t\t\t\tdurante el mismo hasta su cierre o anulación');\n\t\t\t\t}\n\t\t\t\t$this->redirect(array('update','id'=>$model->id));\n\t\t\t}\n\t\t}\n\t\t$this->render('create',array(\n\t\t\t'model'=>$model,\n\t\t));\n\t}", "public function actionCreateContoh()\n {\n $model = new InputPeriksa();\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n // return $this->redirect(['view', 'id' => $model->id_periksa]);\n $searchModel = new InputPeriksaSearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams);\n\n return $this->render('index', [\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]); \n }\n \n\n $searchModel = new RegPasienSearch();\n $dataProvider = $searchModel->search(Yii::$app->request->queryParams);\n\n return $this->render('create', [\n 'model' => $model,\n 'searchModel' => $searchModel,\n 'dataProvider' => $dataProvider,\n ]);\n\n }", "public function actionCreate()\n {\n $model = new Capacitaciones();\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n return $this->redirect(['view', 'id' => $model->idCapacitacion]);\n } else {\n return $this->render('create', [\n 'model' => $model,\n ]);\n }\n }", "public function actionCreate()\n {\n $model = new DesincorporacionesBm();\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n return $this->redirect(['view', 'id' => $model->cod]);\n } else {\n return $this->render('create', [\n 'model' => $model,\n ]);\n }\n }", "public function criarAction()\n {\n $this->modelComunidade->insert($this->_getAllParams());\n\n $this->_redirect('comunidade/index');\n }", "public function actionCreate()\n\t{\n\t\t$model=new Productocostos;\n\n\t\t// Uncomment the following line if AJAX validation is needed\n\t\t// $this->performAjaxValidation($model);\n\n\t\tif(isset($_POST['Productocostos']))\n\t\t{\n\t\t\t$model->attributes=$_POST['Productocostos'];\n\t\t\tif($model->save())\n\t\t\t\t$this->redirect(array('view','id'=>$model->cod));\n\t\t}\n\n\t\t$this->render('create',array(\n\t\t\t'model'=>$model,\n\t\t));\n\t}", "public function actionCreate()\n {\n $model = new Bienes();\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n return $this->redirect(['view', 'id' => $model->cod]);\n } else {\n return $this->render('create', [\n 'model' => $model,\n ]);\n }\n }", "public function actionCreate()\n {\n $model = new TblClientes();\n $tiposDocumento = TblTiposDocumentos::find()->all();\n $municipios = TblMunicipios::find()->all();\n\t$sectoresComerciales = \\app\\models\\TblSectoresComerciales::find()->all();\n\t$sectoresEconomicos = \\app\\models\\TblSectoresEconomicos::find()->all();\n\t\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n return $this->redirect(['index', 'id' => $model->id_cliente]);\n } else {\n return $this->render('create', [\n\t\t'dimensiones' => TblOpciones::getOpciones(\"dimension\", true),\n\t\t'origenesJudiciales' => TblOpciones::getOpciones(\"origen_judicial\", true),\n\t\t'coberturas' => TblOpciones::getOpciones(\"cobertura\", true),\n\t\t'origenesCapitales' => TblOpciones::getOpciones(\"origen_capital\", true),\n\t\t'sectoresEconomicos' => ArrayHelper::map($sectoresEconomicos, \"id_sector_economico\", \"nombre_sector_economico\"),\n\t\t'sectoresComerciales' => ArrayHelper::map($sectoresComerciales, \"id_sector_comercial\", \"nombre_sector_comercial\"),\n 'model' => $model,\n 'tiposDocumentos' => ArrayHelper::map($tiposDocumento, \"id_tipo_documento\", \"nombre\"),\n 'municipios' => ArrayHelper::map($municipios, \"id_municipio\", \"municipioMasDepartamento\"),\n ]);\n }\n }", "public function actionCreate()\n {\n $model = new MarcacaoConsulta();\n\n if(\\Yii::$app->user->can('criarMarcacaoConsulta')) {\n\n if ($model->load(Yii::$app->request->post())) {\n $model->criarMarcacaoConsultaFront();\n return $this->redirect(['index', 'id' => $model->id]);\n }\n\n }\n\n return $this->render('create', [\n 'model' => $model,\n ]);\n }", "public function create()\n {\n $nrocompra = Carbon::now();\n $nrocompra = $nrocompra->format('YmdHi');\n\n $date = Carbon::now();\n $limite = $date->format('Y-m-d');\n $date = $date->format('d-m-Y');\n\n $empleados = DB::table('empleados')\n ->join('cargos', 'cargos.id', '=', 'id_cargo')\n ->select('empleados.*')\n ->orderBy('empleados.nombre','asc')\n ->where('cargos.nombre','Promotor')->get();\n\n $proveedores = Proveedor::orderBy('nombre', 'asc')->get();\n $Sucursal = Sucursal::orderBy('descripcion', 'asc')->get();\n $articulos = Articulo::all();\n $sucursales = Sucursal::all();\n\n return view('sprint3/compra.create', compact('nrocompra', 'empleados' ,'proveedores', 'date', 'limite' , 'articulos','sucursales'));\n }", "public function actionCreate()\n {\n $model = new NumcropHasCompartment();\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n return $this->redirect(['view', 'numcrop_cropnum' => $model->numcrop_cropnum, 'compartment_idCompartment' => $model->compartment_idCompartment]);\n } else {\n return $this->render('create', [\n 'model' => $model,\n ]);\n }\n }", "public function actionCreate()\n {\n $model = new MovBancarios();\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n return $this->redirect(['view', 'id' => $model->id]);\n }\n\n return $this->render('create', [\n 'model' => $model,\n ]);\n }", "public function actionCrear()\n {\n $model = new Indicadores();\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n return $this->redirect(['detalle', 'id' => $model->idIndicador]);\n } else {\n return $this->render('crear', [\n 'model' => $model,\n ]);\n }\n }", "public function actionCreate()\n {\n Yii::$app->session->setTimeout(5400);\n $roles = Yii::$app->session['rol-exito'];\n\n // $marcas = Marca::find()->orderBy(['nombre' => SORT_ASC])->all();\n $ciudades = Ciudad::find()->orderBy(['nombre' => SORT_ASC])->all();\n $distritos = Distrito::find()->orderBy(['nombre' => SORT_ASC])->all();\n $empresas = Empresa::find()->orderBy(['nombre' => SORT_ASC])->all();\n $array_post = Yii::$app->request->post();\n $model = new CentroCosto();\n\n $usuario = Usuario::findOne(Yii::$app->session['usuario-exito']);\n $zonasUsuario = array();\n $marcasUsuario = array();\n $distritosUsuario = array();\n\n if ($usuario != null) {\n\n $zonasUsuario = $usuario->zonas;\n //$marcasUsuario = $usuario->marcas;\n $distritosUsuario = $usuario->distritos;\n\n }\n\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n\n //$distrito = array_key_exists('distrito', $array_post) ? $array_post['distrito'] : '';\n\n // if ($distrito != '') {\n\n // $model_r = new CentroDistrito();\n // $model_r->setAttribute('distrito_id', $distrito);\n // $model_r->setAttribute('centro_costo_codigo', $model->codigo);\n // $model_r->save();\n\n // }\n return $this->redirect('index');\n } else {\n return $this->render('create', [\n 'model' => $model,\n // 'marcas' => $marcas,\n 'ciudades' => $ciudades,\n 'distritos' => $distritos,\n 'zonasUsuario' => $zonasUsuario,\n //'marcasUsuario' => $marcasUsuario,\n 'distritosUsuario' => $distritosUsuario,\n 'empresas' => $empresas,\n ]);\n }\n }", "public function actionCrear()\n {\n $model = new Ciudad();\n\n\t\t$paises=ArrayHelper::map(Pais::find()->where(['lower(status)'=>'activo'])->all(),'id','nombre');\n\t\t$regiones=ArrayHelper::map(Region::find()->where(['lower(status)'=>'activo'])->all(),'id','nombre');\n\t\tasort($paises);asort($regiones);\n\t\t\n if ($model->load(Yii::$app->request->post()) && $model->save()) {\n return $this->redirect(['view', 'id' => $model->id]);\n } else {\n return $this->render('create', [\n 'model' => $model,\n 'paises' => $paises,\n 'regiones' => $regiones,\n ]);\n }\n }", "public function create()\n {\n $compagnies=Compagnie::all('IdCompagnie','NomCompagnie');\n return view('admin.vol.create',compact('compagnies'));\n }", "public function actionCreate()\n\t{\n\t\t// $this->performAjaxValidation($model);\n\t\n\t\tif(isset($_POST['ErpnetOrdem']))\n\t\t{\n\t\t\t$model=new ErpnetOrdem;\n\t\t\t$model->setScenario('producao');\n\t\t\t$modelEstoque=new ErpnetEstoque;\n\t\t\t$model->attributes=$_POST['ErpnetOrdem'];\n\t\t\t\t\n\t\t\tif ($model->save()) {\n\t\t\t\t$modelEstoque->empresa=$model->empresa;\n\t\t\t\t$modelEstoque->id_produto=$model->id_produto;\n\t\t\t\t$modelEstoque->id_ordem=$model->getPrimaryKey();\n\t\t\t\t$modelEstoque->id_wbs=$model->id_wbs;\n\t\t\t\t$modelEstoque->descricao_wbs=$model->idWbs->concatened;\n\t\t\t\t$modelEstoque->data_movimento=date('d/m/Y',strtotime($model->data_termino));\n\t\t\t\t$modelEstoque->usuario=Yii::app()->user->name;\n\t\t\t\t$modelEstoque->quantidade=$model->quantidade;\n\t\t\t\t$modelEstoque->turno=$model->turno;\n\t\t\t\t$modelEstoque->tipo='entrada';\n\t\t\t\tif ($modelEstoque->save()) {\n\t\t\t\t\tYii::app()->user->setFlash('ordem',$model->idWbs->concatened.':'.$model->quantidade.' - '.utf8_encode(Yii::t('erpnetUi', 'viewCreateFlash', array(), 'i18n')));\n\t\t\t\t\t$this->redirect(array('create'));\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t\t$model=new ErpnetOrdem;\n\t\t$model->setScenario('producao');\n\t\t$modelOrdemItem=new ErpnetOrdemItem;\n\t\t$modelOrdemItem->setScenario('producao');\n\t\t$modelEstoque=new ErpnetEstoque;\n\t\t$modelFatura=new ErpnetFatura;\n\t\t$this->render('createOrdem',array(\n\t\t\t\t'model'=>$model,'modelEstoque'=>$modelEstoque,'modelFatura'=>$modelFatura,'modelOrdemItem'=>$modelOrdemItem,\n\t\t\t\t'tipo'=>'producaoUnica',\n\t\t));\n\t}", "public function actionCreate()\n {\n if (Yii::$app->request->isAjax && Yii::$app->request->post()) {\n $model = new Comentarios();\n $model->comentario = Yii::$app->request->post('comentario');\n $model->noticia_id = Yii::$app->request->post('noticia');\n $model->padre_id = Yii::$app->request->post('padre_id');\n if (Yii::$app->request->post('escenario') == Comentarios::ESCENARIO_NOTICIA) {\n $model->scenario = Comentarios::ESCENARIO_NOTICIA;\n }\n\n if (Yii::$app->request->post('escenario') == Comentarios::ESCENARIO_PADRE) {\n $model->scenario = Comentarios::ESCENARIO_PADRE;\n }\n\n $model->usuario_id = Yii::$app->user->identity->id;\n\n if ($model->save()) {\n $model->refresh();\n return ListView::widget([\n 'dataProvider' => new ActiveDataProvider([\n 'query' => Comentarios::find()->where(['id' => $model->id]),\n ]),\n 'itemView' => '/comentarios/_comentarios',\n 'summary' => '',\n ]);\n }\n\n return false;\n }\n }" ]
[ "0.8061937", "0.7452723", "0.73227197", "0.7299986", "0.72030234", "0.7124272", "0.70651776", "0.7063141", "0.7036275", "0.70259565", "0.6997825", "0.69878286", "0.69102585", "0.68939143", "0.6891497", "0.688454", "0.6831615", "0.68311834", "0.68186074", "0.6784231", "0.6773201", "0.6765951", "0.67553276", "0.6738346", "0.67310566", "0.6722322", "0.6717587", "0.67009354", "0.66971934", "0.6682403" ]
0.8673026
0
Finds the IncOrdenesCompras model based on its primary key value. If the model is not found, a 404 HTTP exception will be thrown.
protected function findModel($id) { if (($model = IncOrdenesCompras::findOne($id)) !== null) { return $model; } throw new NotFoundHttpException('The requested page does not exist.'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function loadModel($id) {\n $model = Companies::findOne($id);\n if ($model === null)\n throw new CHttpException(404, 'The requested page does not exist.');\n return $model;\n }", "protected function findModel($id) {\n if (($model = OrdenCompra::findOne($id)) !== null) {\n return $model;\n } else {\n throw new NotFoundHttpException('The requested page does not exist.');\n }\n }", "public function loadModel($id)\n\t{\n\t\t$model=Ocompra::model()->findByPk($id);\n\t\tif($model===null)\n\t\t\tthrow new CHttpException(500,'No se encontro este documento de compra');\n\t\treturn $model;\n\t}", "protected function findModel($id) {\n if (($model = Comentarios::findOne($id)) !== null) {\n return $model;\n }\n\n throw new NotFoundHttpException('The requested page does not exist.');\n }", "public function loadModel($id) {\n $model = Colaborador::model()->findByPk($id);\n if ($model === null)\n throw new CHttpException(404, Yii::t('smith', 'A página não existe.'));\n return $model;\n }", "public function loadModel($id)\n\t{\n\t\t$model=Compra::model()->findByPk($id);\n\t\tif($model===null)\n\t\t\tthrow new CHttpException(404,'The requested page does not exist.');\n\t\treturn $model;\n\t}", "public function loadModel($id) {\n $model = AnalisisCredito::model()->findByPk($id);\n if ($model === null)\n throw new CHttpException(404, 'The requested page does not exist.');\n return $model;\n }", "public function loadModel($id) {\n $model = GestionSolicitudCredito::model()->findByPk($id);\n if ($model === null)\n throw new CHttpException(404, 'The requested page does not exists.');\n return $model;\n }", "protected function findModel($id)\n {\n if (($model = Comentarios::findOne($id)) !== null) {\n return $model;\n }\n\n throw new NotFoundHttpException('The requested page does not exist.');\n }", "public function loadModel($id)\n{\n$model=FindingReport::model()->findByPk($id);\nif($model===null)\nthrow new CHttpException(404,'The requested page does not exist.');\nreturn $model;\n}", "protected function findModel($id)\n {\n if (($model = CompanyCategroy::findOne($id)) !== null) {\n return $model;\n } else {\n throw new NotFoundHttpException('The requested page does not exist.');\n }\n }", "public function loadModel($id)\n{\n$model=Charge::model()->findByPk($id);\nif($model===null)\nthrow new CHttpException(404,'The requested page does not exist.');\nreturn $model;\n}", "protected function findModel($id)\n {\n if (($model = Comic::findOne(['id'=>$id,'status'=>Comic::STATUS_APPROVED])) !== null) {\n return $model;\n } else {\n return false;\n throw new NotFoundHttpException('Invalid Comic.');\n }\n }", "public function loadModel($id)\n\t{\n\t\t$model=Reportepesca::model()->findByPk($id);\n\t\tif($model===null)\n\t\t\tthrow new CHttpException(404,'El enlace o direccion solicitado no existe');\n\t\treturn $model;\n\t}", "public function show($id)\n {\n return \\App\\Compromisso::findOrFail($id); \n }", "protected function findPkSimple($key, ConnectionInterface $con)\n {\n $sql = 'SELECT acob_c_actividad, acob_c_objetivo, acob_cantidad_preguntas, acob_vigente, acob_r_fecha_creacion, acob_r_fecha_modificacion, acob_r_usuario FROM actividad_objetivo WHERE acob_c_actividad = :p0 AND acob_c_objetivo = :p1';\n try {\n $stmt = $con->prepare($sql);\n $stmt->bindValue(':p0', $key[0], PDO::PARAM_INT);\n $stmt->bindValue(':p1', $key[1], PDO::PARAM_INT);\n $stmt->execute();\n } catch (Exception $e) {\n Propel::log($e->getMessage(), Propel::LOG_ERR);\n throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), 0, $e);\n }\n $obj = null;\n if ($row = $stmt->fetch(\\PDO::FETCH_NUM)) {\n /** @var ChildActividadObjetivo $obj */\n $obj = new ChildActividadObjetivo();\n $obj->hydrate($row);\n ActividadObjetivoTableMap::addInstanceToPool($obj, serialize([(null === $key[0] || is_scalar($key[0]) || is_callable([$key[0], '__toString']) ? (string) $key[0] : $key[0]), (null === $key[1] || is_scalar($key[1]) || is_callable([$key[1], '__toString']) ? (string) $key[1] : $key[1])]));\n }\n $stmt->closeCursor();\n\n return $obj;\n }", "protected function findModel($id)\n {\n if (($model = Conversaciones::findOne($id)) !== null) {\n return $model;\n }\n\n throw new NotFoundHttpException('The requested page does not exist.');\n }", "public function loadModel($id)\n\t{\n\t\t$model=SolicitudContrato::model()->findByPk($id);\n\t\tif($model===null)\n\t\t\tthrow new CHttpException(404,'The requested page does not exist.');\n\t\treturn $model;\n\t}", "protected function findModel($id)\n {\n if (($model = Capacitaciones::findOne($id)) !== null) {\n return $model;\n } else {\n throw new NotFoundHttpException('The requested page does not exist.');\n }\n }", "protected function findPkSimple($key, $con)\n {\n $sql = 'SELECT `op_dec_id`, `op_id`, `op_dec_mont_demande`, `op_dec_mont_accord`, `op_dec_motif_demande`, `op_dec_motif_accord`, `op_dec_statut_id`, `date_create`, `date_modify`, `user_id`, `user_modify` FROM `operation_decouverts` WHERE `op_dec_id` = :p0';\n try {\n $stmt = $con->prepare($sql);\n $stmt->bindValue(':p0', $key, PDO::PARAM_INT);\n $stmt->execute();\n } catch (Exception $e) {\n Propel::log($e->getMessage(), Propel::LOG_ERR);\n throw new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e);\n }\n $obj = null;\n if ($row = $stmt->fetch(PDO::FETCH_NUM)) {\n $obj = new OperationDecouverts();\n $obj->hydrate($row);\n OperationDecouvertsPeer::addInstanceToPool($obj, (string) $key);\n }\n $stmt->closeCursor();\n\n return $obj;\n }", "public function findModel($rutColaborador)\n {\n if (($model = Colaborador::findOne(['rutColaborador' => $rutColaborador])) !== null){\n return $model;\n }\n throw new NotFoundHttpException('The requested page does not exist.');\n }", "protected function findPkSimple($key, $con)\n\t{\n\t\t$sql = 'SELECT `COMPETITION_ID`, `COMPETITION_LIBELLE`, `TYPE_SPORT_ID`, `VILLE_ID`, `PRIX_COMPETITION`, `ADRESSE_COMPETITION`, `DATE_COMPETITION`, `CREATED_AT`, `DELETED_AT` FROM `tbl_competition` WHERE `COMPETITION_ID` = :p0';\n\t\ttry {\n\t\t\t$stmt = $con->prepare($sql);\n\t\t\t$stmt->bindValue(':p0', $key, PDO::PARAM_INT);\n\t\t\t$stmt->execute();\n\t\t} catch (Exception $e) {\n\t\t\tPropel::log($e->getMessage(), Propel::LOG_ERR);\n\t\t\tthrow new PropelException(sprintf('Unable to execute SELECT statement [%s]', $sql), $e);\n\t\t}\n\t\t$obj = null;\n\t\tif ($row = $stmt->fetch(PDO::FETCH_NUM)) {\n\t\t\t$obj = new TblCompetition();\n\t\t\t$obj->hydrate($row);\n\t\t\tTblCompetitionPeer::addInstanceToPool($obj, (string) $key);\n\t\t}\n\t\t$stmt->closeCursor();\n\n\t\treturn $obj;\n\t}", "public function loadModel($id) {\n $model = NubeNotaCredito::model()->findByPk($id);\n if ($model === null)\n throw new CHttpException(404, 'The requested page does not exist.');\n return $model;\n }", "protected function findModel($id) {\n if (($model = Subproyectos::findOne($id)) !== null) {\n return $model;\n } else {\n throw new NotFoundHttpException('The requested page does not exist.');\n }\n }", "public function loadModel($id)\n\t{\n\t\t$model=Productocostos::model()->findByPk($id);\n\t\tif($model===null)\n\t\t\tthrow new CHttpException(404,'The requested page does not exist.');\n\t\treturn $model;\n\t}", "protected function findModel($id)\n {\n if (($model = MarcacaoConsulta::findOne($id)) !== null) {\n return $model;\n }\n\n throw new NotFoundHttpException('The requested page does not exist.');\n }", "protected function findModelCae($id)\n\t{\n\t\tif(($model = CaE::findOne($id)) !== null) {\n\t\t\treturn $model;\n\t\t}\n\n\t\tthrow new NotFoundHttpException(Yii::t('cms', 'The requested page does not exist.'));\n\t}", "public function loadModel($id) {\n $model = OrdemServico::model()->findByPk($id);\n if ($model === null)\n throw new CHttpException(404, 'The requested page does not exist.');\n return $model;\n }", "protected function findModel($id)\n {\n if (($model = Company::findOne($id)) !== null) {\n return $model;\n }\n\n throw new NotFoundHttpException(Yii::t('company', 'The requested page does not exist.'));\n }", "protected function findModel($id)\n {\n if (($model = CalificarServicio::findOne($id)) !== null) {\n return $model;\n } else {\n throw new NotFoundHttpException('The requested page does not exist.');\n }\n }" ]
[ "0.62959105", "0.6115032", "0.6104192", "0.59918797", "0.5984943", "0.5969851", "0.5887278", "0.58613724", "0.5840351", "0.5787333", "0.577431", "0.5767557", "0.57507914", "0.5733868", "0.57080734", "0.5706124", "0.570435", "0.56917995", "0.5673801", "0.56722254", "0.5666403", "0.5666173", "0.566546", "0.5663459", "0.56524485", "0.56496835", "0.5648894", "0.5647455", "0.56448334", "0.5624364" ]
0.67717224
0
Created by PhpStorm. User: jamesskywalker Date: 18/06/2019 Time: 12:29 THE CHALLENGE LEVEL 7 KYU You are the best freelancer in the city. Everybody knows you, but what they don't know, is that you are actually offloading your work to other freelancers and and you rarely need to do any work. You're living the life! To make this process easier you need to write a method called workNeeded to figure out how much time you need to contribute to a project. Giving the amount of time in minutes needed to complete the project and an array of pair values representing other freelancers' time in [Hours, Minutes] format ie. [[2, 33], [3, 44]] calculate how much time you will need to contribute to the project (if at all) and return a string depending on the case. If we need to contribute time to the project then return "I need to work x hour(s) and y minute(s)" If we don't have to contribute any time to the project then return "Easy Money!"
function workNeeded($projectMinutes, $freelancers) { $x = $projectMinutes - array_sum(array_map(function($f){ return $f[0] * 60 + $f[1]; },$freelancers)); return $x > 0 ? "I need to work " . floor($x/60) . " hour(s) and " . floor($x%60) . " minute(s)" : "Easy Money!"; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function message()\n {\n if(in_array($this->trial_type, ['h'])) {\n return 'Hours trial base must between 0 - 24.';\n }\n if(in_array($this->trial_type, ['d'])) {\n return 'Days trial base must between 0 - 30.';\n }\n }", "public function tiebreaker(): string;", "public function run() {\n\t\tDB::table('challenges')->delete();\n\n\t\t$faker = \\Faker\\Factory::create();\n\n\t\t$challenges = [\n\t\t\t\"This is a very easy challenge\",\n\t\t\t\"This challenge is a little harder but not by much. Particularly, this challenge \n\t\t\thas a lot more words to type than the last challenge.\",\n\t\t\t\"This is a simple paragraph that is meant to be nice and easy to type which is \n\t\t\twhy there will be mommas no periods or any capital letters so i guess this \n\t\t\tmeans that it cannot really be considered a paragraph but just a series of run \n\t\t\ton sentences this should help you get faster at typing as im trying not to \n\t\t\tuse too many difficult words in it although i think that i might start making \n\t\t\tit hard by including some more difficult letters I'm typing pretty quickly so \n\t\t\tforgive me for any mistakes i think that i will not just tell you a story about \n\t\t\tthe time i went to the zoo and found a monkey and a fox playing together they were \n\t\t\tso cute and i think that they were not supposed to be in the same cage but they \n\t\t\tsomehow were and i loved watching them horse\",\n\t\t\t\"The Super Bowl is the annual championship game of the National Football\n\t\t\tLeague (NFL), the highest level of professional American football in the\n\t\t\tUnited States, culminating a season that begins in the late summer of the\n\t\t\tprevious calendar year. The Super Bowl uses Roman numerals to identify each\n\t\t\tgame, rather than the year in which it is held. For example, Super Bowl I\n\t\t\twas played on January 15, 1967, following the 1966 regular season. The game\n\t\t\twas created as part of a merger agreement between the NFL and its\n\t\t\tthen-rival league, the American Football League (AFL). It was agreed that\n\t\t\tthe two leagues' champion teams would play in the AFL-NFL World\n\t\t\tChampionship Game until the merger was to officially begin in 1970.\",\n\t\t\t\"Civilizations have always been pyramidal in structure. As one climbs toward the \n\t\t\tapex of the social edifice, there is increased leisure and increasing opportunity \n\t\t\tto pursue happiness. As one climbs, one finds also fewer and fewer people to enjoy \n\t\t\tthis more and more. Invariably, there is a preponderance of the dispossessed. And \n\t\t\tremember this, no matter how well off the bottom layers of the pyramid might be on \n\t\t\tan absolute scale, they are always dispossessed in comparison with the apex.\"\n\t\t];\n\n\t\tfor ($i = 0; $i < count($challenges); $i++) {\n\t\t\tChallenge::create([\n\t\t\t\t'text' => $challenges[$i],\n\t\t\t\t'level' => $i + 1\n\t\t\t]);\n\t\t}\n\n\t\tfor ($i = 0; $i < 20; $i++) {\n\t\t\tChallenge::create([\n\t\t\t\t'text' => $faker->sentence(),\n\t\t\t\t'level' => $faker->numberBetween(1, 20)\n\t\t\t]);\n\t\t}\n\t}", "public function solve() : string{\n return \"\";\n }", "public function turnCrank(): string\n {\n return \"Your turned, but there's no quarter\\n\";\n }", "function gameEngine($dataOfTask, $numberOfAttempt, $textForTask)\n{\n line('Welcome to the Brain Game!');\n $name = prompt('May I have your name?');\n line(\"Hello, %s!\", $name);\n line($textForTask);\n $congratulationsText = \"Congratulations, %s!\";\n for ($i = 0; $i < $numberOfAttempt; $i++) {\n [$question, $rightAnswer] = $dataOfTask(); //talking with user and form data for checking\n line(\"Question: %s\", $question);\n $userAnswer = prompt(\"Your answer\");\n if ($rightAnswer !== $userAnswer) { //checking the answer\n $congratulationsText = \"Let's try again, %s!\";\n line(\"'{$userAnswer}' is wrong answer ;(. Correct answer was '{$rightAnswer}'.\");\n break;\n }\n line(\"Correct!\");\n }\n line($congratulationsText, $name);\n}", "public function getDifficultyString()\n\t{\n\t\tswitch($this->difficulty)\n\t\t{\n\t\t\tcase 0:\n\t\t\t\treturn \"Easy\";\n\t\t\tcase 1:\n\t\t\t\treturn \"Medium\";\n\t\t\tcase 2:\n\t\t\t\treturn \"Hard\";\n\t\t\tdefault:\n\t\t\t\treturn $this->difficulty;\n\t\t}\n\t}", "public function get_easy() {\n\t\t$rand_num_of_words = rand(2, 5);\n\t\t$target_words = $this->get_common_words($rand_num_of_words);\n\t\t$this->target_string = implode($target_words, \" \");\n\n\t\t$num_of_chars = strlen($target_string);\n\t\t$target_cpm = (($this->round_num * 2) + 100);\n\t\t$this->target_time = round(($num_of_chars/$target_cpm) * 60);\n\n\n\n\t\techo \"Number of words: \".$rand_num_of_words.\"<br>\";\n\t\techo \"Target string: \".$this->target_string.\"<br>\";\n\t\techo \"Length of target string: \".strlen($this->target_string).\"<br>\";\n\t\techo \"Target CPM: \".$target_cpm.\"<br>\";\n\t\techo \"Target time: \".$this->target_time.\" secs<br>\";\n\t}", "function GetBuildingTimeLevel ($user, $planet, $Element, $level) {\n\tglobal $pricelist, $resource, $reslist, $game_config;\n\n\t$level -= 1;\n\n\tif(in_array($Element, $reslist['build'])) {\n\t\t// Pour un batiment ...\n\t\t$cost_metal = floor($pricelist[$Element]['metal'] * pow($pricelist[$Element]['factor'], $level));\n\t\t$cost_crystal = floor($pricelist[$Element]['crystal'] * pow($pricelist[$Element]['factor'], $level));\n\t\t$time = ((($cost_crystal) + ($cost_metal)) / $game_config['game_speed']) * (1 / ($planet[$resource['6']] + 1)) * pow(0.5, $planet[$resource['7']]);\n\t\tif($user['rpg_geologue']!=0)\n\t\t{\n\t\t\t$time = floor(($time * 60 * 60) * 0.75);\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$time = floor(($time * 60 * 60) * 1);\n\t\t}\n\t} elseif (in_array($Element, $reslist['tech'])) {\n\t\t// Pour une recherche\n\t\t$cost_metal = floor($pricelist[$Element]['metal'] * pow($pricelist[$Element]['factor'], $level));\n\t\t$cost_crystal = floor($pricelist[$Element]['crystal'] * pow($pricelist[$Element]['factor'], $level));\n\t\t$intergal_lab = $user[$resource[114]];#intergalactic_tech\n\t\tif ( $intergal_lab < \"1\" ) {\n\t\t\t$lablevel = $planet[$resource['12']];\n\t\t} elseif ( $intergal_lab >= \"1\" ) {\n\t\t\t$empire = doquery(\"SELECT * FROM {{table}} WHERE id_owner='\". $user[id] .\"';\", 'planets');\n\t\t\t$NbLabs = 0;\n\t\t\twhile ($colonie = mysql_fetch_array($empire)) {\n\t\t\t\t$techlevel[$NbLabs] = $colonie[$resource['12']];\n\t\t\t\t$NbLabs++;\n\t\t\t}\n\t\t\tif ($intergal_lab >= \"1\") {\n\t\t\t\t$lablevel = 0;\n\t\t\t\tfor ($lab = 1; $lab <= $intergal_lab; $lab++) {\n\t\t\t\t\tasort($techlevel);\n\t\t\t\t\t$lablevel += $techlevel[$lab - 1];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t$time = (($cost_metal + $cost_crystal) / $game_config['game_speed']) / (($lablevel + 1) * 2)/ (($lablevel + 1) * 2) * pow(0.5, $planet[$resource['14']]);\n\t\tif($user['rpg_technocrate']!=0)\n\t\t{\n\t\t\t$time = floor(($time * 60 * 60) * 0.75);\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$time = floor(($time * 60 * 60) * 1);\n\t\t}\n\t} elseif (in_array($Element, $reslist['defense'])) {\n\t\t// Pour les defenses ou la flotte 'tarif fixe' dur�e adapt�e a u niveau nanite et usine robot\n\t\t$time = (($pricelist[$Element]['metal'] + $pricelist[$Element]['crystal']) / $game_config['game_speed']) * (1 / ($planet[$resource['15']] + 1)) * pow(1 / 2, $planet[$resource['7']]);\n\t\tif($user['rpg_ingenieur']!=0)\n\t\t{\n\t\t\t$time = floor(($time * 60 * 60) * 0.75);\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$time = floor(($time * 60 * 60) * 1);\n\t\t}\n\t} elseif (in_array($Element, $reslist['fleet'])) {\n\t\t$time = (($pricelist[$Element]['metal'] + $pricelist[$Element]['crystal']) / $game_config['game_speed']) * (1 / ($planet[$resource['8']] + 1)) * pow(1 / 2, $planet[$resource['7']]);\n\t\tif($user['rpg_amiral']!=0)\n\t\t{\n\t\t\t$time = floor(($time * 60 * 60) * 0.75);\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$time = floor(($time * 60 * 60) * 1);\n\t\t}\n\t}elseif (in_array($Element, $reslist['item'])) {\n\t\t$time = (($pricelist[$Element]['metal'] + $pricelist[$Element]['crystal']) / $game_config['game_speed']) * (1 / ($planet[$resource['8']] + 1)) * pow(1 / 2, $planet[$resource['7']]);\n\t\t$time = floor(($time * 60 * 60) * 1);\n\t}\n\n\n\treturn $time;\n}", "function problemstat($problem)\n {\n $stat = \"&nbsp;\";\n\n if (in_array($problem, $this->solved))\n {\n //$stat = $this->attime[$problem];\n $stat = $this->pv[$problem];\n // trigger_error(\"g_pv for \" . $problem . \" is\" . $stat, E_USER_WARNING);\n //if (array_key_exists($problem, $this->booboo))\n $seconds = $this->attime[$problem];\n $minutes = floor($seconds / 60);\n $seconds = $seconds - $minutes * 60;\n if ($seconds < 10) $seconds = \"0\" . $seconds;\n $stat = $stat . \" (\" . $minutes . \":\" . $seconds .\")\";\n }\n else if (array_key_exists($problem, $this->booboo))\n {\n $stat = \"(-\" . $this->booboo[$problem] . \")\";\n }\n else {\n $stat = \"0\";\n }\n\n return $stat;\n }", "function recess_message() {\n\t\tinclude_once INCLUDESPATH.\"easyparliament/recess.php\";\n\t\t$message = '';\n\t\tlist($name, $from, $to) = recess_prettify(date('j'), date('n'), date('Y'), 1);\n\t\tif ($name) {\n\t\t\t$message = 'The Houses of Parliament are in ' . $name . ' ';\n\t\t\tif ($from && $to) {\n\t\t\t\t$from = format_date($from, SHORTDATEFORMAT);\n\t\t\t\t$to = format_date($to, SHORTDATEFORMAT);\n\t\t\t\tif (substr($from, -4, 4) == substr($to, -4, 4)) {\n\t\t\t\t\t$from = substr($from, 0, strlen($from) - 4);\n\t\t\t\t}\n\t\t\t\t$message .= \"from $from until $to.\";\n\t\t\t} else {\n\t\t\t\t$message .= 'at this time.';\n\t\t\t}\n\t\t}\n\n\t\treturn $message;\n\t}", "function global_minuit()\n{ \n try\n {\n $parties = get_all_id_games();\n \n $resultats = array();\n foreach ($parties as $value) \n {\n \n // Teams has 100 battle score at the begining.\n $score_equipe_1 = 100;\n $score_equipe_2 = 100;\n \n // get id of the game.\n $id_partie = $value->id_partie;\n \n // Get number of players in town for each team.\n $joueurs_equipe_1 = get_players_in_city($id_partie, 1);\n $joueurs_equipe_2 = get_players_in_city($id_partie, 2);\n \n // Get content of chest.\n $coffre_equipe1 = loot_get_coffre_ville_return(1, $id_partie);\n $coffre_equipe2 = loot_get_coffre_ville_return(2, $id_partie);\n \n // récupérer le level de l'armurerie\n $level_armurerie_equipe1 = get_level_buildings($id_partie, 1, 1);\n $level_armurerie_equipe2 = get_level_buildings($id_partie, 2, 1);\n \n // calcul of rapidity score.\n $scores_rapidity = give_bonus_rapidity_score($id_partie, $coffre_equipe1, $coffre_equipe2);\n \n // calcul of battle score.\n $score_equipe_1 += get_combat_score($id_partie, 1, $joueurs_equipe_1, $coffre_equipe1, $level_armurerie_equipe1);\n $score_equipe_2 += get_combat_score($id_partie, 2, $joueurs_equipe_2, $coffre_equipe2, $level_armurerie_equipe2);\n \n // calcul of victory points.\n $victory_points = get_victory_points($scores_rapidity, $score_equipe_1, $score_equipe_2);\n \n \n // Save result in data base.\n $resultat = enregistrement_bataille($id_partie, $joueurs_equipe_1, $joueurs_equipe_2, $scores_rapidity, $level_armurerie_equipe1, $level_armurerie_equipe2, $score_equipe_1, $score_equipe_2, $victory_points); \n\n \n //Add \"resultat\" to \"resultats\".\n array_push($resultats, $resultat);\n \n }\n return $resultats;\n }\n catch (Exception $e)\n {\n error_log($e->getMessage());\n }\n}", "function gen_268()\r\n{\r\n $question = \"\";\r\n $numerator = \"\";\r\n $denominator = \"1\";\r\n $split = '@';\r\n $a = rand(1000,5000);\r\n $b = rand(10,150) / 10;\r\n $c = rand(1,5);\r\n $compounded = \"\";\r\n $times = 0;\r\n if ($c == 1)\r\n {\r\n $compounded = \"annually\";\r\n $times = 1;\r\n }\r\n else if ($c == 2)\r\n {\r\n $compounded = \"semi-annually\";\r\n $times = 2;\r\n }\r\n else if ($c == 3)\r\n {\r\n $compounded = \"quarterly\";\r\n $times = 4;\r\n }\r\n else if ($c == 4)\r\n {\r\n $compounded = \"monthly\";\r\n $times = 12;\r\n }\r\n else // ($c == 5)\r\n {\r\n $compounded = \"daily\";\r\n $times = 365;\r\n }\r\n if ($randy == 1)\r\n {\r\n $dollars = \"double\";\r\n $d = 2 * $a;\r\n }\r\n else\r\n {\r\n $dollars = \"triple\";\r\n $d = 3 * $a;\r\n }\r\n $question = \"About how long would it take for $$a to $dollars if \";\r\n $question .= \"it is invested in a bank account earning $b% compounded $compounded?\";\r\n $b = $b / 100;\r\n $rate = 1 + ($b / $times);\r\n $LHS = $d / $a;\r\n $LHS = log($LHS);\r\n $divisor = $times * log($rate);\r\n $numerator = $LHS / $divisor;\r\n $numerator = round($numerator + 0.0001 / pow(10,2),2);\r\n $numerator = $numerator.\" years\";\r\n $answer = array($question,$numerator,$denominator,0,0,0);\r\n return $answer;\r\n}", "function Contest($problemfile, $problempath)\n {\n // Don't know why this include is necessary... remove if possible\n include(\"config.php\");\n\n $this->tnow = time();\n\n if ($fp = fopen($problemfile, \"r\"))\n {\n flock($fp, LOCK_SH);\n\n // read page title and contest host contact\n fgets($fp);\n $this->chost = trim(fgets($fp));\n\n // read contest date and time from file\n $datestr = trim(fgets($fp));\n $timestr = trim(fgets($fp));\n\n // convert contest date and time into time stamps and strings\n list($this->tstart, $this->tend) = contesttime($datestr, $timestr);\n $this->cdate = date(\"l, F d, Y\", $this->tstart);\n $this->ctime = date(\"H:i\", $this->tstart) . \" to \" . date(\"H:i T\", $this->tend);\n\n // read scoreboard freeze, first letter, and show titles\n list($freeze, $this->firstletter, $showtitles) = explode(\";\", trim(fgets($fp)));\n $this->tfreeze = $this->tend - $freeze*60;\n $this->showtitles = $showtitles ? True : False;\n\n // read problem set name\n $this->cname = trim(fgets($fp));\n\n // read problem names and URLs into their arrays\n $letter = $this->firstletter;\n while ($line = fgets($fp))\n {\n $line = explode(\";\", $line);\n $ptitle = ($this->showtitles || $this->tnow >= $this->tstart) ?\n htmlspecialchars(trim($line[0])) : \"?????\";\n $name = \"$letter - \" . $ptitle;\n $url = $problempath . trim($line[1]);\n $prereqs = trim($line[2]);\n\t // line[3] for time limit, which is handled by judge.cc\n $value = intval($line[4]);\n\n $this->pletters[] = $letter;\n $this->pnames[$letter] = $name;\n $this->purls[$letter] = $url;\n $this->pprereqs[$letter] = explode(\",\", $prereqs);\n $this->pvalues[$letter] = $value;\n\n ++$letter;\n }\n\n fclose($fp);\n $this->okay = True;\n }\n else\n {\n print \"Cannot open $problemfile for data!\";\n $this->okay = False;\n }\n }", "public function computerTurn(): string\n {\n while (session('computerScore') < session('playerScore')) {\n $rollResult = session('diceHand')->getRolls();\n $diceArray = explode(\", \", $rollResult); // converts string of dice results to array\n session()->put('computerScore', session('computerScore') + array_sum($diceArray));\n session()->put('computerRolls', session('computerRolls') + 1);\n }\n\n if (session('computerScore') > 21) {\n return '\n YOU WON with score ' . session('playerScore') . ',\n computer rolled over 21.</p>\n <p>You rolled ' . session('playerRolls') . ' times</p>\n ';\n }\n\n // if computer stopped at or before 21, it means it won over the player\n return '\n <p>Computer won with score ' . session('computerScore') . ' vs\n your score ' . session('playerScore') . '.</p>\n <p>You rolled ' . session('playerRolls') . ' times.</p>\n <p>Computer rolled ' . session('computerRolls') . ' times</p>\n ';\n }", "function gen_226()\r\n{\r\n $question = \"\";\r\n $numerator = \"\";\r\n $denominator = \"1\";\r\n $split = '@';\r\n $a = rand(1000,5000);\r\n $b = rand(10,150) / 10;\r\n $d = rand(15000,250000);\r\n $c = rand(1,5);\r\n $compounded = \"\";\r\n $times = 0;\r\n if ($c == 1)\r\n {\r\n $compounded = \"annually\";\r\n $times = 1;\r\n }\r\n else if ($c == 2)\r\n {\r\n $compounded = \"semi-annually\";\r\n $times = 2;\r\n }\r\n else if ($c == 3)\r\n {\r\n $compounded = \"quarterly\";\r\n $times = 4;\r\n }\r\n else if ($c == 4)\r\n {\r\n $compounded = \"monthly\";\r\n $times = 12;\r\n }\r\n else // ($c == 5)\r\n {\r\n $compounded = \"daily\";\r\n $times = 365;\r\n }\r\n $question = \"About how long would it take for $$a to grow to $$d if \";\r\n $question .= \"it is invested in a bank account earning $b% compounded $compounded?\";\r\n $question .= \"<br><i>Please round to the nearest second decimal place</i>\";\r\n $b = $b / 100;\r\n $rate = 1 + ($b / $times);\r\n $LHS = $d / $a;\r\n $LHS = log($LHS);\r\n $divisor = $times * log($rate);\r\n $numerator = $LHS / $divisor;\r\n $numerator = round($numerator + 0.0001 / pow(10,2),2);\r\n $numerator = $numerator.\" years\";\r\n $answer = array($question,$numerator,$denominator,0,0,0);\r\n return $answer;\r\n}", "public function work() : string {\r\n $work = \"$this->firstNameEmployee $this->lastNameEmployee travaille...\";\r\n return \"<p>$work</p>\";\r\n }", "function wetwareLevel2($patronAI)\r\n{\r\n $a00 = array(\"Level: 2\", \"Artifical Intelligence Hack\", \"Range: Line of sight\", \"Duration: Varies\", \"Activation: 1 round\", \"Save: Will save\", \"Page: 210\");\r\n $a01 = array(\"Level: 2\", \"Corrosion\", \"Range: Line of sight\", \"Duration: Instantaneous\", \"Activation: 1 round\", \"Save: None\", \"Page: 216\");\r\n $a02 = array(\"Level: 2\", \"Polygons\", \"Range: Line of sight\", \"Duration: Varies\", \"Activation: 1 round\", \"Save: None\", \"Page: 222\");\r\n $a03 = array(\"Level: 2\", \"Passkey\", \"Range: Line of sight\", \"Duration: 1 round\", \"Activation: 1 round\", \"Save: see pg 230\", \"Page: 230\");\r\n $a04 = array(\"Level: 2\", \"Null Gun\", \"Range: Line of sight\", \"Duration: 2 rounds/CL\", \"Activation: 1 round\", \"Save: None\", \"Page: 236\");\r\n $a05 = array(\"Level: 2\", \"Light Amplication by Stim...\", \"Range: Line of sight\", \"Duration: Instant\", \"Activation: 1 round\", \"Save: see pg 244\", \"Page: 244\");\r\n $a06 = array(\"Level: 2\", \"Memory Worm\", \"Range: Line of sight\", \"Duration: Varies\", \"Activation: 1 round\", \"Save: Will save\", \"Page: 250\");\r\n $a07 = array(\"Level: 2\", \"EM Spike\", \"Range: Varies\", \"Duration: Varies\", \"Activation: 1 round\", \"Save: Varies\", \"Page: 256\");\r\n\r\n\r\n $array1= array($a00, $a01, $a02, $a03, $a04, $a05, $a06, $a07);\r\n \r\n return $array1[$patronAI];\r\n\r\n}", "public static function calculateTime($adjustedTime)\r\n {\r\n /**\r\n echo '<pre>';\r\n print_r($adjustedTime);\r\n echo '</pre>';\r\n die();\r\n\r\n $otHours = 0;\r\n $regHours = 0;\r\n $nonWorkHours = 0;\r\n $nightHours = 0;\r\n * */\r\n $adjustedStartTime = new DateTimeImmutable($adjustedTime['startYear'] . '-' . $adjustedTime['startMonth'] . '-' . $adjustedTime['startDay'] . ' ' . $adjustedTime['startHour'] . ':' . $adjustedTime['startMin'] . ':00');\r\n $adjustedEndTime = new DateTimeImmutable($adjustedTime['endYear'] . '-' . $adjustedTime['endMonth'] . '-' . $adjustedTime['endDay'] . ' ' . $adjustedTime['endHour'] . ':' . $adjustedTime['endMin'] . ':00');\r\n\r\n if ($adjustedTime['is24HrShift'] === 'Y')\r\n {\r\n if ($adjustedTime['isNightRun'] === 'N' && $adjustedTime['isHoliday'] === 'N' && $adjustedTime['isPTO'] === 'N')\r\n {\r\n $regHours = new DateInterval(\"PT16H0M\");\r\n $otHours = new DateInterval(\"PT0H0M\");\r\n $nonWorkHours = new DateInterval(\"PT0H0M\");\r\n $nightHours = new DateInterval(\"PT0H0M\");\r\n return [\"regHours\" => $regHours,\r\n \"otHours\" => $otHours,\r\n \"ptoHours\" => $nonWorkHours,\r\n \"nightHours\" => $nightHours];\r\n }\r\n else if ($adjustedTime['isNightRun'] === 'Y' && $adjustedTime['isHoliday'] === 'N' && $adjustedTime['isPTO'] === 'N')\r\n {\r\n // if the night run starts and ends within the designated sleep time (2300 - 0700)\r\n if ((($adjustedStartTime->format('H:i') >= '23:00' && $adjustedStartTime->format('H:i') <= '23:59') || ($adjustedStartTime->format('H:i') >= '00:00' && $adjustedStartTime->format('H:i') <= '07:00')) && (($adjustedEndTime->format('H:i') >= '23:00' && $adjustedEndTime->format('H:i') <= '23:59') || ($adjustedEndTime->format('H:i') >= '00:00' && $adjustedEndTime->format('H:i') <= '07:00')))\r\n {\r\n $regHours = new DateInterval(\"PT0H0M\");\r\n $otHours = new DateInterval(\"PT0H0M\");\r\n $nonWorkHours = new DateInterval(\"PT0H0M\");\r\n $nightHours = $adjustedEndTime->diff($adjustedStartTime);\r\n return [\"regHours\" => $regHours,\r\n \"otHours\" => $otHours,\r\n \"ptoHours\" => $nonWorkHours,\r\n \"nightHours\" => $nightHours];\r\n }\r\n // if the night run starts between 2300 and 0700 and the end time is between 0700 and 0800\r\n elseif ((($adjustedStartTime->format('H:i') >= '23:00' && $adjustedStartTime->format('H:i') <= '23:59') || ($adjustedStartTime->format('H:i') >= '00:00' && $adjustedStartTime->format('H:i') <= '07:00')) && (($adjustedEndTime->format('H:i') >= '07:00' && $adjustedEndTime->format('H:i') <= '08:00')))\r\n {\r\n $regHours = new DateInterval(\"PT0H0M\"); // I need to figure out how to keep the date portion and set the time to 07:00. I think I've done this some place else. I will have to look for it.\r\n $otHours = new DateInterval(\"PT0H0M\");\r\n $nonWorkHours = new DateInterval(\"PT0H0M\");\r\n $nightHours = (new DateTime($adjustedEndTime->setTime(7, 00, 00)))->diff($adjustedStartTime);\r\n return [\"regHours\" => $regHours,\r\n \"otHours\" => $otHours,\r\n \"ptoHours\" => $nonWorkHours,\r\n \"nightHours\" => $nightHours];\r\n }\r\n // if the night run starts between 2300 and 0700 and ends after 0800\r\n elseif ((($adjustedStartTime->format('H:i') >= '23:00' && $adjustedStartTime->format('H:i') <= '23:59') || ($adjustedStartTime->format('H:i') >= '00:00' && $adjustedStartTime->format('H:i') <= '07:00')) && (($adjustedEndTime->format('H:i') >= '08:00')))\r\n {\r\n $regHours = new DateInterval(\"PT0H0M\");\r\n // I need to figure out how to keep the date portion and set the time to 07:00. I think I've done this some place else. I will have to look for it.\r\n // $otHours = new DateInterval($adjustedEndTime - (date of $adjustedEndTime @ 0800) *** This is finding the time after the end of the shift which is overtime but not night time hours.\r\n $otHours = $adjustedEndTime->diff(new DateTime($adjustedEndTime->setTime(8, 00, 00)));\r\n $nonWorkHours = new DateInterval(\"PT0H0M\");\r\n $nightHours = (new DateTime($adjustedEndTime->setTime(7, 00, 00)))->diff($adjustedStartTime);\r\n return [\"regHours\" => $regHours,\r\n \"otHours\" => $otHours,\r\n \"ptoHours\" => $nonWorkHours,\r\n \"nightHours\" => $nightHours];\r\n }\r\n // if the night run starts before 2300 and ends after 2300 and before 0700\r\n elseif ($adjustedStartTime->format('H:i') <= '23:00' && (($adjustedEndTime->format('H:i') >= '23:00' && $adjustedEndTime->format('H:i') <= '23:59') || ($adjustedEndTime->format('H:i') >= '00:00' && $adjustedEndTime->format('H:i') <= '07:00')))\r\n {\r\n $regHours = new DateInterval(\"PT0H0M\");\r\n $otHours = new DateInterval(\"PT0H0M\");\r\n $nonWorkHours = new DateInterval(\"PT0H0M\");\r\n $adjustedStartTime->setTime(23, 00, 00);\r\n\r\n $nightHours = $adjustedStartTime->diff($adjustedEndTime);\r\n\r\n //$nightHours = new DateTime($adjustedEndTime->diff($adjustedStartTime));\r\n return [\"regHours\" => $regHours,\r\n \"otHours\" => $otHours,\r\n \"ptoHours\" => $nonWorkHours,\r\n \"nightHours\" => $nightHours];\r\n }\r\n }\r\n else if ($adjustedTime['isNightRun'] === 'N' && $adjustedTime['isHoliday'] === 'Y' && $adjustedTime['isPTO'] === 'N')\r\n {\r\n $regHours = new DateInterval(\"PT0H0M\");\r\n $otHours = new DateInterval(\"PT16H0M\");\r\n $nonWorkHours = new DateInterval(\"PT8H0M\");\r\n $nightHours = new DateInterval(\"PT0H0M\");\r\n return [\"regHours\" => $regHours,\r\n \"otHours\" => $otHours,\r\n \"ptoHours\" => $nonWorkHours,\r\n \"nightHours\" => $nightHours];\r\n }\r\n else if ($adjustedTime['isNightRun'] === 'N' && $adjustedTime['isHoliday'] === 'N' && $adjustedTime['isPTO'] === 'Y')\r\n {\r\n $regHours = new DateInterval(\"PT0H0M\");\r\n $otHours = new DateInterval(\"PT0H0M\");\r\n $nonWorkHours = new DateInterval(\"PT16H0M\"); // I think this is the way it should be calculated.\r\n// $nonWorkHours = new DateTimeImmutable('16:00'); // I think this might be wrong and might be causing me some errors. I think it should be DateInterval just like the others\r\n $nightHours = new DateInterval(\"PT0H0M\");\r\n return [\"regHours\" => $regHours,\r\n \"otHours\" => $otHours,\r\n \"ptoHours\" => $nonWorkHours,\r\n \"nightHours\" => $nightHours];\r\n }\r\n }\r\n else if ($adjustedTime['is24HrShift'] === 'N')\r\n {\r\n if ($adjustedTime['isNightRun'] === 'N' && $adjustedTime['isHoliday'] === 'N' && $adjustedTime['isPTO'] === 'Y')\r\n {\r\n $regHours = new DateInterval(\"PT0H0M\");\r\n $otHours = new DateInterval(\"PT0H0M\");\r\n $nonWorkHours = $adjustedEndTime->diff($adjustedStartTime);\r\n $nightHours = new DateInterval(\"PT0H0M\");\r\n return [\"regHours\" => $regHours,\r\n \"otHours\" => $otHours,\r\n \"ptoHours\" => $nonWorkHours,\r\n \"nightHours\" => $nightHours];\r\n }\r\n else if ($adjustedTime['isNightRun'] === 'N' && $adjustedTime['isHoliday'] === 'Y' && $adjustedTime['isPTO'] === 'N') // Need to differentiate between when one works and does not work\r\n {\r\n $regHours = new DateInterval(\"PT0H0M\");\r\n $otHours = $adjustedEndTime->diff($adjustedStartTime);\r\n $nonWorkHours = new DateInterval(\"PT8H0M\");\r\n $nightHours = new DateInterval(\"PT0H0M\");\r\n return [\"regHours\" => $regHours,\r\n \"otHours\" => $otHours,\r\n \"ptoHours\" => $nonWorkHours,\r\n \"nightHours\" => $nightHours];\r\n }\r\n else if ($adjustedTime['isNightRun'] === 'N' && $adjustedTime['isHoliday'] === 'N' && $adjustedTime['isPTO'] === 'N') // Need to differentiate between when one works and does not work\r\n {\r\n $regHours = $adjustedEndTime->diff($adjustedStartTime);\r\n $otHours = new DateInterval(\"PT0H0M\");\r\n $nonWorkHours = new DateInterval(\"PT0H0M\");\r\n $nightHours = new DateInterval(\"PT0H0M\");\r\n return [\"regHours\" => $regHours,\r\n \"otHours\" => $otHours,\r\n \"ptoHours\" => $nonWorkHours,\r\n \"nightHours\" => $nightHours];\r\n }\r\n else\r\n {\r\n Messages::setMsg('There was an error with non-24 hour work period', 'error');\r\n }\r\n }\r\n else\r\n {\r\n Messages::setMsg('<p>There was a problem</p><br>', 'error');\r\n }\r\n }", "function solve_one($input) : string\n{\n $items = xplode_input($input, true);\n\n // My idea: take a number, find its complement to 2020 and see if it's already in the list; if it is, that's the\n // required elements for the challenge; if it's not, test the next item in the array and so on.\n\n foreach ($items as $item) {\n $companion = 2020 -$item;\n if (in_array($companion, $items)) {\n return sprintf(\"%d\\n\", $companion * $item);\n }\n }\n}", "function wetwareLevel3($patronAI)\r\n{\r\n $a00 = array(\"Level: 3\", \"EMP\", \"Range: Varies\", \"Duration: Instantaneous\", \"Activation: 1 round\", \"Save: Fort save\", \"Page: 211\");\r\n $a01 = array(\"Level: 3\", \"Chain Lightning\", \"Range: Varies\", \"Duration: Instantaneous\", \"Activation: 1 round\", \"Save: Ref save\", \"Page: 216\");\r\n $a02 = array(\"Level: 3\", \"Virtual Reality\", \"Range: Varies\", \"Duration: 2 rounds/CL\", \"Activation: 1 round\", \"Save: Will save\", \"Page: 223\");\r\n $a03 = array(\"Level: 3\", \"Code Red\", \"Range: 20'\", \"Duration: Varies\", \"Activation: 1 round\", \"Save: None\", \"Page: 230\");\r\n $a04 = array(\"Level: 3\", \"Powered Assault Armour\", \"Range: Self\", \"Duration: 2 rounds/CL\", \"Activation: 1 round\", \"Save: None\", \"Page: 237\");\r\n $a05 = array(\"Level: 3\", \"Restore Backup\", \"Range: 20'\", \"Duration: Varies\", \"Activation: 1 round\", \"Save: None\", \"Page: 244\");\r\n $a06 = array(\"Level: 3\", \"Attune with Artifact\", \"Range: Touch\", \"Duration: Varies\", \"Activation: 1 round\", \"Save: None\", \"Page: 250\");\r\n $a07 = array(\"Level: 3\", \"Trans-Replication\", \"Range: Varies\", \"Duration: Instant\", \"Activation: 1 turn\", \"Save: Fort save\", \"Page: 257\");\r\n\r\n\r\n $array1= array($a00, $a01, $a02, $a03, $a04, $a05, $a06, $a07);\r\n \r\n return $array1[$patronAI];\r\n\r\n}", "public function getGreeting()\n {\n date_default_timezone_set(\"Asia/Shanghai\");\n $hour = isset($this->currentHour) ? $this->currentHour : date('H', time());\n switch ($hour >= 0) {\n case $hour < 12:\n $greeterMsg = 'Good morning';\n break;\n case $hour < 18:\n $greeterMsg = 'Good afternoon';\n break;\n case $hour < 24:\n $greeterMsg = 'Good evening';\n break;\n default:\n $greeterMsg = 'Invalid Hour';\n }\n unset($hour);\n return $greeterMsg;\n }", "function out_of_time($time1, $time2, &$instructions_array, $bedTime, $ampm) {\n\n\t$time= abs($time1-$time2);\n\t//depending on the number of day and the number of divisons, we choose different date formats.\n\n\t\t// No idea what $div_array was for...\n\t\tif(days_between($time1, $time2)>sizeof($div_array)) {\n\t\t\n\t\t\t$format=\"D M d, Y\";\n\t\t\t$stages = $time1; //keep the running total.\n\n\t\t\tforeach ($instructions_array as &$step) {\n\t\t\t\t$stages += ($time * $step['time']);\t\n\t\t\t\t$step['due'] = date($format, $stages);\n\t\t\t}\n\t\t} else {\t\n\t\n\t\t$format=\"g a D M d\";\n\n\t\t$stages = $time1; //keep the running total.\n\n\t\t\tforeach ($instructions_array as &$step) {\n\t\t\t\t$stages += ($time * $step['time']);\n\t\t\t\t$hour24 = date(\"G\", $stages);\n\t\t\t\tif ($hour24 > 12) $hour24 = $hour24-24; //this keeps the time centered around midnight. 2 is 2 am and -2 is 10pm\n\t\t\t\tif( ($ampm == 'am' && $hour24 > $bedTime && $hour24 < $bedTime + 10) or ($ampm == 'pm' && $hour24 > $bedTime-12 && $hour24 < $bedTime-2)){//if the time is later than a person wants to get to sleep\n\t\t\t\t\t$step['due'] = \"$bedTime $ampm \" . date(\"D M d\", $stages);\n\t\t\t\t} else {\n\t\t\t\t\t$step['due'] = date($format, $stages);\n\t\t\t\t}\n\t\t\t}\n\n\t\t}\n\treturn;\n}", "function PDC_getFullTimePartTime($personType, $volunteerType)\n{\n\n\tswitch ( $personType )\n\t{\n\tcase \"Adult\":\n\t\t{\n\t\tswitch ($volunteerType)\n\t\t\t{\n\t\t\tcase \"VolunteerFullTime\":\n\t\t\t\t$fullTimePartTime = \"FT\";\t\n\t\t\t\tbreak;\n\t\t\tcase \"Volunteer5Day\":\n\t\t\t\t$fullTimePartTime = \"PT5\";\t\n\t\t\t\tbreak;\n\t\t\tcase \"Volunteer3Day\":\n\t\t\t\t$fullTimePartTime = \"PT3\";\t\n\t\t\t\tbreak;\n\t\t\tcase \"VolunteerAtHome\":\n\t\t\t\t$fullTimePartTime = \"AH\";\n\t\t\t\tbreak;\n\t\t\tcase VolunteerNone:\n\t\t\tdefault:\n\t\t\t\t$fullTimePartTime = \"\";\n\t\t\t\tbreak;\n\t\t\t}\n\t\tbreak;\n\t\t}\n\tcase \"Camper\":\n\tcase \"Aide\":\n\tcase \"Tagalong\":\n\tdefault:\n\t\t$fullTimePartTime = \"\";\n\t\tbreak;\n\t}\n\n\nreturn $fullTimePartTime;\n}", "function winnersWeekLastManStanding(\n &$a_players,\n &$a_players_inout,\n $a_last_scheduled_game_status,\n &$winners_count,\n &$losers_count,\n &$no_pick_count,\n &$games_pending,\n &$all_games_locked,\n $w,\n $w_end,\n $ref_status_text = '' \n){\n $winners_count = 0;\n $losers_count = 0;\n $no_pick_count = 0;\n $games_pending = false;\n $ref_status_text = '';\n $all_games_locked = true;\n $msg = '';\n \n foreach($a_players as $player => $a) {\n if ($a_players_inout[$player] == 'in') {\n switch ($a[$w][1]) {\n case 'ip':\n $games_pending = true;\n break;\n case 'sc':\n $games_pending = true;\n $all_games_locked = false;\n break;\n case 'np':\n if ($a_last_scheduled_game_status[$w] != 'ip') {\n $games_pending = true;\n $all_games_locked = false;\n }\n $no_pick_count++;\n break;\n case 'wi':\n $winners_count++;\n break;\n case 'lo':\n $losers_count++;\n break;\n default:\n $ref_status_text = \"Never here: '$player' '$w' '$game_status' '$games_pending'\";\n writeDataToFile(\"winnersWeekLastManStanding() default '$ref_status_text'\", __FILE__, __LINE__);\n return false;\n }\n }\n }\n return true;\n}", "function produceTimeInActionLog($userID, $courseID, $actionName, $actionID, $diffTime=\"0\") {\n //pass by this return for produceCourseUserArray\n\n global $DB;\n \n if( !$user = $DB->get_record('user', array('id'=>$userID)) ) {\n return false;\n //error('不正確的學員名稱!');\n }\n \n if( !$courseusers = get_course_students($courseID) ) {\n return false;\n //error('這門課程目前沒有學生參加!');\n }\n \n if ( !$courseActionItem = getCourseActionItem($courseID) ) {\n return false;\n //error('課程未有活動!'); \n }\n \n if ( !$courseStandardArray = getReportModuleConfig($courseID) ) {\n return false;\n //error('課程尚未設定!');\n }\n \n $Joins = array();\n switch ($actionName) {\n case 'lesson' :\n $Joins[] = \"l.module = 'lesson'\";\n $module = $DB->get_record(\"modules\", array(\"name\"=>\"lesson\"));\n $moduleID = $module->id;\n break;\n case 'assignment' :\n $Joins[] = \"l.module = 'assignment'\";\n $module = $DB->get_record(\"modules\", array(\"name\"=>\"assignment\"));\n $moduleID = $module->id;\n break;\n case 'quiz' :\n $Joins[] = \"l.module = 'quiz'\";\n $module = $DB->get_record(\"modules\", array(\"name\"=>\"quiz\"));\n $moduleID = $module->id;\n break;\n case 'hotpot' :\n $Joins[] = \"l.module = 'hotpot'\";\n $module = $DB->get_record(\"modules\", array(\"name\"=>\"hotpot\"));\n $moduleID = $module->id;\n break;\n case 'scorm' :\n $Joins[] = \"l.module = 'scorm'\";\n $module = $DB->get_record(\"modules\", array(\"name\"=>\"scorm\"));\n $moduleID = $module->id;\n break;\n default:\n return false;\n break;\n }\n \n $Joins[] = \"l.course = '$courseID'\";\n $Joins[] = \"l.userid = '$userID'\";\n \n $course_module = $DB->get_record(\"course_modules\", array(\"instance\"=>$actionID, \"course\"=>$courseID, \"module\"=>$moduleID));\n $Joins[] = \"l.cmid = '$course_module->id'\";\n \n if ($diffTime) {\n $Joins[] = \"l.time > '$diffTime'\";\n }\n \n $order = ' l.time ASC ';\n $limitfrom = '';\n $limitnum = 50000;\n $totalcount = '';\n $selector = implode(' AND ', $Joins);\n\n $courseUserActionLogs = get_logs($selector, null, $order, $limitfrom, $limitnum, $totalcount);\n \n $actionTimeOrderArray = array();\n foreach ($courseUserActionLogs as $courseUserActionLog) {\n $actionTimeOrderArray[] = $courseUserActionLog->time;\n }\n return $actionTimeOrderArray;\n}", "function Time_BestGuess($txt,$MINS=0,$morethan=0) {\n// echo \"Best guess of $txt \";\n $lt = strtolower($txt);\n $lt = preg_replace('/\\s+/', '', $lt);\n $hr = $min = 0;\n if (!$txt) return $txt;\n if (preg_match('/(\\d+):(\\d+) *?(\\a\\a)/',$lt,$mtch)) {\n $hr = $mtch[1];\n if ($mtch[3] == 'pm') $hr+=12;\n $min = $mtch[2];\n } else if (preg_match('/(\\d+):(\\d+)/',$lt,$mtch)) {\n $hr = $mtch[1];\n if ($hr < 10) $hr+=12;\n $min = $mtch[2];\n } else if (preg_match('/(\\d+)\\.(\\d+) *?(\\a\\a)/',$lt,$mtch)) {\n $hr = $mtch[1];\n if ($mtch[3] == 'pm') $hr+=12;\n $min = $mtch[2];\n } else if (preg_match('/(\\d+)\\.(\\d+)/',$lt,$mtch)) {\n $hr = $mtch[1];\n if ($hr < 10) $hr+=12;\n $min = $mtch[2];\n } else if (preg_match('/(\\d\\d)(\\d\\d)/',$lt,$mtch)) {\n $hr = $mtch[1];\n $min = $mtch[2];\n } else if (($MINS==0) && preg_match('/(\\d)(\\d\\d)/',$lt,$mtch)) {\n $hr = $mtch[1];\n $min = $mtch[2];\n } else if (preg_match('/(\\d+)(\\D+)(\\d*)(\\D*)$/',$lt,$mtch)) {\n $n1 = $mtch[1];\n $w1 = $mtch[2];\n $n2 = $mtch[3];\n $w2 = $mtch[4];\n switch ($w1) {\n case 'to':\n if ($n2) { //?????\n $hr = $n2;\n if ($morethan) {\n if ($hr*100 < $morethan) $hr+=12;\n } else {\n if ($hr < 10) $hr+=12;\n }\n $min = -$n1; \n }\n break;\n\n case 'pm':\n $hr = $n1+12;\n break;\n\n case 'am':\n $hr = $n1;\n break;\n\n case 'mins':\n case 'min':\n $min = $n1; \n break;\n\n case 'hr':\n case 'hrs':\n case 'hours':\n case 'hour':\n $hr = $n1;\n if ($w2) {\n switch ($w2) {\n case 'mins':\n case 'min':\n $min = $n2;\n break;\n\n default:\n break;\n }\n } else if ($n2) $min = $n2;\n break;\n }\n } else if (preg_match('/(\\d+)/',$lt,$mtch)) {\n if ($MINS) { \n $min = $mtch[1]; \n } else if ($morethan) {\n $hr = $mtch[1];\n if ($hr*100 < $morethan) $hr+=12;\n } else {\n $hr = $mtch[1];\n if ($hr < 10) $hr+=12;\n }\n } else if (preg_match('/(\\D+)/',$lt,$mtch)) {\n $w1 = $mtch[1];\n if ($w1 == 'midday') $hr = 12;\n if ($w1 == 'midnight') $hr = 24;\n } else { \n echo \"Unknown format of time ... $lt<p>\\n\";\n return -1;\n }\n\n if ($MINS) {\n $ans = $hr*60+$min;\n } else {\n while ($min < 0) { $min += 60; $hr--; };\n while ($min >= 60) { $min -= 60; $hr++; };\n while ($hr <=0) $hr+=24;\n while ($hr >24) $hr-=24;\n $ans = ($hr*100 + $min);\n }\n// echo $ans . \"<p>\";\n return $ans;\n}", "function unedtrivial_get_difficulty($unedid){\n GLOBAL $DB;\n \n $history = $DB->get_records_sql('SELECT *'\n . ' FROM {unedtrivial_history} h'\n . ' WHERE h.idunedtrivial = ? AND'\n . ' h.questionid <> -1' \n . ' ORDER BY h.userid ASC, h.questiondate ASC' , array($unedid));\n \n $success1 = $success2 = $wrong1 = $wrong2 = 0;\n unedtrivial_get_answers_stats($history, $success1, $success2, $wrong1, $wrong2);\n $all = $success1+$wrong1;\n if ($all == 0){\n return 0;\n }else{\n return round($wrong1/$all*100);\n }\n}", "function solve_two($input) : string\n{\n\n // I see no other way, now, other than bruteforcing the sum of two numbers\n \n $items = xplode_input($input, true);\n foreach ($items as $item) {\n foreach ($items as $testMatch) {\n if ($testMatch != $item) {\n $couple = $item + $testMatch;\n $companion = 2020 - $couple;\n if (in_array($companion, $items) && $companion != 0) {\n return sprintf(\"%d\\n\", $item * $testMatch * $companion);\n }\n }\n }\n }\n return \"\";\n}", "function getwords($workval) {\n$numwords = array(\n 1 => \"un\",\n 2 => \"dos\",\n 3 => \"tres\",\n 4 => \"cuatro\",\n 5 => \"cinco\",\n 6 => \"seis\",\n 7 => \"siete\",\n 8 => \"ocho\",\n 9 => \"nueve\",\n 10 => \"diez\",\n 11 => \"once\",\n 12 => \"doce\",\n 13 => \"trece\",\n 14 => \"catorce\",\n 15 => \"quince\",\n 16 => \"dieciseis\",\n 17 => \"diecisiete\",\n 18 => \"dieciocho\",\n 19 => \"diecinueve\",\n 20 => \"veinte\",\n 30 => \"treinta\",\n 40 => \"cuarenta\",\n 50 => \"cincuenta\",\n 60 => \"sesenta\",\n 70 => \"setenta\",\n 80 => \"ochenta\",\n 90 => \"noventa\");\n\n$numpal = array(\n 1 => \"ciento\",\n 2 => \"doscientos\",\n 3 => \"trescientos\",\n 4 => \"cuatrocientos\",\n 5 => \"quinientos\",\n 6 => \"seiscientos\",\n 7 => \"setecientos\",\n 8 => \"ochocientos\",\n 9 => \"novecientos\");\n\n// handle the 100's\n$retstr = \" \";\n$hundval = (integer)($workval / 100);\nif ($hundval == 1) {\n $retstr = \" ciento\";\n }\nif ($hundval > 1) {\n $retstr .= $numpal[$hundval];\n }\n\n// handle units and teens\n$workstr = \"\";\n$tensval = $workval - ($hundval * 100); // dump the 100's\n$tempval = ((integer)($tensval / 10)) * 10;\n$unitval = $tensval - $tempval;\nif (($tensval < 20) && ($tensval > 0)) {// do the teens\n $workstr = $numwords[$tensval];\n } else {// got to break out the units and tens\n if ($tensval > 20 && $tensval < 30) {// do the teens\n $workstr .= \" veinti\".$numwords[$unitval];\n } else {\n $workstr = $numwords[$tempval]; // get the tens\n if ($unitval > 0) {\n $workstr .= \" y \" . $numwords[$unitval];\n }\n }\n } \n// join all the parts together and leave\nif ($workstr != \"\") {\n if ($retstr != \"\") {\n $retstr .= \" \" . $workstr;\n } else {\n $retstr = $workstr;\n }\n } return $retstr;\n}" ]
[ "0.6041715", "0.5816409", "0.57821155", "0.57743496", "0.573121", "0.5595432", "0.55894285", "0.55476546", "0.55350745", "0.5480612", "0.542215", "0.5418008", "0.5394494", "0.5387033", "0.53863204", "0.53843206", "0.537253", "0.5371445", "0.5359163", "0.5345447", "0.53388226", "0.5320634", "0.52714825", "0.52585196", "0.5253402", "0.52335346", "0.52136064", "0.51905376", "0.51887786", "0.5175268" ]
0.69142044
0
Returns the vendor and api version combined separated by a forward slash.
private function namespace() { return $this->vendor . '/' . $this->api_version; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function get_api_version_header();", "public function getApiVersion(): string\n {\n return config('global.api_version');\n }", "public function getVersion(): string\n {\n $version = sprintf(\n '%1$d.%2$d.%3$d',\n $this->getMajorVersion(),\n $this->getMinorVersion(),\n $this->getPatchVersion()\n );\n\n // Append the pre-release, if available.\n if ($this->preRelease) {\n $version .= '-' . $this->preRelease;\n }\n\n return $version;\n }", "function version_string()\n{\n\treturn (VERSION_MAJOR . \".\" . VERSION_MINOR . \".\" . VERSION_PATCH);\n}", "public function getVersion(): string\n {\n // - V1\n // - V1alpha\n // - V1alpha1\n // - V1beta\n // - V1beta1\n // - V1p1beta\n // - V1p1beta1\n $regex = '/\\\\\\(V[0-9]?(p[0-9])?(beta|alpha)?[0-9]?)?(\\\\\\.*)?$/';\n if (preg_match($regex, $this->getNamespace(), $matches)) {\n return $matches[1];\n }\n\n return '';\n }", "public function getVersion()\n {\n $versionData = Mage::getVersionInfo();\n \n $version = '';\n $version .= $versionData['major'] . '.';\n $version .= $versionData['minor'] . '.';\n $version .= $versionData['revision'] . '.';\n $version .= $versionData['patch'] . '.';\n \n $version = rtrim($version, '.');\n \n return $version;\n }", "public static function get_apiversion()\n\t{\n\t\treturn Version::API_VERSION;\n\t}", "public function getFormattedVersionString(){\n return $this->majorVersion . \".\" . $this->minorVersion . \".\" . $this->patchVersion; \n }", "public function getPrettyVersion(): string;", "protected function getApiVersion() : string\n {\n return 'v1';\n }", "public function getApiVersion(): string\n {\n return $this->getAttribute('apiVersion', static::$defaultVersion);\n }", "public static final function APIVersion()\n {\n return '@API-VER@';\n }", "public function getClientVersion(): string;", "public static function getNameAndVersion()\n {\n return self::appName() . '/' . self::getVersion();\n }", "public function getBrandVersion(): string\n {\n if (!empty($this->uaFullVersion)) {\n return $this->uaFullVersion;\n }\n\n return '';\n }", "abstract function getApiVersion();", "public function get_api_version_meta_name();", "public function get_api_version() {\n\t\treturn $this->get_from_token( 'apiVersion' );\n\t}", "protected static function _getQMoreClientVersionString() {\n return self::$LIBRARY_NAME . ' ' . self::$LIBRARY_VERSION;\n }", "public function getVersionPath(): string\n {\n return $this::VERSIONS[$this->version];\n }", "public function api_uri() {\r\n return $this->api_url . $this->api_version . \"/\";\r\n }", "public function getApiVersionBuild()\r\n {\r\n $version = explode('.', $this->getApiVersion(), 4);\r\n\r\n return $version[2];\r\n }", "public function version() {\n return $this->get('/version');\n }", "public function getReleaseApiVersion()\n\t{\n\t\t$version = explode('.', self::API_VERSION);\n\t\treturn $version[2];\n\t}", "public function getVersion(): string;", "public function getVersion(): string;", "public static function forComposer(): string\n {\n if (mb_strpos(static::VERSION, ' ') === false) {\n return static::VERSION;\n }\n\n $version = explode(' ', static::VERSION, 2);\n\n return $version[0];\n }", "public function version() {\r\n return VERSION_PREFIX . VERSION_MAJOR . '.' . VERSION_MINOR . VERSION_SUFFIX;\r\n }", "public function getVersion() {\r\n\t\t$vers = array ();\r\n\t\t$vers[] = 'MediaWiki ' . SpecialVersion::getVersion();\r\n\t\t$vers[] = __CLASS__ . ': $Id: ApiMain.php 24494 2007-07-31 17:53:37Z yurik $';\r\n\t\t$vers[] = ApiBase :: getBaseVersion();\r\n\t\t$vers[] = ApiFormatBase :: getBaseVersion();\r\n\t\t$vers[] = ApiQueryBase :: getBaseVersion();\r\n\t\t$vers[] = ApiFormatFeedWrapper :: getVersion(); // not accessible with format=xxx\r\n\t\treturn $vers;\r\n\t}", "function sodium_version_string(): string {}" ]
[ "0.66699857", "0.6569465", "0.65331787", "0.64359754", "0.6433353", "0.6331761", "0.6330392", "0.6253019", "0.62357014", "0.6227386", "0.61922467", "0.6166226", "0.6162681", "0.6140731", "0.6128891", "0.6069965", "0.6046774", "0.60360694", "0.5994537", "0.5984111", "0.59752196", "0.597231", "0.59706694", "0.5949061", "0.594705", "0.594705", "0.594685", "0.59431225", "0.5930801", "0.5902372" ]
0.67430055
0
Loops over the routes array and registers each rout.
public function register_routes() { $namespace = $this->namespace(); $routes = $this->routes(); foreach ($routes as [ 'route' => $route, 'args' => $args ]) { register_rest_route( $namespace, $route, $args ); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "abstract public function register_routes();", "public function registerRoutes() {\n\n\t\t$controllers = array(\n\t\t\t'CN_Plugin_Updater_Controller',\n\t\t\t'CN_License_Status_Controller',\n\t\t);\n\n\t\tforeach ( $controllers as $controller ) {\n\n\t\t\t$this->$controller = new $controller();\n\t\t\t$this->$controller->register_routes();\n\t\t}\n\t}", "protected function initRoutes()\n {\n foreach ($this->routes as $name => $data) {\n $this->application\n ->match($data['match'], array($this, $data['method']))\n ->bind($name);\n }\n }", "public function registerRoutes()\n {\n foreach (self::routes() as $route) {\n register_rest_route(Constants::HYPHEN_NAME, '/' . $route['slug'], [\n [\n 'methods' => $route['method'],\n 'callback' => $route['callback'],\n ]\n ]);\n }\n }", "private function setRoutes(): void\n {\n $routesClassRoot = new \\HeliumConfig\\Routes;\n $routesClass = new ReflectionClass($routesClassRoot);\n $routes = [];\n foreach ($routesClass->getConstants() as $controller => $actions) {\n foreach ($actions as $action => $isVisible) {\n $key = $controller . DS . $action;\n $routes[$key] = [\n 'controller' => $controller,\n 'action' => $action,\n 'visible' => $isVisible\n ];\n }\n }\n\n $this->routes = $routes;\n }", "private function buildRoutes(): void \n\t{\n\n\t\t// walk through the class list\n\t\tforeach ($this->classlist as $s_classname) {\n\n\t\t// and build a new reflection class object\n\t\t$o_reflection = new \\ReflectionClass($s_classname);\n\n\t\t// now preg through the class comment and get the base route\n if ($o_reflection->getDocComment() !== false) {\n preg_match(\"/@BaseRoute\\s+(.*?)\\s/i\", $o_reflection->getDocComment(), $a_base_route);\n $s_base_route = $a_base_route[1];\n\n // and the base middlewares\n $a_base_middlewares = [];\n $_a_base_mw = [];\n preg_match_all(\"/@Middleware\\s+(.*?)\\s+/i\", $o_reflection->getDocComment(), $_a_base_mw, PREG_SET_ORDER);\n foreach ($_a_base_mw as $a_base_mw) {\n $a_base_middlewares[] = trim($a_base_mw[1]);\n }\n }\n\n\t\t\t// walk through all the methods\n\t\t\tforeach ($o_reflection->getMethods() as $_o_method) {\n\n\t\t\t // reflect on the method\n $o_method = new \\ReflectionMethod($_o_method->class, $_o_method->name);\n\n $s_method_comment = $o_method->getDocComment();\n\n // check if this is an \"...Action\" method and if a docblock for this method exists\n if (preg_match(\"/(.*)Action$/is\", $o_method->name) !== false && $s_method_comment !== false) {\n\n $s_action = \"\\\\\".$_o_method->class . \"::class.\\\":\" . $_o_method->name.\"\\\"\";\n\n // initialize\n $a_middlewares = $a_base_middlewares;\n $a_m_middlewares = [];\n\n // get the middlewares\n preg_match_all(\"/@Middleware\\s+(.*?)\\s+/i\", $s_method_comment, $a_m_middlewares, PREG_SET_ORDER);\n foreach ((array)$a_m_middlewares as $a_mw) {\n $a_middlewares[] = $a_mw[1];\n }\n $a_middlewares = array_unique($a_middlewares);\n\n // get the method comment and fetch the route\n preg_match_all(\"/@Route\\s+\\[(.*?)\\]\\s+(.*?)\\s+(\\((.*?)\\))?/i\", $s_method_comment, $a_m_comment, PREG_SET_ORDER);\n\n foreach ((array)$a_m_comment as $a_comment) {\n\n // clean route part, method and name values (cast name to string, because it can be NULL)\n if ($a_comment[2] == \"/\") {\n $a_comment[2] = \"\";\n }\n $s_method = trim(strtolower($a_comment[1]));\n $s_name = trim(strtolower((string)$a_comment[4]));\n\n // build the complete route\n $s_route = preg_replace(\"/\\/{2,}/is\", \"/\", $s_base_route . $a_comment[2]);\n\n // check for route or name collisions\n array_walk($this->routes, function ($route, $key) use ($s_method, $s_name, $s_route, $s_action) {\n\n // check for route collision\n if ($route[\"method\"] === $s_method && $route[\"route\"] === $s_route) {\n throw new \\Exception(\"Route collision detected: \" . $s_method . \" \" . $s_route . \" in \" . $s_action);\n }\n\n // check for name collision\n if ($route[\"name\"] === $s_name && $s_name !== \"\") {\n throw new \\Exception(\"Route name collision detected: \" . $s_method . \" \" . $s_route . \" in \" . $s_action);\n }\n\n });\n\n // no collision, then add the route to the routes list\n $this->routes[] = [\n \"method\" => $s_method,\n \"route\" => $s_route,\n \"action\" => $s_action,\n \"name\" => $s_name,\n \"middlewares\" => $a_middlewares\n ];\n }\n }\n\t\t\t}\n\t\t}\n\n\t\t// check the cache folder, if it's set then write the cache file\n if ($this->cacheFolder !== null) {\n $s_cache_string = \"<?php\\n\\$this->routes = json_decode('\".json_encode($this->routes).\"');\\n?>\";\n file_put_contents($this->cacheFolder.DIRECTORY_SEPARATOR.\"__CACHE__routes.php\", $s_cache_string);\n }\n\t}", "protected function initRoutes()\n {\n if (isset($this->settings) && $this->settings->exists('routes') || !self::$init_stages[$this->name]['routes']) {\n\n $routes = $this->settings->get('routes');\n\n // Get uncamelized app name\n $string = new CamelCase($this->name);\n $app = $string->uncamelize();\n\n // Add always a missing index route!\n if (!array_key_exists('index', $routes)) {\n $routes['index'] = [];\n }\n\n foreach ($routes as $name => $definition) {\n\n if (is_numeric($name)) {\n Throw new AppException(sprintf('AbstractApp \"%s\" sent a nameless route to be mapped.', $this->name));\n }\n\n $definition = $this->parseRouteDefintion($name, $definition);\n\n $this->core->router->map($definition['method'], $definition['route'], $definition['target'], $definition['name']);\n }\n\n self::$init_stages[$this->name]['routes'] = true;\n }\n }", "protected function iniRoutes() {\n \n }", "public function map()\n {\n $this->mapAdminRoutes();\n $this->mapBackstageRoutes();\n $this->mapIntFRoutes();\n $this->mapMipRoutes();\n\n $this->mapApiRoutes();\n\n $this->mapWebRoutes();\n //\n $this->mapAPPRoutes();\n //\n $this->mapAPPV120Routes();\n $this->mapAPPV130Routes();\n }", "public function register_rest_routes() {\n\t\tforeach ( $this->get_rest_namespaces() as $namespace => $controllers ) {\n\t\t\tforeach ( $controllers as $controller_name => $controller_class ) {\n\t\t\t\t$this->controllers[ $namespace ][ $controller_name ] = new $controller_class();\n\t\t\t\t$this->controllers[ $namespace ][ $controller_name ]->register_routes();\n\t\t\t}\n\t\t}\n\t}", "public function map()\n {\n $this->mapApiRoutes();\n $this->mapWebRoutes();\n $this->mapExamRoutes();\n $this->mapWxRoutes();\n $this->mapShopRoutes();\n $this->mapExecRoutes();\n\n $this->mapH5Routes();\n $this->mapManageRoutes();\n $this->mapUserRoutes();\n\n $this->mapPosRoutes();\n $this->mapQRoutes();\n $this->mapYRoutes();\n }", "public function addRoutes($routes);", "public function register_routes() {\n\n\t\tregister_rest_route( $this->namespace, '/' . $this->rest_base, array(\n\t\t\tarray(\n\t\t\t\t'methods' => WP_REST_Server::READABLE,\n\t\t\t\t'callback' => array( $this, 'get_rooms' ),\n\t\t\t)\n\t\t) );\n\n\t\tregister_rest_route( $this->namespace, '/' . $this->rest_base . '/(?P<number>.+)', array(\n\t\t\tarray(\n\t\t\t\t'methods' => WP_REST_Server::READABLE,\n\t\t\t\t'callback' => array( $this, 'get_room' ),\n\t\t\t)\n\t\t) );\n\n\t}", "abstract public function createRoutes();", "private function setRoutes()\n {\n $this->routes = new RouteCollection();\n $fileLocator = new FileLocator(array(__DIR__));\n $loader = new YamlFileLoader($fileLocator);\n $routes = $loader->load(__DIR__.'/../../conf/routes.yml');\n\n foreach ($routes as $route => $value) {\n $controllerStr = 'src\\Controller\\\\'.explode('::', $value->getDefaults()['_controller'])[0];\n $controller = new $controllerStr;\n\n $this->routes->add($route, new Route(\n $value->getPath(),\n array('_controller' => array($controller, explode('::', $value->getDefaults()['_controller'])[1])),\n $value->getRequirements(),\n array(),\n '',\n array(),\n $value->getMethods()\n ));\n }\n }", "public function map()\n {\n\n $this->mapApiRoutes();\n\n $this->mapWebRoutes();\n\n $this->mapFrontEndRoutes();\n\n if (paytmRoute()) {\n // Paytm Route Map\n $this->mapPaytmRoutes();\n // paytm route goes here\n }\n\n if (zoomRoute()) {\n // Zoom Route Map\n $this->mapZoomRoutes();\n // Zoom route goes here\n }\n\n if (forumRoute()) {\n // Zoom Route Map\n $this->mapForumRoutes();\n // Zoom route goes here\n }\n\n if (quizRoute()) {\n //quiz route\n $this->mapQuizRoutes();\n }\n\n if (subscriptionRoute()) {\n //quiz route\n $this->mapSubscriptionRoutes();\n }\n\n if (certificate()) {\n /*certificate*/\n $this->mapCertificateRoutes();\n }\n\n if (env('THEME_MANAGER') == \"YES\") {\n // THEME MANAGER\n $this->mapThemeRoute();\n }\n\n /**\n * Coupon\n */\n\n if (couponRoute()) {\n /*certificate*/\n $this->mapCouponRoutes();\n }\n\n }", "private function _compileRoutes()\n\t{\n\t\tforeach ($this->app->modules() as $module) {\n\t\t\tif ($module instanceof ProviderInterface) {\n\t\t\t\t$module->initRouter($this);\n\t\t\t}\n\t\t}\n\t}", "public function register_routes() {\n\t\tregister_rest_route( $this->rest_base, '/form/(?P<id>[\\d]+)', array(\n\t\t\t'methods' => 'GET',\n\t\t\t'callback' => array( $this, 'get_forms_data' ),\n\t\t) );\n\n\t\tregister_rest_route( $this->rest_base, '/form-grid', array(\n\t\t\t'methods' => 'GET',\n\t\t\t'callback' => array( $this, 'get_donation_grid' ),\n\t\t) );\n\n\t\tregister_rest_route( $this->rest_base, '/donor-wall', array(\n\t\t\t'methods' => 'GET',\n\t\t\t'callback' => array( $this, 'get_donor_wall' ),\n\t\t) );\n\t}", "public function registerRoute()\n {\n foreach ($this->get('routes', []) as $route) {\n $this->app['router']->group(['namespace' => 'Plugins\\\\'.$this->getStudlyName().'\\\\Http\\\\Controllers'], function ($app) use ($route) {\n require $this->path.'/'.$route;\n });\n } \n }", "public function setRoutes() {\n $this->api->addRoute(\"/^\\/grid\\/(\\d+)\\/rooms\\/?$/\", 'getRoomsByGrid', $this, 'GET', \\Auth::READ); // Get rooms for the given grid\n $this->api->addRoute(\"/^\\/grid\\/(\\d+)\\/room\\/(\\d+)\\/?$/\", 'getRoomById', $this, 'GET', \\Auth::READ); // Get the given room on the grid\n $this->api->addRoute(\"/^\\/grid\\/(\\d+)\\/region\\/([a-z0-9-]{36})\\/rooms\\/?$/\", 'getRoomsByGridRegion', $this, 'GET', \\Auth::READ); // Get the given room on the grid\n }", "private function mapRoute($routes){\n foreach ( $routes as $route ){\n //Explodindo o Controller@action\n $controllerAction = explode('@', $route[1]);\n //Criando array com rota, Controller e Action\n $mapItem = [ $route[0], $controllerAction[0], $controllerAction[1] ];\n //Incluindo cada item em um array\n $mappedRoutes[] = $mapItem;\n }\n $this->routes = $mappedRoutes;\n }", "public function map()\n {\n $this->mapApiRoutes();\n\n $this->mapWebRoutes();\n\n $this->mapAdminRoutes();\n\n $this->mapBrokerRoutes();\n\n $this->mapImportAgencyRoutes();\n\n $this->mapExportAgencyRoutes();\n\n $this->mapSponsorRoutes();\n\n //\n }", "private function start()\n {\n foreach (get_declared_classes() as $class) {\n if (in_array('miniworx\\Application\\Interfaces\\RouteInterface',\n class_implements($class))\n ) {\n $inst = new $class();\n $path = $inst->route();\n $route = new Route($path, $inst);\n $this->instances[] = $route;\n\n $this->tree->insert($route->path(), $route);\n }\n }\n }", "public abstract function routes();", "public function register_routes() {\n register_rest_route(\n $this->namespace,\n '/resting-state', // resource\n array( // Valid methods\n \t \tarray(\n \t \t\t'methods' => 'GET',\n \t \t\t'callback' => array( $this, 'get_resting_state' ),\n \t \t),\n \t )\n );\n\n // register portrait grid\n register_rest_route(\n $this->namespace,\n '/portrait-grid/(?P<slug>[a-zA-Z0-9-_]+)', // resource\n array( // Valid methods\n \t \tarray(\n \t \t\t'methods' => 'GET',\n \t \t\t'callback' => array( $this, 'get_portrait_grid' ),\n \t \t\t'args' => TQNT_Portrait_Grid_Controller::get_portrait_grid_args(),\n \t \t),\n \t )\n );\n\n // register icon grid\n register_rest_route(\n $this->namespace,\n '/icon-grid/(?P<slug>[a-zA-Z0-9-_]+)', // resource\n array( // Valid methods\n \t \tarray(\n \t \t\t'methods' => 'GET',\n \t \t\t'callback' => array( $this, 'get_icon_grid' ),\n \t \t\t'args' => TQNT_Icon_Grid_Controller::get_icon_grid_args(),\n \t \t),\n \t )\n );\n\n // register event\n register_rest_route(\n $this->namespace,\n '/event/(?P<slug>[a-zA-Z0-9-_]+)', // resource\n array( // Valid methods\n \t \tarray(\n \t \t\t'methods' => 'GET',\n \t \t\t'callback' => array( $this, 'get_event' ),\n \t \t\t'args' => TQNT_Events_Controller::get_event_args(),\n \t \t),\n \t )\n );\n // get all available events\n register_rest_route(\n $this->namespace,\n '/events', // resource\n array( // Valid methods\n \t \tarray(\n \t \t\t'methods' => 'GET',\n \t \t\t'callback' => array( $this, 'get_events' ),\n \t \t),\n \t )\n );\n\n // register nav\n register_rest_route(\n $this->namespace,\n '/nav/(?P<slug>[a-zA-Z0-9-_]+)', // resource\n array( // Valid methods\n \t \tarray(\n \t \t\t'methods' => 'GET',\n \t \t\t'callback' => array( $this, 'get_nav' ),\n \t \t\t'args' => TQNT_Nav_Controller::get_nav_args(),\n \t \t),\n \t )\n );\n //\n register_rest_route(\n $this->namespace,\n '/navs-available', // resource\n array( // Valid methods\n \t \tarray(\n \t \t\t'methods' => 'GET',\n \t \t\t'callback' => array( $this, 'get_navs_avail' ),\n \t \t),\n \t )\n );\n }", "public static function load_routes() {\n\t\tnew Routes\\Internal_Stats();\n\t\tnew Routes\\Plugin();\n\t\tnew Routes\\Locale_Banner();\n\t\tnew Routes\\Plugin_Favorites();\n\t\tnew Routes\\Commit_Subscriptions();\n\t\tnew Routes\\Popular_Tags();\n\t\tnew Routes\\Query_Plugins();\n\t\tnew Routes\\SVN_Access();\n\t\tnew Routes\\Plugin_Committers();\n\t\tnew Routes\\Plugin_Support_Reps();\n\t\tnew Routes\\Plugin_Self_Close();\n\t\tnew Routes\\Plugin_Self_Transfer();\n\t\tnew Routes\\Plugin_Release_Confirmation();\n\t\tnew Routes\\Plugin_E2E_Callback();\n\t\tnew Routes\\Plugin_Categorization();\n\t\tnew Routes\\Plugin_Upload();\n\t}", "public function addRoutes($routes)\n {\n $this->_routes = array_merge($routes,$this->_routes);\n }", "public function register_routes() {\n\n\t\tregister_rest_route( $this->namespace, '/' . $this->rest_base, array(\n\t\t\tarray(\n\t\t\t\t'methods' => WP_REST_Server::READABLE,\n\t\t\t\t'callback' => array( $this, 'get_codes' ),\n\t\t\t), array(\n\t\t\t\t'methods' => WP_REST_Server::CREATABLE,\n\t\t\t\t'callback' => array( $this, 'post_code' ),\n\t\t\t), array(\n\t\t\t\t'methods' => WP_REST_Server::EDITABLE,\n\t\t\t\t'callback' => array( $this, 'patch_code' ),\n\t\t\t), array(\n\t\t\t\t'methods' => WP_REST_Server::DELETABLE,\n\t\t\t\t'callback' => array( $this, 'delete_code' ),\n\t\t\t)\n\t\t) );\n\n\t}", "public function map()\n {\n $this->mapOpenIDRoutes();\n $this->mapClientRoutes();\n }", "public function create_initial_rest_routes() {\n\t\t\t$endpoints = array(\n\t\t\t\t'TVD_Groups_Controller',\n\t\t\t\t'TVD_Fields_Controller',\n\t\t\t);\n\n\t\t\tforeach ( $endpoints as $e ) {\n\t\t\t\t/** @var TVD_REST_Controller $controller */\n\t\t\t\t$controller = new $e();\n\t\t\t\t$controller->register_routes();\n\t\t\t}\n\t\t}" ]
[ "0.7372929", "0.6801639", "0.67882836", "0.6614828", "0.658824", "0.6530111", "0.65048087", "0.64847046", "0.6474082", "0.6441237", "0.6436562", "0.64350265", "0.6389085", "0.63635963", "0.63331884", "0.6318643", "0.63178545", "0.63052577", "0.6286391", "0.6247638", "0.62409335", "0.6202984", "0.6202809", "0.6178923", "0.61770546", "0.617591", "0.61712235", "0.61682624", "0.61654085", "0.6162979" ]
0.716028
1
Updates the data of the payment method configuration.
public function update_data( \Wallee\Sdk\Model\PaymentMethodConfiguration $configuration ) { /* @var WC_Wallee_Entity_Method_Configuration $entity */ $entity = WC_Wallee_Entity_Method_Configuration::load_by_configuration( $configuration->getLinkedSpaceId(), $configuration->getId() ); if ( $entity->get_id() !== null && $this->has_changed( $configuration, $entity ) ) { $entity->set_configuration_name( $configuration->getName() ); $entity->set_title( $configuration->getResolvedTitle() ); $entity->set_description( $configuration->getResolvedDescription() ); $entity->set_image( $this->get_resource_path( $configuration->getResolvedImageUrl() ) ); $entity->set_image_base( $this->get_resource_base( $configuration->getResolvedImageUrl() ) ); $entity->set_state( $this->get_configuration_state( $configuration ) ); $entity->save(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function update_data( \\PostFinanceCheckout\\Sdk\\Model\\PaymentMethodConfiguration $configuration ) {\n\t\t/* @var WC_PostFinanceCheckout_Entity_Method_Configuration $entity */\n\t\t$entity = WC_PostFinanceCheckout_Entity_Method_Configuration::load_by_configuration( $configuration->getLinkedSpaceId(), $configuration->getId() );\n\t\tif ( $entity->get_id() !== null && $this->has_changed( $configuration, $entity ) ) {\n\t\t\t$entity->set_configuration_name( $configuration->getName() );\n\t\t\t$entity->set_title( $configuration->getResolvedTitle() );\n\t\t\t$entity->set_description( $configuration->getResolvedDescription() );\n\t\t\t$entity->set_image( $this->get_resource_path( $configuration->getResolvedImageUrl() ) );\n\t\t\t$entity->set_image_base( $this->get_resource_base( $configuration->getResolvedImageUrl() ) );\n\t\t\t$entity->set_state( $this->get_configuration_state( $configuration ) );\n\t\t\t$entity->save();\n\t\t}\n\t}", "public function updateData(\\Wallee\\Sdk\\Model\\PaymentMethodConfiguration $configuration){\n\t\t/* @var \\Wallee\\Entity\\MethodConfiguration $entity */\n\t\t$entity = \\Wallee\\Entity\\MethodConfiguration::loadByConfiguration($this->registry, $configuration->getLinkedSpaceId(), $configuration->getId());\n\t\tif ($entity->getId() !== null && $this->hasChanged($configuration, $entity)) {\n\t\t\t$entity->setConfigurationName($configuration->getName());\n\t\t\t$entity->setTitle($configuration->getResolvedTitle());\n\t\t\t$entity->setDescription($configuration->getResolvedDescription());\n\t\t\t$entity->setImage($configuration->getResolvedImageUrl());\n\t\t\t$entity->setSortOrder($configuration->getSortOrder());\n\t\t\t$entity->save();\n\t\t}\n\t}", "public function testUpdatePaymentMethod()\n {\n\n }", "function _springboard_developer_autoconfig($payment_method_name, $rule, $form, $form_state) {\n $gateways = _springboard_developer_autoconfig_supported_gateways();\n if (empty($gateways[$payment_method_name])) {\n $result = array(\n 'status' => 'error',\n 'message' => t('Error: specified gateway not found.'),\n );\n print json_encode($result);\n return;\n }\n\n $new_settings = $gateways[$payment_method_name];\n foreach ($new_settings as $nk => $ns) {\n if (array_key_exists($nk, $form_state['values']['parameter']['payment_method']['settings']['payment_method']['settings'])) {\n $form_state['values']['parameter']['payment_method']['settings']['payment_method']['settings'][$nk] = $ns;\n }\n }\n\n _springboard_developer_save_payment_method_form($rule, $form, $form_state);\n}", "private function updatePaymentMethods()\n {\n // YYY: Make dynamic\n $this->paymentMethodIds = [\n 'ideal' => 'iDeal',\n 'mistercash' => 'Bancontact',\n 'creditcard' => 'Creditcard',\n 'paysafecard' => 'PaySafeCard',\n 'paysafecash' => 'Paysafecash',\n 'sofortbanking' => 'SofortBanking',\n 'paypal' => 'PayPal',\n 'klarna' => 'Klarna',\n 'clickandbuy' => 'ClickandBuy',\n 'afterpay' => 'Afterpay',\n 'directdebit' => 'DirectDebit',\n 'przelewy24' => 'Przelewy24',\n 'safeklick' => 'Safeklick',\n 'banktransfer' => 'Bank transfer',\n 'giropay' => 'Giropay',\n 'giftcard' => 'Gift Card',\n 'capayable' => 'Capayable',\n 'bitcoin' => 'Bitcoin',\n 'belfius' => 'Belfius',\n 'billink' => 'Billink',\n 'idealqr' => 'iDEAL QR',\n 'onlineueberweisen' => 'OnlineÜberweisen',\n 'spraypay' =>'SprayPay'\n ];\n $this->cache->save($this->serializer->serialize($this->paymentMethodIds), self::CACHEKEY, [], 24 * 3600);\n }", "private function updateConfiguration()\r\n {\r\n $yaml = $this->loader->dump($this->config,2);\r\n file_put_contents(__DIR__.self::CONFIG_PATH.'.bkp', $yaml);\r\n \r\n //Update new config\r\n $newConfig = array_replace_recursive($this->config,$this->skConfig);\r\n $yaml = $this->loader->dump($newConfig,3);\r\n file_put_contents(__DIR__.self::CONFIG_PATH, $yaml);\r\n \r\n //Backing up old routing\r\n $this->routing = $this->loader->parse(__DIR__.self::ROUTING_PATH);\r\n $yaml = $this->loader->dump($this->routing,2);\r\n file_put_contents(__DIR__.self::ROUTING_PATH.'.bkp', $yaml);\r\n \r\n //Update new config\r\n $newRouting = array_replace_recursive($this->routing,$this->skRouting);\r\n $yaml = $this->loader->dump($newRouting,3);\r\n file_put_contents(__DIR__.self::ROUTING_PATH, $yaml);\r\n }", "public function synchronize() {\n\t\t$existing_found = array();\n\t\t$space_id = get_option( WooCommerce_PostFinanceCheckout::CK_SPACE_ID );\n\n\t\t$existing_configurations = WC_PostFinanceCheckout_Entity_Method_Configuration::load_all();\n\n\t\tif ( ! empty( $space_id ) ) {\n\t\t\t$payment_method_configuration_service = new \\PostFinanceCheckout\\Sdk\\Service\\PaymentMethodConfigurationService(\n\t\t\t\tWC_PostFinanceCheckout_Helper::instance()->get_api_client()\n\t\t\t);\n\t\t\t$configurations = $payment_method_configuration_service->search(\n\t\t\t\t$space_id,\n\t\t\t\tnew \\PostFinanceCheckout\\Sdk\\Model\\EntityQuery()\n\t\t\t);\n\n\t\t\tforeach ( $configurations as $configuration ) {\n\t\t\t\t/* @var WC_PostFinanceCheckout_Entity_Method_Configuration $method */\n\t\t\t\t$method = WC_PostFinanceCheckout_Entity_Method_Configuration::load_by_configuration( $space_id, $configuration->getId() );\n\t\t\t\tif ( $method->get_id() !== null ) {\n\t\t\t\t\t$existing_found[] = $method->get_id();\n\t\t\t\t}\n\n\t\t\t\t$method->set_space_id( $space_id );\n\t\t\t\t$method->set_configuration_id( $configuration->getId() );\n\t\t\t\t$method->set_configuration_name( $configuration->getName() );\n\t\t\t\t$method->set_state( $this->get_configuration_state( $configuration ) );\n\t\t\t\t$method->set_title( $configuration->getResolvedTitle() );\n\t\t\t\t$method->set_description( $configuration->getResolvedDescription() );\n\n\t\t\t\t$method->set_image( $this->get_resource_path( $configuration->getResolvedImageUrl() ) );\n\t\t\t\t$method->set_image_base( $this->get_resource_base( $configuration->getResolvedImageUrl() ) );\n\t\t\t\t$method->save();\n\t\t\t}\n\t\t}\n\t\tforeach ( $existing_configurations as $existing_configuration ) {\n\t\t\tif ( ! in_array( $existing_configuration->get_id(), $existing_found ) ) {\n\t\t\t\t$existing_configuration->set_state( WC_PostFinanceCheckout_Entity_Method_Configuration::STATE_HIDDEN );\n\t\t\t\t$existing_configuration->save();\n\t\t\t}\n\t\t}\n\t\tdelete_transient( 'wc_postfinancecheckout_payment_methods' );\n\t}", "public function synchronize() {\n\t\t$existing_found = array();\n\t\t$space_id = get_option( WooCommerce_Wallee::CK_SPACE_ID );\n\n\t\t$existing_configurations = WC_Wallee_Entity_Method_Configuration::load_all();\n\n\t\tif ( ! empty( $space_id ) ) {\n\t\t\t$payment_method_configuration_service = new \\Wallee\\Sdk\\Service\\PaymentMethodConfigurationService(\n\t\t\t\tWC_Wallee_Helper::instance()->get_api_client()\n\t\t\t);\n\t\t\t$configurations = $payment_method_configuration_service->search(\n\t\t\t\t$space_id,\n\t\t\t\tnew \\Wallee\\Sdk\\Model\\EntityQuery()\n\t\t\t);\n\n\t\t\tforeach ( $configurations as $configuration ) {\n\t\t\t\t/* @var WC_Wallee_Entity_Method_Configuration $method */\n\t\t\t\t$method = WC_Wallee_Entity_Method_Configuration::load_by_configuration( $space_id, $configuration->getId() );\n\t\t\t\tif ( $method->get_id() !== null ) {\n\t\t\t\t\t$existing_found[] = $method->get_id();\n\t\t\t\t}\n\n\t\t\t\t$method->set_space_id( $space_id );\n\t\t\t\t$method->set_configuration_id( $configuration->getId() );\n\t\t\t\t$method->set_configuration_name( $configuration->getName() );\n\t\t\t\t$method->set_state( $this->get_configuration_state( $configuration ) );\n\t\t\t\t$method->set_title( $configuration->getResolvedTitle() );\n\t\t\t\t$method->set_description( $configuration->getResolvedDescription() );\n\n\t\t\t\t$method->set_image( $this->get_resource_path( $configuration->getResolvedImageUrl() ) );\n\t\t\t\t$method->set_image_base( $this->get_resource_base( $configuration->getResolvedImageUrl() ) );\n\t\t\t\t$method->save();\n\t\t\t}\n\t\t}\n\t\tforeach ( $existing_configurations as $existing_configuration ) {\n\t\t\tif ( ! in_array( $existing_configuration->get_id(), $existing_found ) ) {\n\t\t\t\t$existing_configuration->set_state( WC_Wallee_Entity_Method_Configuration::STATE_HIDDEN );\n\t\t\t\t$existing_configuration->save();\n\t\t\t}\n\t\t}\n\t\tdelete_transient( 'wc_wallee_payment_methods' );\n\t}", "public function updateConfiguration($response) {\n if ($transaction_reference = Json::decode($response->getTransactionReference())) {\n foreach ($transaction_reference as $key => $value) {\n $this->configuration[$key] = $value;\n }\n $this->getPayment()->save();\n }\n }", "function update() {\n\t\tparent::update();\n\t\t$gateway_options = array(\n\t\t\t$this->gateway . \"_email\" => $_REQUEST[ $this->gateway.'_email' ],\n\t\t\t$this->gateway . \"_site\" => $_REQUEST[ $this->gateway.'_site' ],\n\t\t\t$this->gateway . \"_merchant_id\" => $_REQUEST[ $this->gateway.'_merchant_id' ],\n\t\t\t$this->gateway . \"_merchant_secret\" => $_REQUEST[ $this->gateway.'_merchant_secret' ],\n\t\t\t$this->gateway . \"_merchant_account\" => $_REQUEST[ $this->gateway.'_merchant_account' ],\n\t\t\t$this->gateway . \"_currency\" => $_REQUEST[ 'currency' ],\n\t\t\t$this->gateway . \"_tax\" => $_REQUEST[ $this->gateway.'_button' ],\n\t\t\t$this->gateway . \"_format_logo\" => $_REQUEST[ $this->gateway.'_format_logo' ],\n\t\t\t$this->gateway . \"_format_border\" => $_REQUEST[ $this->gateway.'_format_border' ],\n\t\t\t$this->gateway . \"_manual_approval\" => $_REQUEST[ $this->gateway.'_manual_approval' ],\n\t\t\t$this->gateway . \"_booking_feedback\" => wp_kses_data($_REQUEST[ $this->gateway.'_booking_feedback' ]),\n\t\t\t$this->gateway . \"_booking_feedback_free\" => wp_kses_data($_REQUEST[ $this->gateway.'_booking_feedback_free' ]),\n\t\t\t$this->gateway . \"_booking_feedback_thanks\" => wp_kses_data($_REQUEST[ $this->gateway.'_booking_feedback_thanks' ]),\n\t\t\t$this->gateway . \"_booking_timeout\" => $_REQUEST[ $this->gateway.'_booking_timeout' ],\n\t\t\t$this->gateway . \"_return\" => $_REQUEST[ $this->gateway.'_return' ],\n\t\t\t$this->gateway . \"_cancel_return\" => $_REQUEST[ $this->gateway.'_cancel_return' ],\n\t\t\t$this->gateway . \"_form\" => $_REQUEST[ $this->gateway.'_form' ]\n\t\t);\n\t\tforeach ($gateway_options as $key=>$option) {\n\t\t\tupdate_option('em_'.$key, stripslashes($option));\n\t\t}\n\t\t//default action is to return true\n\t\treturn true;\n\n\t}", "function setPaymentMethod($paymentMethod);", "private function setConfigurationProperties()\n {\n $this->api_live = Configuration::get('PAYPLUG_LIVE_API_KEY');\n $this->api_test = Configuration::get('PAYPLUG_TEST_API_KEY');\n\n // Set the uninstall notice according to the \"keep_cards\" configuration\n $this->confirmUninstall = $this->l('Are you sure you wish to uninstall this module and delete your settings?') . ' ';\n if ((int)Configuration::get('PAYPLUG_KEEP_CARDS') == 1) {\n $this->confirmUninstall .= $this->l('All the registered cards of your customer will be kept.');\n } else {\n $this->confirmUninstall .= $this->l('All the registered cards of your customer will be deleted.');\n }\n\n $this->current_api_key = $this->getCurrentApiKey();\n $this->email = Configuration::get('PAYPLUG_EMAIL');\n $this->img_lang = $this->context->language->iso_code === 'it' ? 'it' : 'default';\n $this->ssl_enable = Configuration::get('PS_SSL_ENABLED');\n\n if ((!isset($this->email) || (!isset($this->api_live) && empty($this->api_test)))) {\n $this->warning = $this->l('In order to accept payments you need to configure your module by connecting your PayPlug account.');\n }\n\n $this->payment_status = array(\n 1 => $this->l('not paid'),\n 2 => $this->l('paid'),\n 3 => $this->l('failed'),\n 4 => $this->l('partially refunded'),\n 5 => $this->l('refunded'),\n 6 => $this->l('on going'),\n 7 => $this->l('cancelled'),\n 8 => $this->l('authorized'),\n 9 => $this->l('authorization expired'),\n );\n }", "public function updatePayolutionAuthSettings()\n {\n $moptPayonePaymentHelper = new Mopt_PayonePaymentHelper();\n $sql = 'SELECT payment_id, authorisation_method FROM s_plugin_mopt_payone_config;';\n $result = Shopware()->Db()->query($sql);\n\n if ($result->rowCount() > 0) {\n\n $resultArr = $result->fetchAll();\n foreach ($resultArr as $value) {\n $paymentId = $value['payment_id'];\n $authMethod = $value['authorisation_method'];\n $paymentName = $moptPayonePaymentHelper->getPaymentNameFromId($paymentId);\n if ($moptPayonePaymentHelper->isPayonePayolutionInvoice($paymentName) || $moptPayonePaymentHelper->isPayonePayolutionDebitNote($paymentName) || $moptPayonePaymentHelper->isPayonePayolutionInstallment($paymentName)) {\n\n if ($authMethod == 'Vorautorisierung') {\n // nothing to do\n } else {\n $updateSQl = \"UPDATE s_plugin_mopt_payone_config SET authorisation_method = \\\"Vorautorisierung\\\" WHERE payment_id = $paymentId;\";\n Shopware()->Db()->query($updateSQl);\n }\n }\n }\n }\n }", "public function update()\n {\n\t$interval = $this->request->post('interval',12,bP_INT) * 3600;\n\tfile_put_contents(bPack_App_BaseDir . 'config/engine.interval', $interval);\t\n\t\n $this->config->set('fetch.depth', $this->request->post('depth',5,bP_INT));\n\n $this->config->set('fetch.delete_enable', $this->request->post('delete_enable',0,bP_INT));\n\n //$this->config->set('fetch.keyword_combination', $this->request->post('keyword_combination',1,bP_INT));\n \n $this->notifyHelper->set('抓取程式設定已更新!');\n $this->adminHelper->log('抓取程式設定已更新!');\n\n $this->go('system/fetch');\n }", "function _springboard_developer_load_payment_method_info($payment_method_name, $rule_name, $instance_id) {\n $payment_method = commerce_payment_method_load($payment_method_name);\n\n $instance_id = urldecode($instance_id);\n $instance = commerce_payment_method_instance_load($instance_id);\n\n $form['parameter'] = array(\n '#tree' => TRUE,\n 'payment_method' => array(\n 'method_id' => array(\n '#type' => 'value',\n '#value' => $payment_method_name,\n ),\n ),\n );\n\n $method_settings = array();\n if ($callback = commerce_payment_method_callback($payment_method, 'settings_form')) {\n $method_settings = !empty($instance['settings']) && is_array($instance['settings']) ? $instance['settings'] : array();\n $form['parameter']['payment_method']['settings'] = $callback($method_settings);\n }\n\n // If $method_settings is empty but settings were returned from the callback,\n // compute and add them to the $method_settings array.\n if (empty($method_settings) && !empty($form['parameter']['payment_method']['settings'])) {\n foreach ($form['parameter']['payment_method']['settings'] as $form_setting_key => $form_setting) {\n $children = element_children($form_setting);\n if (empty($children)) {\n // This is a leaf.\n $method_settings[$form_setting_key] = $form_setting['#default_value'];\n }\n else {\n // This isn't a leaf, so do same procedure to its children.\n // @todo If a payment method ever has settings which is more than 2\n // dimensions, this will need to be changed to be recursive.\n foreach ($children as $child) {\n $method_settings[$form_setting_key][$child] = $form_setting[$child]['#default_value'];\n }\n }\n }\n }\n\n module_load_include('inc', 'fundraiser_commerce', '/gateways/' . $payment_method['module']);\n $gateway_info = module_invoke($payment_method['module'], 'fundraiser_commerce_fundraiser_gateway_info');\n if (!empty($gateway_info['allow_recurring']) && !empty($gateway_info['offsite_recurring'])) {\n $form['parameter']['payment_method']['settings']['offsite_recurring'] = array(\n '#type' => 'checkbox',\n '#title' => t('Offsite recurring donations'),\n '#description' => t('Handle recurring donations offsite at the gateway.'),\n '#default_value' => isset($instance['settings']['offsite_recurring']) ? $instance['settings']['offsite_recurring'] : FALSE,\n );\n }\n\n list($method_id, $rule_name) = explode('|', $instance_id);\n $rule = rules_config_load($rule_name);\n\n $form_state = array(\n 'rebuild' => FALSE,\n 'rebuild_info' => array(),\n 'redirect' => NULL,\n 'temporary' => array(),\n 'submitted' => FALSE,\n 'executed' => FALSE,\n 'programmed' => FALSE,\n 'programmed_bypass_access_check' => TRUE,\n 'cache' => FALSE,\n 'method' => 'get',\n 'groups' => array(),\n 'buttons' => array(),\n 'input' => array(),\n 'rules_element' => $rule,\n '_rules_base_path' => 'admin/commerce/config/payment-methods',\n 'element_settings' => array(\n 'commerce_order:select' => 'commerce-order',\n 'payment_method' => $form['parameter']['payment_method'],\n ),\n 'parameter_mode' => array(\n 'commerce_order' => 'selector',\n 'payment_method' => 'input',\n ),\n 'storage' => array(\n 'old_settings_assoc' => $method_settings,\n ),\n 'values' => array(\n 'parameter' => array(\n 'commerce_order' => array(\n 'settings' => array(\n 'commerce_order:select' => 'commerce-order',\n 'switch_button' => 'Switch to the direct input mode',\n ),\n ),\n 'payment_method' => array(\n 'settings' => array(\n 'payment_method' => array(\n 'method_id' => $payment_method_name,\n 'settings' => $method_settings,\n ),\n ),\n ),\n ),\n ),\n );\n\n drupal_prepare_form('springboard_developer_payment_method_settings_' . $payment_method_name, $form, $form_state);\n\n return array($payment_method, $instance, $rule, $form, $form_state);\n}", "private function updateConfigParams()\n\t\t{\n\t\t\t$paramKeys = [ 'host', 'port', 'username', 'password', 'authentication' ];\n\t\t\t$configService = $this->get(\"reaccion_cms.config\");\n\t\t\t$em = $this->getDoctrine()->getManager();\n\n\t\t\ttry\n\t\t\t{\n\t\t\t\tforeach ($paramKeys as $configKey) \n\t\t\t\t{\n\t\t\t\t\t$configParam = $configService->getEntity(\"mailer_\" . $configKey, false);\n\n\t\t\t\t\tif(empty($configParam) || ! isset($this->$configKey)) continue;\n\n\t\t\t\t\t$paramValue = $this->$configKey;\n\n\t\t\t\t\tif($configKey == \"password\")\n\t\t\t\t\t{\n\t\t\t\t\t\t// Encrypt password\n\t\t\t\t\t\t$paramValue = $this->get(\"reaccion_cms.encryptor\")->encrypt($paramValue);\n\t\t\t\t\t}\n\n\t\t\t\t\t$configParam->setValue($paramValue);\n\n\t\t\t\t\t$em->persist($configParam);\n\t\t\t\t\t$em->flush();\n\t\t\t\t}\n\n\t\t\t\t// display success message\n\t\t\t\t$successTranslation = $this->translator->trans(\"preferences_mailer.update_success_message\");\n\t\t\t\t$this->addFlash(\"success\", $successTranslation);\n\t\t\t}\n\t\t\tcatch(\\Exception $e)\n\t\t\t{\n\t\t\t\t$this->get(\"reaccion_cms.logger\")->logException($e, \"Error updating mailer config paramameter.\");\n\t\t\t\t\n\t\t\t\t// display error message\n\t\t\t\t$errorMessage = $this->translator->trans(\"preferences_mailer.update_error_message\", ['%error%' => $e->getMessage() ]);\n\t\t\t\t$this->addFlash(\"error\", $errorMessage);\n\t\t\t}\n\t\t}", "public function update_config()\n\t{\n\t\t$tmp = array();\n\t\t$config = new Config_edit($tmp, 'adm_pm_config_');\n\t\t$data = $config->validate($_POST, 'portail_config', 'portail_name', 'portail_type');\n\n\t\t// Mise a jour de la configuration\n\t\tforeach ($data AS $key => $value)\n\t\t{\n\t\t\tFsb::$db->update('portail_config', array(\n\t\t\t\t'portail_value' =>\tFsb::$db->escape($value),\n\t\t\t), 'WHERE portail_name = \\'' . Fsb::$db->escape($key) . '\\'');\n\t\t}\n\t\tFsb::$db->destroy_cache('portail_config_');\n\n\t\tLog::add(Log::ADMIN, 'portail_config', $this->module);\n\t\tDisplay::message('adm_portail_config_well_submit', 'index.' . PHPEXT . '?p=general_portail', 'general_portail');\n\t}", "public function savePaymentSettings(){\n\t\t$getPaymentSettings = $this->get_all_details(PAYMENT_GATEWAY,array());\n\t\t$config = '<?php ';\n\t\tforeach($getPaymentSettings->result_array() as $key => $val){\n\t\t\t$value = serialize($val);\n\t\t\t$config .= \"\\n\\$config['payment_$key'] = '$value'; \";\n\t\t}\n\t\t$config .= ' ?>';\n\t\t$file = realpath('commonsettings/fc_payment_settings.php');\n\t\tfile_put_contents($file, $config);\n }", "public function update_payment_method() {\n\t\n\t\tif($this->input->post('type')=='edit_record') {\n\t\t\t\n\t\t$id = $this->uri->segment(3);\n\t\t\n\t\t/* Define return | here result is used to return user data and error for error message */\n\t\t$Return = array('result'=>'', 'error'=>'');\n\t\t\n\t\t/* Server side PHP input validation */\t\t\n\t\tif($this->input->post('name')==='') {\n \t$Return['error'] = \"The payment method field is required.\";\n\t\t}\n\t\t\t\t\n\t\tif($Return['error']!=''){\n \t\t$this->output($Return);\n \t}\n\t\n\t\t$data = array(\n\t\t'method_name' => $this->input->post('name')\n\t\t);\n\t\t\n\t\t$result = $this->Graphene_model->update_payment_method_record($data,$id);\t\t\n\t\t\n\t\tif ($result == TRUE) {\n\t\t\t$Return['result'] = 'Payment Method updated.';\n\t\t} else {\n\t\t\t$Return['error'] = 'Bug. Something went wrong, please try again.';\n\t\t}\n\t\t$this->output($Return);\n\t\texit;\n\t\t}\n\t}", "public function adminUpdateSettings()\n {\n $db = DataAccess::getInstance();\n $sb = geoSellerBuyer::getInstance();\n\n //paypal - save settings\n\n\n $go_ahead = (isset($_POST['paypal_allow_sb']) && $_POST['paypal_allow_sb']) ? 1 : false;\n\n\n //check inputs\n\n if ($go_ahead && !$db->get_site_setting('paypal_allow_sb')) {\n $sb->initTableStructure();//make sure table structure is initialized.\n //turn on paypal for all price plans\n $plans = $this->_getAuctionPricePlans();\n foreach ($plans as $plan_id) {\n //set main price plan default settings\n $sb->setDefaultPlanSettings($plan_id, 0, array('paypal_allow_sb' => true));\n\n //get any cat price plans for this price plan, and set default settings\n $cat_plans = $this->_getAuctionPricePlans($plan_id);\n foreach ($cat_plans as $cat_plan_id) {\n //set cat price plan default settings\n $sb->setDefaultPlanSettings(0, $cat_plan_id, array('paypal_allow_sb' => true));\n }\n }\n }\n $db->set_site_setting('paypal_allow_sb', $go_ahead);\n\n $db->set_site_setting('pp_chain_enable', $_POST['pp_chain_enable']);\n $db->set_site_setting('pp_chain_partner', $_POST['pp_chain_partner']);\n $db->set_site_setting('pp_chain_username', $_POST['pp_chain_username']);\n $db->set_site_setting('pp_chain_password', $_POST['pp_chain_password']);\n $db->set_site_setting('pp_chain_signature', $_POST['pp_chain_signature']);\n $db->set_site_setting('pp_chain_appid', $_POST['pp_chain_appid']);\n\n\n $sitePP = $_POST['pp_chain_site_recipient'];\n if ($sitePP && !$sb->getUserSetting($sitePP, 'paypal_id')) {\n geoAdmin::m('Selected user is not a valid user OR does NOT have a registered paypal email', geoAdmin::ERROR);\n }\n\n $db->set_site_setting('pp_chain_site_recipient', $_POST['pp_chain_site_recipient']);\n\n return true;\n }", "public function updateSettings();", "public function synchronize($space_id){\n\t\t$existing_found = array();\n\t\t$existing_configurations = \\Wallee\\Entity\\MethodConfiguration::loadBySpaceId($this->registry, $space_id);\n\t\t\n\t\t$payment_method_configuration_service = new \\Wallee\\Sdk\\Service\\PaymentMethodConfigurationService(\n\t\t\t\t\\WalleeHelper::instance($this->registry)->getApiClient());\n\t\t$configurations = $payment_method_configuration_service->search($space_id, new \\Wallee\\Sdk\\Model\\EntityQuery());\n\t\t\n\t\tforeach ($configurations as $configuration) {\n\t\t\t$method = \\Wallee\\Entity\\MethodConfiguration::loadByConfiguration($this->registry, $space_id, $configuration->getId());\n\t\t\tif ($method->getId() !== null) {\n\t\t\t\t$existing_found[] = $method->getId();\n\t\t\t}\n\t\t\t\n\t\t\t$method->setSpaceId($space_id);\n\t\t\t$method->setConfigurationId($configuration->getId());\n\t\t\t$method->setConfigurationName($configuration->getName());\n\t\t\t$method->setState($this->getConfigurationState($configuration));\n\t\t\t$method->setTitle($configuration->getResolvedTitle());\n\t\t\t$method->setDescription($configuration->getResolvedDescription());\n\t\t\t$method->setImage($configuration->getResolvedImageUrl());\n\t\t\t$method->setSortOrder($configuration->getSortOrder());\n\t\t\t$method->save();\n\t\t}\n\t\t\n\t\tforeach ($existing_configurations as $existing_configuration) {\n\t\t\tif (!in_array($existing_configuration->getId(), $existing_found)) {\n\t\t\t\t$existing_configuration->setState(\\Wallee\\Entity\\MethodConfiguration::STATE_HIDDEN);\n\t\t\t\t$existing_configuration->save();\n\t\t\t}\n\t\t}\n\t\t\n\t\t\\Wallee\\Provider\\PaymentMethod::instance($this->registry)->clearCache();\n\t}", "function update_payment_data() {\n\n $cdata['value'] = trim($this->input->post('amount'));\n $where = array('config_key' => 'amount');\n $this->common_model->update(CONFIG_TABLE, $cdata, $where);\n\n //lower credit limit color notification\n $cdata1['value'] = trim($this->input->post('vat'));\n $where1 = array('config_key' => 'vat');\n $this->common_model->update(CONFIG_TABLE, $cdata1, $where1);\n\n $this->session->set_flashdata('msg', \"<div class='alert alert-success text-center'>\" . lang('update_successfully') . \"</div>\");\n \n redirect($this->type . '/' . $this->viewname);\n }", "public function update_settings(){\n woocommerce_update_options( self::get_settings() );\n }", "public function getConfig()\n {\n return [\n 'payment' => [\n Config::METHOD_CC => [\n 'isActive' => $this->config->isActive(Config::METHOD_CC),\n 'availableCardTypes' => $this->config->getEnabledCreditCardTypes(),\n 'logoFileNames' => $this->config->getLogoImagesUrls(),\n Config::XML_CONFIG_CC_3DSECURE => $this->config->isCreditCard3DSecureEnabled(),\n 'cardTypeFieldName' => 'ems_card_type',\n ],\n Config::METHOD_SOFORT => [\n 'isActive' => $this->config->isActive(Config::METHOD_SOFORT),\n ],\n Config::METHOD_MAESTRO => [\n 'isActive' => $this->config->isActive(Config::METHOD_MAESTRO),\n 'availableCardTypes' => $this->config->getMaestroCardTypes(),\n 'logoFileNames' => $this->config->getLogoImagesUrls(),\n 'cardTypeFieldName' => 'debit_card_type',\n Config::XML_CONFIG_CC_3DSECURE => true,\n ],\n Config::METHOD_MASTER_PASS => [\n 'isActive' => $this->config->isActive(Config::METHOD_MASTER_PASS),\n ],\n Config::METHOD_PAYPAL => [\n 'isActive' => $this->config->isActive(Config::METHOD_PAYPAL),\n ],\n Config::METHOD_IDEAL => [\n 'isActive' => $this->config->isActive(Config::METHOD_IDEAL),\n 'isBankSelectionEnabled' => $this->config->isIdealIssuingBankSelectionEnabled(),\n 'issuingBank' => 'issuing_bank',\n 'availableBanks' => $this->config->getIdealEnabledIssuingBanks(),\n 'availableCustomerId' => $this->config->isIdealCustomerSelectionEnabled()\n ],\n Config::METHOD_BANCONTACT => [\n 'isActive' => $this->config->isActive(Config::METHOD_BANCONTACT),\n 'isBankSelectionEnabled' => $this->config->isBancontactIssuingBankSelectionEnabled(),\n 'issuingBank' => 'issuing_bank',\n 'availableBanks' => $this->config->getBancontactEnabledIssuingBanks(),\n ],\n Config::METHOD_KLARNA => [\n 'isActive' => $this->config->isActive(Config::METHOD_KLARNA),\n ],\n 'emsPayGeneral' => [\n 'emspayRedirectUrl' => Config::CHECKOUT_REDIRECT_URL,\n 'logoFileNames' => $this->config->getLogoImagesUrls(),\n ]\n\n ]\n ];\n }", "public function settingsUpdate(){\n\t\t\tcheck_admin_referer('twentysteps_bricks_bridge_nonce');\n\t\t\tif(!current_user_can('manage_network_options')) {\n\t\t\t\twp_die('rejected');\n\t\t\t}\n\t\t\t\n\t\t\t// update settings\n\t\t\t$this->setApiKey($_POST['api_key']);\n\t\t\t$this->setApiHost($_POST['api_host']);\n\t\t\t$this->setApiProtocol($_POST['api_protocol']);\n\t\t\t$this->setInvalidateAllEnabled($_POST['invalidate_all_enabled']);\n\t\t\t$this->setPreviewEnabled($_POST['preview_enabled']);\n\t\t\t$this->setForcePreviewBeforePublishEnabled($_POST['preview_force_before_publish_enabled']);\n\t\t\t$this->setCRUDEventsEnabled($_POST['crud_events_enabled']);\n\t\t\t\n\t\t\t// check bridge and show settings page again\n\t\t\twp_redirect(admin_url('network/settings.php?page=bricks-bridge&check='.urlencode($this->checkBridgeSettings())));\n\t\t\t\n\t\t\texit;\n\t\t}", "function authorize_payment_config() {\n $this->load->model('admin/Crud_model');\n if ($_POST) {\n $id = $this->input->post('config_id', TRUE);\n if ($id != '') {\n // update configuration\n $this->Crud_model->authorize_net_config_update($id, array(\n 'login_id' => $this->input->post('login_id', TRUE),\n 'transaction_key' => $this->input->post('transaction_key', TRUE),\n 'success_url' => $this->input->post('success_url', TRUE),\n 'failure_url' => $this->input->post('failure_url', TRUE),\n 'cancel_url' => $this->input->post('cancel_url', TRUE),\n 'status' => $this->input->post('status', TRUE)\n )\n );\n $this->session->set_flashdata('Configuration updated.', 'Authorize.net payment gateway configutaion updated.');\n } else {\n // add new configuration\n $this->Crud_model->authorize_net_config_insert(array(\n 'login_id' => $this->input->post('login_id', TRUE),\n 'transaction_key' => $this->input->post('transaction_key', TRUE),\n 'success_url' => $this->input->post('success_url', TRUE),\n 'failure_url' => $this->input->post('failure_url', TRUE),\n 'cancel_url' => $this->input->post('cancel_url', TRUE),\n 'status' => $this->input->post('status', TRUE)\n )\n );\n $this->session->set_flashdata('Configuration added.', 'Authorize.net configuration successfully added.');\n }\n redirect(base_url('admin/authorize_payment_config'));\n }\n $page_data['title'] = 'Authorize.net Payment Gateway Configuration';\n $page_data['page_name'] = 'authorize_payment_config';\n $page_data['authorize_net'] = $this->Crud_model->authorize_net_config();\n $this->load->view('backend/index', $page_data);\n }", "function _springboard_developer_admin_settings_payment_method_settings($instance_ids, $action = 'get') {\n $instance_ids = urldecode($instance_ids);\n if (strpos($instance_ids, ',') === FALSE) {\n $instance_ids = array($instance_ids);\n }\n else {\n $instance_ids = explode(',', $instance_ids);\n }\n foreach ($instance_ids as $instance_id) {\n list($payment_method_name, $rule_name) = explode('|', $instance_id);\n\n list($payment_method, $instance, $rule, $form, $form_state) = _springboard_developer_load_payment_method_info($payment_method_name, $rule_name, $instance_id);\n\n switch ($action) {\n case 'submit':\n $data = $_POST['parameter']['payment_method']['settings'];\n foreach ($form_state['values']['parameter']['payment_method']['settings']['payment_method']['settings'] as $key => &$setting) {\n if (!isset($data[$key])) {\n if (is_array($setting)) {\n foreach ($setting as &$s) {\n $s = NULL;\n }\n }\n else {\n $setting = NULL;\n }\n }\n else {\n $setting = $data[$key];\n unset($data[$key]);\n }\n }\n if (count($data)) {\n $form_state['values']['parameter']['payment_method']['settings']['payment_method']['settings'] += $data;\n }\n\n _springboard_developer_save_payment_method_form($rule, $form, $form_state);\n break;\n\n case 'autofill':\n _springboard_developer_lastpass_autofill($payment_method_name, $rule, $form, $form_state);\n break;\n\n case 'autoconfig':\n _springboard_developer_autoconfig($payment_method_name, $rule, $form, $form_state);\n break;\n\n case 'get':\n default:\n $actions = array();\n $actions['save'] = array(\n '#type' => 'button',\n '#value' => t('Save'),\n '#attributes' => array(\n 'class' => array('success', 'save-payment-method-settings'),\n 'data-payment-method' => $payment_method_name,\n 'data-url' => '/springboard/springboard-developer/payment-method-settings/nojs/' . $instance_id,\n ),\n '#id' => 'save-payment-settings-' . $payment_method_name,\n );\n $actions['cancel'] = array(\n '#type' => 'button',\n '#value' => t('Cancel'),\n '#attributes' => array(\n 'class' => array('warning', 'remove-payment-method-setting-row'),\n ),\n );\n\n $form = form_builder('springboard_developer_payment_method_settings_' . $payment_method_name, $form, $form_state);\n $settings_row = '<tr class=\"payment-method-settings-row\"><td class=\"first\"></td><td></td><td>' . render($form) . '</td><td class=\"last\">' . render($actions) . '</td></tr>';\n\n print $settings_row;\n break;\n }\n }\n}", "public function saveConfiguration(){\n //Si le formulaire a été envoyé \n if(Tools::isSubmit(\"submit_mysiteadvice_form\")){\n\n // Récupère la valeur POST associée à la clé passée en paramètre\n $enable_advices = Tools::getValue('enable_advices');\n // Sauvegarde des valeurs (clé en premier paramètre et valeur en second)\n // updateValue crée une nouvelle entrée dans la table de config ou la met à jour \n Configuration::updateValue('MYADVICE_ADVICES', $enable_advices);\n\n // Assigne une variable de confirmation à l'objet Smarty\n $this->context->smarty->assign('confirmation', 'ok');\n }\n }", "public function configureNumber()\n {\n if (\\request()->type == 'configure_numbers') {\n $find = Setting::where('type', 'configure_numbers')->first();\n if ($find) {\n $find->update(['field1' => (request()->value) ? 1 : 0]);\n } else {\n Setting::create(['type' => 'configure_numbers', 'field1' => (request()->value) ? 1 : 0]);\n }\n } else if (request()->type == 'billing_on_off') {\n $find = Setting::where('type', 'billing_on_off')->first();\n if ($find) {\n $find->update(['field1' => request()->value, \"field2\" => json_encode(request()->billingValues)]);\n } else {\n Setting::create(['type' => 'billing_on_off', 'field1' => request()->value, \"field2\" => json_encode(request()->billingValues)]);\n }\n } else if (request()->type == 'gift_card') {\n $find = Setting::where('type', 'gift_card')->first();\n if ($find) {\n $find->update(['field1' => request()->value]);\n } else {\n Setting::create(['type' => 'gift_card', 'field1' => request()->value]);\n }\n } else {\n $find = Setting::where('type', 'voucher_code_length')->first();\n if ($find) {\n $find->update(['field1' => request()->value]);\n } else {\n Setting::create(['type' => 'voucher_code_length', 'field1' => request()->value]);\n }\n }\n\n return ['status' => true, 'message' => 'Successfully added'];\n }" ]
[ "0.7175221", "0.69520664", "0.65539753", "0.6251086", "0.6193336", "0.60891736", "0.606903", "0.6033141", "0.60228395", "0.5969836", "0.5955702", "0.59548825", "0.58935404", "0.5889759", "0.5870804", "0.5842227", "0.58140373", "0.5724148", "0.56701785", "0.5655251", "0.56227726", "0.5588703", "0.5587362", "0.5560188", "0.5557822", "0.5550587", "0.55462617", "0.5542706", "0.5512378", "0.5507397" ]
0.70784605
1
Synchronizes the payment method configurations from wallee.
public function synchronize() { $existing_found = array(); $space_id = get_option( WooCommerce_Wallee::CK_SPACE_ID ); $existing_configurations = WC_Wallee_Entity_Method_Configuration::load_all(); if ( ! empty( $space_id ) ) { $payment_method_configuration_service = new \Wallee\Sdk\Service\PaymentMethodConfigurationService( WC_Wallee_Helper::instance()->get_api_client() ); $configurations = $payment_method_configuration_service->search( $space_id, new \Wallee\Sdk\Model\EntityQuery() ); foreach ( $configurations as $configuration ) { /* @var WC_Wallee_Entity_Method_Configuration $method */ $method = WC_Wallee_Entity_Method_Configuration::load_by_configuration( $space_id, $configuration->getId() ); if ( $method->get_id() !== null ) { $existing_found[] = $method->get_id(); } $method->set_space_id( $space_id ); $method->set_configuration_id( $configuration->getId() ); $method->set_configuration_name( $configuration->getName() ); $method->set_state( $this->get_configuration_state( $configuration ) ); $method->set_title( $configuration->getResolvedTitle() ); $method->set_description( $configuration->getResolvedDescription() ); $method->set_image( $this->get_resource_path( $configuration->getResolvedImageUrl() ) ); $method->set_image_base( $this->get_resource_base( $configuration->getResolvedImageUrl() ) ); $method->save(); } } foreach ( $existing_configurations as $existing_configuration ) { if ( ! in_array( $existing_configuration->get_id(), $existing_found ) ) { $existing_configuration->set_state( WC_Wallee_Entity_Method_Configuration::STATE_HIDDEN ); $existing_configuration->save(); } } delete_transient( 'wc_wallee_payment_methods' ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function synchronize() {\n\t\t$existing_found = array();\n\t\t$space_id = get_option( WooCommerce_PostFinanceCheckout::CK_SPACE_ID );\n\n\t\t$existing_configurations = WC_PostFinanceCheckout_Entity_Method_Configuration::load_all();\n\n\t\tif ( ! empty( $space_id ) ) {\n\t\t\t$payment_method_configuration_service = new \\PostFinanceCheckout\\Sdk\\Service\\PaymentMethodConfigurationService(\n\t\t\t\tWC_PostFinanceCheckout_Helper::instance()->get_api_client()\n\t\t\t);\n\t\t\t$configurations = $payment_method_configuration_service->search(\n\t\t\t\t$space_id,\n\t\t\t\tnew \\PostFinanceCheckout\\Sdk\\Model\\EntityQuery()\n\t\t\t);\n\n\t\t\tforeach ( $configurations as $configuration ) {\n\t\t\t\t/* @var WC_PostFinanceCheckout_Entity_Method_Configuration $method */\n\t\t\t\t$method = WC_PostFinanceCheckout_Entity_Method_Configuration::load_by_configuration( $space_id, $configuration->getId() );\n\t\t\t\tif ( $method->get_id() !== null ) {\n\t\t\t\t\t$existing_found[] = $method->get_id();\n\t\t\t\t}\n\n\t\t\t\t$method->set_space_id( $space_id );\n\t\t\t\t$method->set_configuration_id( $configuration->getId() );\n\t\t\t\t$method->set_configuration_name( $configuration->getName() );\n\t\t\t\t$method->set_state( $this->get_configuration_state( $configuration ) );\n\t\t\t\t$method->set_title( $configuration->getResolvedTitle() );\n\t\t\t\t$method->set_description( $configuration->getResolvedDescription() );\n\n\t\t\t\t$method->set_image( $this->get_resource_path( $configuration->getResolvedImageUrl() ) );\n\t\t\t\t$method->set_image_base( $this->get_resource_base( $configuration->getResolvedImageUrl() ) );\n\t\t\t\t$method->save();\n\t\t\t}\n\t\t}\n\t\tforeach ( $existing_configurations as $existing_configuration ) {\n\t\t\tif ( ! in_array( $existing_configuration->get_id(), $existing_found ) ) {\n\t\t\t\t$existing_configuration->set_state( WC_PostFinanceCheckout_Entity_Method_Configuration::STATE_HIDDEN );\n\t\t\t\t$existing_configuration->save();\n\t\t\t}\n\t\t}\n\t\tdelete_transient( 'wc_postfinancecheckout_payment_methods' );\n\t}", "public function updatePayolutionAuthSettings()\n {\n $moptPayonePaymentHelper = new Mopt_PayonePaymentHelper();\n $sql = 'SELECT payment_id, authorisation_method FROM s_plugin_mopt_payone_config;';\n $result = Shopware()->Db()->query($sql);\n\n if ($result->rowCount() > 0) {\n\n $resultArr = $result->fetchAll();\n foreach ($resultArr as $value) {\n $paymentId = $value['payment_id'];\n $authMethod = $value['authorisation_method'];\n $paymentName = $moptPayonePaymentHelper->getPaymentNameFromId($paymentId);\n if ($moptPayonePaymentHelper->isPayonePayolutionInvoice($paymentName) || $moptPayonePaymentHelper->isPayonePayolutionDebitNote($paymentName) || $moptPayonePaymentHelper->isPayonePayolutionInstallment($paymentName)) {\n\n if ($authMethod == 'Vorautorisierung') {\n // nothing to do\n } else {\n $updateSQl = \"UPDATE s_plugin_mopt_payone_config SET authorisation_method = \\\"Vorautorisierung\\\" WHERE payment_id = $paymentId;\";\n Shopware()->Db()->query($updateSQl);\n }\n }\n }\n }\n }", "public function synchronize($space_id){\n\t\t$existing_found = array();\n\t\t$existing_configurations = \\Wallee\\Entity\\MethodConfiguration::loadBySpaceId($this->registry, $space_id);\n\t\t\n\t\t$payment_method_configuration_service = new \\Wallee\\Sdk\\Service\\PaymentMethodConfigurationService(\n\t\t\t\t\\WalleeHelper::instance($this->registry)->getApiClient());\n\t\t$configurations = $payment_method_configuration_service->search($space_id, new \\Wallee\\Sdk\\Model\\EntityQuery());\n\t\t\n\t\tforeach ($configurations as $configuration) {\n\t\t\t$method = \\Wallee\\Entity\\MethodConfiguration::loadByConfiguration($this->registry, $space_id, $configuration->getId());\n\t\t\tif ($method->getId() !== null) {\n\t\t\t\t$existing_found[] = $method->getId();\n\t\t\t}\n\t\t\t\n\t\t\t$method->setSpaceId($space_id);\n\t\t\t$method->setConfigurationId($configuration->getId());\n\t\t\t$method->setConfigurationName($configuration->getName());\n\t\t\t$method->setState($this->getConfigurationState($configuration));\n\t\t\t$method->setTitle($configuration->getResolvedTitle());\n\t\t\t$method->setDescription($configuration->getResolvedDescription());\n\t\t\t$method->setImage($configuration->getResolvedImageUrl());\n\t\t\t$method->setSortOrder($configuration->getSortOrder());\n\t\t\t$method->save();\n\t\t}\n\t\t\n\t\tforeach ($existing_configurations as $existing_configuration) {\n\t\t\tif (!in_array($existing_configuration->getId(), $existing_found)) {\n\t\t\t\t$existing_configuration->setState(\\Wallee\\Entity\\MethodConfiguration::STATE_HIDDEN);\n\t\t\t\t$existing_configuration->save();\n\t\t\t}\n\t\t}\n\t\t\n\t\t\\Wallee\\Provider\\PaymentMethod::instance($this->registry)->clearCache();\n\t}", "private function _init_configurations() {\n\n $config = Configuration::getMultiple(array(\n 'AFTERPAY_ENABLED',\n 'AFTERPAY_MERCHANT_ID',\n 'AFTERPAY_MERCHANT_KEY',\n 'AFTERPAY_API_ENVIRONMENT',\n 'AFTERPAY_PAYMENT_MIN',\n 'AFTERPAY_PAYMENT_MAX',\n 'AFTERPAY_RESTRICTED_CATEGORIES',\n 'AFTERPAY_USER_AGENT',\n ));\n\n $this->afterpay_enabled = false;\n if (!empty($config['AFTERPAY_ENABLED'])) {\n $this->afterpay_enabled = (bool)$config['AFTERPAY_ENABLED'];\n }\n if (!empty($config['AFTERPAY_MERCHANT_ID'])) {\n $this->afterpay_merchant_id = $config['AFTERPAY_MERCHANT_ID'];\n }\n if (!empty($config['AFTERPAY_MERCHANT_KEY'])) {\n $this->afterpay_merchant_key = $config['AFTERPAY_MERCHANT_KEY'];\n }\n if (!empty($config['AFTERPAY_API_ENVIRONMENT'])) {\n $this->afterpay_api_environment = $config['AFTERPAY_API_ENVIRONMENT'];\n }\n if (!empty($config['AFTERPAY_PAYMENT_MIN'])) {\n $this->afterpay_payment_min = (float)$config['AFTERPAY_PAYMENT_MIN'];\n }\n if (!empty($config['AFTERPAY_PAYMENT_MAX'])) {\n $this->afterpay_payment_max = (float)$config['AFTERPAY_PAYMENT_MAX'];\n }\n $this->afterpay_restricted_categories = array();\n if (!empty($config['AFTERPAY_RESTRICTED_CATEGORIES'])) {\n $this->afterpay_restricted_categories = json_decode($config['AFTERPAY_RESTRICTED_CATEGORIES']);\n }\n if (!empty($config['AFTERPAY_USER_AGENT'])) {\n $this->afterpay_user_agent = $config['AFTERPAY_USER_AGENT'];\n }\n }", "function save_synchronization_form_settings($form_data)\n{\n global $CFG;\n $synch_settings = array();\n $connection_settings = unserialize($CFG->eb_connection_settings);\n $connection_settings_keys = array_keys($connection_settings);\n\n\n if (in_array($form_data->wp_site_list, $connection_settings_keys)) {\n $existing_synch_settings = isset($CFG->eb_synch_settings) ? unserialize($CFG->eb_synch_settings) : array();\n $synch_settings = $existing_synch_settings;\n $synch_settings[$form_data->wp_site_list] = array(\n // \"course_enrollment\" => $form_data->wp_site_list,\n \"course_enrollment\" => $form_data->course_enrollment,\n \"course_un_enrollment\" => $form_data->course_un_enrollment,\n \"user_creation\" => $form_data->user_creation,\n \"user_deletion\" => $form_data->user_deletion,\n \"course_deletion\" => $form_data->course_deletion,\n \"user_updation\" => $form_data->user_updation\n );\n } else {\n $synch_settings[$form_data->wp_site_list] = array(\n // \"course_enrollment\" => $form_data->wp_site_list,\n \"course_enrollment\" => $form_data->course_enrollment,\n \"course_un_enrollment\" => $form_data->course_un_enrollment,\n \"user_creation\" => $form_data->user_creation,\n \"user_deletion\" => $form_data->user_deletion,\n \"course_deletion\" => $form_data->course_deletion,\n \"user_updation\" => $form_data->user_updation\n );\n }\n set_config(\"eb_synch_settings\", serialize($synch_settings));\n}", "public function adminUpdateSettings()\n {\n $db = DataAccess::getInstance();\n $sb = geoSellerBuyer::getInstance();\n\n //paypal - save settings\n\n\n $go_ahead = (isset($_POST['paypal_allow_sb']) && $_POST['paypal_allow_sb']) ? 1 : false;\n\n\n //check inputs\n\n if ($go_ahead && !$db->get_site_setting('paypal_allow_sb')) {\n $sb->initTableStructure();//make sure table structure is initialized.\n //turn on paypal for all price plans\n $plans = $this->_getAuctionPricePlans();\n foreach ($plans as $plan_id) {\n //set main price plan default settings\n $sb->setDefaultPlanSettings($plan_id, 0, array('paypal_allow_sb' => true));\n\n //get any cat price plans for this price plan, and set default settings\n $cat_plans = $this->_getAuctionPricePlans($plan_id);\n foreach ($cat_plans as $cat_plan_id) {\n //set cat price plan default settings\n $sb->setDefaultPlanSettings(0, $cat_plan_id, array('paypal_allow_sb' => true));\n }\n }\n }\n $db->set_site_setting('paypal_allow_sb', $go_ahead);\n\n $db->set_site_setting('pp_chain_enable', $_POST['pp_chain_enable']);\n $db->set_site_setting('pp_chain_partner', $_POST['pp_chain_partner']);\n $db->set_site_setting('pp_chain_username', $_POST['pp_chain_username']);\n $db->set_site_setting('pp_chain_password', $_POST['pp_chain_password']);\n $db->set_site_setting('pp_chain_signature', $_POST['pp_chain_signature']);\n $db->set_site_setting('pp_chain_appid', $_POST['pp_chain_appid']);\n\n\n $sitePP = $_POST['pp_chain_site_recipient'];\n if ($sitePP && !$sb->getUserSetting($sitePP, 'paypal_id')) {\n geoAdmin::m('Selected user is not a valid user OR does NOT have a registered paypal email', geoAdmin::ERROR);\n }\n\n $db->set_site_setting('pp_chain_site_recipient', $_POST['pp_chain_site_recipient']);\n\n return true;\n }", "public function updateMarketPlaceConfiguration() {\n if ($xml = fopen(self::MP_CONF_LENGOW, 'r')) {\n $markeplace = Mage::getModel('sync/marketplace');\n $handle = fopen(Mage::getModuleDir('etc', 'Lengow_Sync') . DS . $markeplace::$XML_MARKETPLACES . '', 'w');\n stream_copy_to_stream($xml, $handle);\n fclose($handle);\n Mage::getModel('core/config')->saveConfig('sync/hidden/last_synchro', date('Y-m-d'));\n }\n }", "public static function enablePayment(){\n\t\t$db = \\Config\\Database::connect();\n\t\thelper('settingsviews');\n\t\t$clientDetails = \\SettingsViews::getClientDetails();\n\t\tif(!empty($clientDetails)){\n\t\t\t$email_id = $clientDetails['email_id'];\n\t\t\t$validation_id = $clientDetails['validation_id'];\n\t\t\t$sellerdb = $clientDetails['sellerdb'];\n\t\t\t$store_hash = $clientDetails['store_hash'];\n\t\t\t$acess_token = $clientDetails['acess_token'];\n\t\t\t\n\t\t\t$url = getenv('bigcommerceapp.STORE_URL').$store_hash.'/v2/pages';\n\t\t\t$header = array(\n\t\t\t\t\"X-Auth-Token: \".$acess_token,\n\t\t\t\t\"Accept: application/json\",\n\t\t\t\t\"Content-Type: application/json\"\n\t\t\t);\n\t\t\ttry{\n\t\t\t\t$res = \\SettingsViews::injectPaymentScripts($sellerdb,$acess_token,$store_hash,$email_id,$validation_id);\n\t\t\t\tif($res == \"1\"){\n\t\t\t\t\t$data = [\n\t\t\t\t\t\t\t'is_enable' => 1\n\t\t\t\t\t\t];\n\t\t\t\t\t$builderupdate = $db->table('payu_token_validation'); \n\t\t\t\t\t$builderupdate->where('email_id', $email_id); \n\t\t\t\t\t$builderupdate->update($data);\n\t\t\t\t}\n\t\t\t\thelper('custompaymentscript');\n\t\t\t\t\\CustomPaymentScript::createPaymentScript($sellerdb,$email_id,$validation_id);\n\t\t\t}catch(\\Exception $e){\n\t\t\t\tlog_message('info', 'exception:'.$e->getMessage());\n\t\t\t}\n\t\t}\n\t}", "private function updatePaymentMethods()\n {\n // YYY: Make dynamic\n $this->paymentMethodIds = [\n 'ideal' => 'iDeal',\n 'mistercash' => 'Bancontact',\n 'creditcard' => 'Creditcard',\n 'paysafecard' => 'PaySafeCard',\n 'paysafecash' => 'Paysafecash',\n 'sofortbanking' => 'SofortBanking',\n 'paypal' => 'PayPal',\n 'klarna' => 'Klarna',\n 'clickandbuy' => 'ClickandBuy',\n 'afterpay' => 'Afterpay',\n 'directdebit' => 'DirectDebit',\n 'przelewy24' => 'Przelewy24',\n 'safeklick' => 'Safeklick',\n 'banktransfer' => 'Bank transfer',\n 'giropay' => 'Giropay',\n 'giftcard' => 'Gift Card',\n 'capayable' => 'Capayable',\n 'bitcoin' => 'Bitcoin',\n 'belfius' => 'Belfius',\n 'billink' => 'Billink',\n 'idealqr' => 'iDEAL QR',\n 'onlineueberweisen' => 'OnlineÜberweisen',\n 'spraypay' =>'SprayPay'\n ];\n $this->cache->save($this->serializer->serialize($this->paymentMethodIds), self::CACHEKEY, [], 24 * 3600);\n }", "function _springboard_developer_autoconfig($payment_method_name, $rule, $form, $form_state) {\n $gateways = _springboard_developer_autoconfig_supported_gateways();\n if (empty($gateways[$payment_method_name])) {\n $result = array(\n 'status' => 'error',\n 'message' => t('Error: specified gateway not found.'),\n );\n print json_encode($result);\n return;\n }\n\n $new_settings = $gateways[$payment_method_name];\n foreach ($new_settings as $nk => $ns) {\n if (array_key_exists($nk, $form_state['values']['parameter']['payment_method']['settings']['payment_method']['settings'])) {\n $form_state['values']['parameter']['payment_method']['settings']['payment_method']['settings'][$nk] = $ns;\n }\n }\n\n _springboard_developer_save_payment_method_form($rule, $form, $form_state);\n}", "public function savePaymentSettings(){\n\t\t$getPaymentSettings = $this->get_all_details(PAYMENT_GATEWAY,array());\n\t\t$config = '<?php ';\n\t\tforeach($getPaymentSettings->result_array() as $key => $val){\n\t\t\t$value = serialize($val);\n\t\t\t$config .= \"\\n\\$config['payment_$key'] = '$value'; \";\n\t\t}\n\t\t$config .= ' ?>';\n\t\t$file = realpath('commonsettings/fc_payment_settings.php');\n\t\tfile_put_contents($file, $config);\n }", "public function getPaymentMethods($includeDisabled = true)\n {\n $list = Mage::getModel('xpaymentsconnector/paymentconfiguration')->getCollection();\n\n $activeCount = 0;\n\n $result = array();\n\n if (!empty($list)) {\n\n $count = 0;\n\n foreach ($list as $k => $v) {\n\n $v['payment_method_data'] = unserialize($v['payment_method_data']);\n\n $result[$k] = $v;\n\n // Enable/disable checkbox\n $result[$k]['active_checkbox'] = array(\n 'id' => 'active-checkbox-' . $v['confid'],\n 'name' => 'payment_methods[active][' . $v['confid'] . ']',\n 'value' => 'Y',\n 'class' => 'pm-active pointer ' . ($count++ % 2 == 0 ? 'even' : 'odd'),\n );\n\n if (\n 'Y' == $v['active']\n && $activeCount < Cdev_XPaymentsConnector_Helper_Settings_Data::MAX_SLOTS \n ) {\n $result[$k]['active_checkbox'] += array('checked' => 'checked'); \n $activeCount++;\n }\n\n // Save cards checkbox\n $result[$k]['savecard_checkbox'] = array(\n 'id' => 'savecard-checkbox-' . $v['confid'],\n 'name' => 'payment_methods[savecard][' . $v['confid'] . ']',\n 'value' => 'Y',\n 'class' => 'pm-savecard',\n );\n\n if ('Y' == $v['save_cards']) {\n $result[$k]['savecard_checkbox'] += array('checked' => 'checked');\n }\n\n\n // Payment method block\n $result[$k]['payment_method'] = array(\n 'id' => 'payment-method-' . $v['confid'],\n 'title' => $this->getTitleInput($v),\n 'sort_order' => $this->getSortOrderInput($v),\n 'allowspecific' => $this->getYesNoSelectBox($v, 'allowspecific'),\n 'specificcountry' => $this->getSpecificCountriesSelectBox($v),\n 'use_authorize' => $this->getYesNoSelectBox($v, 'use_authorize'),\n 'use_initialfee_authorize' => $this->getYesNoSelectBox($v, 'use_initialfee_authorize'),\n );\n\n }\n }\n\n if ($includeDisabled) {\n\n // Add the \"disabled\" row\n $result[0] = array(\n 'confid' => 0,\n 'name' => $this->__('Disable X-Payments payment method'),\n 'active_checkbox' => array(\n 'id' => 'active-checkbox-0',\n 'name' => 'payment_methods[active][0]',\n 'value' => 'Y',\n 'class' => 'pm-disable pointer ' . ($count++ % 2 == 0 ? 'even' : 'odd'),\n ),\n );\n\n if (0 == $activeCount) {\n $result[0]['active_checkbox']['checked'] = 'checked';\n }\n }\n\n return $result;\n }", "function assign_payment_options()\r\n{\r\n global $app, $grid, $step, $smarty, $payment_controller;\r\n\r\n require_once('payment_module.class.php');\r\n require_once('snippet.class.php');\r\n\r\n // find active payment modules\r\n $tbl = new Payment_Module;\r\n $modules = $tbl->find_all('where is_enabled order by `display_order`, `name`');\r\n\r\n // set values for each module\r\n for ($i = 0; $i < count($modules); $i++) {\r\n $module =& $modules[$i];\r\n\r\n // get the module and it's configuration\r\n $module->require_class();\r\n $obj = new $module->module_key;\r\n $module->conf = $obj->configuration();\r\n \r\n // compute amount\r\n $grid_title = Snippet::snippet_text('grid_title', $grid->id());\r\n \r\n $module->action = $app->url();\r\n\r\n // set hidden fields based on module type\r\n switch ($module->module_key) {\r\n\r\n case 'authorizenet':\r\n $module->hidden = array(\r\n 'module_key' => $module->module_key,\r\n 'step' => param('step'),\r\n );\r\n if ($payment_controller == 'renew') {\r\n $module->hidden['id'] = $_REQUEST['id'];\r\n $module->hidden['digest'] = $_REQUEST['digest'];\r\n $module->hidden['email'] = $_REQUEST['email'];\r\n }\r\n break;\r\n\r\n case 'cc':\r\n $module->hidden = array(\r\n 'module_key' => $module->module_key,\r\n 'step' => param('step'),\r\n );\r\n if ($payment_controller == 'renew') {\r\n $module->hidden['id'] = $_REQUEST['id'];\r\n $module->hidden['digest'] = $_REQUEST['digest'];\r\n $module->hidden['email'] = $_REQUEST['email'];\r\n }\r\n break;\r\n\r\n case 'offline':\r\n $module->hidden = array(\r\n 'module_key' => $module->module_key,\r\n 'step' => param('step'),\r\n );\r\n if ($payment_controller == 'renew') {\r\n $module->hidden['id'] = $_REQUEST['id'];\r\n $module->hidden['digest'] = $_REQUEST['digest'];\r\n $module->hidden['email'] = $_REQUEST['email'];\r\n }\r\n break;\r\n\r\n case 'paypal':\r\n $module->action = $module->conf['MODULE_PAYMENT_PAYPAL_URL'];\r\n $module->hidden = array(\r\n 'amount' => param('amount'),\r\n 'business' => $module->conf['MODULE_PAYMENT_PAYPAL_ID'],\r\n 'cancel_return' => payment_controller_url(),\r\n 'cmd' => '_xclick',\r\n 'currency_code' => $module->conf['MODULE_PAYMENT_PAYPAL_CURRENCY'],\r\n 'custom' => $_SESSION['payment_id'].':'.session_id(),\r\n 'item_name' => \"$grid_title: \" . param('url'),\r\n 'no_note' => '1',\r\n 'NotifyURL' => $app->url('/paypal_ipn.php', array('payment_id' => $_SESSION['payment_id']), true, true),\r\n 'no_shipping' => '1',\r\n 'return' => $app->url('/paypal_return.php', array('payment_id' => $_SESSION['payment_id']), true, true),\r\n 'rm' => '2',\r\n );\r\n if ($module->conf['MODULE_PAYMENT_PAYPAL_USE_IPN'])\r\n $module->hidden['notify_url'] = $app->url('/paypal_ipn.php', false, true, true);\r\n break;\r\n case 'instamojo':\r\n \r\n $amount_var = round(($_SESSION['inrRate'] * param('amount')),2);\r\n $module->action = $module->conf['MODULE_PAYMENT_INSTAMOJO_FORM_URL'].'?a='.base64_encode($amount_var);\r\n $module->hidden = array(\r\n 'amount' => base64_encode($amount_var.\"_\"),\r\n 'email' => param('email'),\r\n 'w' => param('w'),\r\n 'h' => param('h'),\r\n 'x' => param('x'),\r\n 'y' => param('y')\r\n );\r\n \r\n break;\r\n\r\n case 'nochex':\r\n $module->action = $module->conf['MODULE_PAYMENT_NOCHEX_URL'];\r\n $module->hidden = array(\r\n 'email' => $module->conf['MODULE_PAYMENT_NOCHEX_ID'],\r\n 'amount' => param('amount'),\r\n 'ordernumber' => $_SESSION['payment_id'],\r\n 'description' => \"$grid_title: \" . param('url'),\r\n 'returnurl' => $app->url('/nochex_return.php', array('payment_id' => $_SESSION['payment_id']), true, true),\r\n 'cancelurl' => payment_controller_url(),\r\n 'email_address_sender' => param('email'),\r\n );\r\n if ($module->conf['MODULE_PAYMENT_NOCHEX_USE_APC'])\r\n $module->hidden['responderurl'] = $app->url('/nochex_apc.php', false, true, true);\r\n break;\r\n\r\n case 'psigate':\r\n $module->hidden = array(\r\n 'module_key' => $module->module_key,\r\n 'step' => param('step'),\r\n );\r\n if ($payment_controller == 'renew') {\r\n $module->hidden['id'] = $_REQUEST['id'];\r\n $module->hidden['digest'] = $_REQUEST['digest'];\r\n $module->hidden['email'] = $_REQUEST['email'];\r\n }\r\n break;\r\n\r\n case 'ipayment':\r\n $module->hidden = array(\r\n 'module_key' => $module->module_key,\r\n 'step' => param('step'),\r\n );\r\n if ($payment_controller == 'renew') {\r\n $module->hidden['id'] = $_REQUEST['id'];\r\n $module->hidden['digest'] = $_REQUEST['digest'];\r\n $module->hidden['email'] = $_REQUEST['email'];\r\n }\r\n break;\r\n\r\n case 'secpay':\r\n $test_status = $module->conf['MODULE_PAYMENT_SECPAY_TEST_STATUS'];\r\n if ($test_status != 'true' && $test_status != 'false')\r\n $test_status = 'live';\r\n $module->action = $module->conf['MODULE_PAYMENT_SECPAY_URL'];\r\n $module->hidden = array(\r\n 'merchant' => $module->conf['MODULE_PAYMENT_SECPAY_MERCHANT_ID'],\r\n 'trans_id' => session_id(),\r\n 'amount' => param('amount'),\r\n 'callback' => $app->url('/secpay_return.php', false, true, true),\r\n 'options' => \"test_status=$test_status\",\r\n );\r\n if ($module->conf['MODULE_PAYMENT_SECPAY_CURRENCY'])\r\n $module->hidden['currency'] = strtoupper($module->conf['MODULE_PAYMENT_SECPAY_CURRENCY']);\r\n if ($module->conf['MODULE_PAYMENT_SECPAY_REMOTE_PASSWORD'])\r\n $module->hidden['digest'] = strtolower(md5(\r\n $module->hidden['trans_id'] .\r\n $module->hidden['amount'] .\r\n $module->conf['MODULE_PAYMENT_SECPAY_REMOTE_PASSWORD']\r\n ));\r\n break;\r\n\r\n case 'pm2checkout':\r\n $module->action = $module->conf['MODULE_PAYMENT_2CHECKOUT_URL'];\r\n $module->hidden = array(\r\n 'sid' => $module->conf['MODULE_PAYMENT_2CHECKOUT_LOGIN'],\r\n 'total' => sprintf('%.2f', param('amount')),\r\n 'cart_order_id' => $_SESSION['payment_id'],\r\n 'return_url' => $app->url('/pm2checkout_return.php', false, true, true),\r\n 'merchant_order_id' => $_SESSION['payment_id'],\r\n 'pay_method' => 'cc',\r\n 'c_prod' => $module->conf['MODULE_PAYMENT_2CHECKOUT_C_PROD'],\r\n 'id_type' => $module->conf['MODULE_PAYMENT_2CHECKOUT_ID_TYPE'],\r\n 'session_id' => session_id()\r\n );\r\n if ($module->conf['MODULE_PAYMENT_2CHECKOUT_TESTMODE'])\r\n $module->hidden['demo'] = 'Y';\r\n break;\r\n\r\n case 'egold':\r\n $payee_name = $module->conf['MODULE_PAYMENT_EGOLD_PAYEE_NAME'];\r\n if (empty($payee_name))\r\n $payee_name = $app->setting->site_name;\r\n $module->action = $module->conf['MODULE_PAYMENT_EGOLD_URL'];\r\n $module->hidden = array(\r\n 'PAYEE_ACCOUNT' => $module->conf['MODULE_PAYMENT_EGOLD_PAYEE_ACCOUNT'],\r\n 'PAYEE_NAME' => $module->conf['MODULE_PAYMENT_EGOLD_PAYEE_NAME'],\r\n 'PAYMENT_AMOUNT' => param('amount'),\r\n 'PAYMENT_UNITS' => $module->conf['MODULE_PAYMENT_EGOLD_PAYMENT_UNITS'],\r\n 'PAYMENT_METAL_ID' => $module->conf['MODULE_PAYMENT_EGOLD_PAYMENT_METAL_ID'],\r\n 'PAYMENT_ID' => $_SESSION['payment_id'],\r\n 'STATUS_URL' => $app->url('/egold_verify.php', array('payment_id' => $_SESSION['payment_id']), true, true),\r\n 'PAYMENT_URL' => $app->url('/egold_return.php', array('payment_id' => $_SESSION['payment_id']), true, true),\r\n 'PAYMENT_URL_METHOD' => 'POST',\r\n 'NOPAYMENT_URL' => payment_controller_url(),\r\n 'NOPAYMENT_URL_METHOD' => 'GET',\r\n 'BAGGAGE_FIELDS' => '',\r\n );\r\n break;\r\n\r\n }\r\n }\r\n\r\n $smarty->assign_by_ref('modules', $modules);\r\n\r\n}", "public function sync_offers()\n {\n $r = wp_remote_get(self::sync_offers_url, array(\n 'timeout' => 15\n ));\n\n if(!is_wp_error($r))\n update_option(__class__.'_offers', json_decode($r['body']));\n }", "public function __construct() {\r\n\r\n$this->id = 'weaccept'; // payment gateway plugin ID\r\n\t$this->icon = ''; // URL of the icon that will be displayed on checkout page near your gateway name\r\n\t$this->has_fields = true; // in case you need a custom credit card form\r\n\t$this->method_title = 'Accept/paymob Gateway';\r\n\t$this->method_description = 'Description of WeAccept/paymob payment gateway'; // will be displayed on the options page\r\n\r\n\t// gateways can support subscriptions, refunds, saved payment methods,\r\n\t// but in this tutorial we begin with simple payments\r\n\t$this->supports = array(\r\n\t\t'products'\r\n\t);\r\n\r\n\t// Method with all the options fields\r\n\t$this->init_form_fields();\r\n\r\n\t// Load the settings.\r\n\t$this->init_settings();\r\n\t$this->title = $this->get_option( 'title' );\r\n\t$this->description = $this->get_option( 'description' );\r\n\t$this->enabled = $this->get_option( 'enabled' );\r\n\t$this->testmode = 'yes' === $this->get_option( 'testmode' );\r\n\t$this->private_key = $this->testmode ? $this->get_option( 'test_private_key' ) : $this->get_option( 'private_key' );\r\n\t$this->iframe_id = $this->get_option('iframe_id');\r\n\t$this->integration_id = $this->get_option('integration_id');\r\n\r\n\r\n\r\n\t// This action hook saves the settings\r\n\tadd_action( 'woocommerce_update_options_payment_gateways_' . $this->id, array( $this, 'process_admin_options' ) );\r\n\r\n\t// We need custom JavaScript to obtain a token\r\n\tadd_action( 'wp_enqueue_scripts', array( $this, 'payment_scripts' ) );\r\n\r\n\t// You can also register a webhook here\r\n\t// add_action( 'woocommerce_api_{webhook name}', array( $this, 'webhook' ) );\r\n\r\n \t\t}", "public function sync()\n {\n /** @var $helper Mailigen_Synchronizer_Helper_Log */\n $log = Mage::helper('mailigen_synchronizer/log');\n $log->setLogFile(Mailigen_Synchronizer_Helper_Log::SYNC_LOG_FILE);\n /** @var $helper Mailigen_Synchronizer_Helper_Data */\n $helper = Mage::helper('mailigen_synchronizer');\n if (!$helper->isEnabled()) {\n return 'Module is disabled in config';\n }\n\n /**\n * Synchronize Guests\n */\n try {\n /** @var $guestSync Mailigen_Synchronizer_Model_Sync_Guest */\n $guestSync = Mage::getModel('mailigen_synchronizer/sync_guest');\n $guestSync->sync();\n } catch (Exception $e) {\n $log->logException($e);\n }\n\n /**\n * Synchronize Customers\n */\n try {\n /** @var $customerSync Mailigen_Synchronizer_Model_Sync_Customer */\n $customerSync = Mage::getModel('mailigen_synchronizer/sync_customer');\n $customerSync->sync();\n } catch (Exception $e) {\n $log->logException($e);\n }\n\n return $this;\n }", "public function updateMarketPlaceConfiguration()\n {\n if ($xml = fopen(self::MP_CONF_LENGOW, 'r')) {\n $markeplace = Mage::getModel('lensync/marketplacev2');\n $handle = fopen(Mage::getModuleDir('etc', 'Lengow_Sync').DS.$markeplace::$XML_MARKETPLACES, 'w');\n stream_copy_to_stream($xml, $handle);\n fclose($handle);\n Mage::getModel('core/config')->saveConfig('lensync/hidden/last_synchro', date('Y-m-d'));\n }\n }", "private function setConfigurationProperties()\n {\n $this->api_live = Configuration::get('PAYPLUG_LIVE_API_KEY');\n $this->api_test = Configuration::get('PAYPLUG_TEST_API_KEY');\n\n // Set the uninstall notice according to the \"keep_cards\" configuration\n $this->confirmUninstall = $this->l('Are you sure you wish to uninstall this module and delete your settings?') . ' ';\n if ((int)Configuration::get('PAYPLUG_KEEP_CARDS') == 1) {\n $this->confirmUninstall .= $this->l('All the registered cards of your customer will be kept.');\n } else {\n $this->confirmUninstall .= $this->l('All the registered cards of your customer will be deleted.');\n }\n\n $this->current_api_key = $this->getCurrentApiKey();\n $this->email = Configuration::get('PAYPLUG_EMAIL');\n $this->img_lang = $this->context->language->iso_code === 'it' ? 'it' : 'default';\n $this->ssl_enable = Configuration::get('PS_SSL_ENABLED');\n\n if ((!isset($this->email) || (!isset($this->api_live) && empty($this->api_test)))) {\n $this->warning = $this->l('In order to accept payments you need to configure your module by connecting your PayPlug account.');\n }\n\n $this->payment_status = array(\n 1 => $this->l('not paid'),\n 2 => $this->l('paid'),\n 3 => $this->l('failed'),\n 4 => $this->l('partially refunded'),\n 5 => $this->l('refunded'),\n 6 => $this->l('on going'),\n 7 => $this->l('cancelled'),\n 8 => $this->l('authorized'),\n 9 => $this->l('authorization expired'),\n );\n }", "function masari_init() {\n if (!class_exists('WC_Payment_Gateway')) return;\n\n // If we made it this far, then include our Gateway Class\n require_once('include/class-masari-gateway.php');\n\n // Create a new instance of the gateway so we have static variables set up\n new Masari_Gateway($add_action=false);\n\n // Include our Admin interface class\n require_once('include/admin/class-masari-admin-interface.php');\n\n add_filter('woocommerce_payment_gateways', 'masari_gateway');\n function masari_gateway($methods) {\n $methods[] = 'Masari_Gateway';\n return $methods;\n }\n\n add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'masari_payment');\n function masari_payment($links) {\n $plugin_links = array(\n '<a href=\"'.admin_url('admin.php?page=masari_gateway_settings').'\">'.__('Settings', 'masari_gateway').'</a>'\n );\n return array_merge($plugin_links, $links);\n }\n\n add_filter('cron_schedules', 'masari_cron_add_one_minute');\n function masari_cron_add_one_minute($schedules) {\n $schedules['one_minute'] = array(\n 'interval' => 60,\n 'display' => __('Once every minute', 'masari_gateway')\n );\n return $schedules;\n }\n\n add_action('wp', 'masari_activate_cron');\n function masari_activate_cron() {\n if(!wp_next_scheduled('masari_update_event')) {\n wp_schedule_event(time(), 'one_minute', 'masari_update_event');\n }\n }\n\n add_action('masari_update_event', 'masari_update_event');\n function masari_update_event() {\n Masari_Gateway::do_update_event();\n }\n\n add_action('woocommerce_thankyou_'.Masari_Gateway::get_id(), 'masari_order_confirm_page');\n add_action('woocommerce_order_details_after_order_table', 'masari_order_page');\n add_action('woocommerce_email_after_order_table', 'masari_order_email');\n\n function masari_order_confirm_page($order_id) {\n Masari_Gateway::customer_order_page($order_id);\n }\n function masari_order_page($order) {\n if(!is_wc_endpoint_url('order-received'))\n Masari_Gateway::customer_order_page($order);\n }\n function masari_order_email($order) {\n Masari_Gateway::customer_order_email($order);\n }\n\n add_action('wc_ajax_masari_gateway_payment_details', 'masari_get_payment_details_ajax');\n function masari_get_payment_details_ajax() {\n Masari_Gateway::get_payment_details_ajax();\n }\n\n add_filter('woocommerce_currencies', 'masari_add_currency');\n function masari_add_currency($currencies) {\n $currencies['Masari'] = __('Masari', 'masari_gateway');\n return $currencies;\n }\n\n add_filter('woocommerce_currency_symbol', 'masari_add_currency_symbol', 10, 2);\n function masari_add_currency_symbol($currency_symbol, $currency) {\n switch ($currency) {\n case 'Masari':\n $currency_symbol = 'MSR';\n break;\n }\n return $currency_symbol;\n }\n\n if(Masari_Gateway::use_masari_price()) {\n\n // This filter will replace all prices with amount in Masari (live rates)\n add_filter('wc_price', 'masari_live_price_format', 10, 3);\n function masari_live_price_format($price_html, $price_float, $args) {\n if(!isset($args['currency']) || !$args['currency']) {\n global $woocommerce;\n $currency = strtoupper(get_woocommerce_currency());\n } else {\n $currency = strtoupper($args['currency']);\n }\n return Masari_Gateway::convert_wc_price($price_float, $currency);\n }\n\n // These filters will replace the live rate with the exchange rate locked in for the order\n // We must be careful to hit all the hooks for price displays associated with an order,\n // else the exchange rate can change dynamically (which it should for an order)\n add_filter('woocommerce_order_formatted_line_subtotal', 'masari_order_item_price_format', 10, 3);\n function masari_order_item_price_format($price_html, $item, $order) {\n return Masari_Gateway::convert_wc_price_order($price_html, $order);\n }\n\n add_filter('woocommerce_get_formatted_order_total', 'masari_order_total_price_format', 10, 2);\n function masari_order_total_price_format($price_html, $order) {\n return Masari_Gateway::convert_wc_price_order($price_html, $order);\n }\n\n add_filter('woocommerce_get_order_item_totals', 'masari_order_totals_price_format', 10, 3);\n function masari_order_totals_price_format($total_rows, $order, $tax_display) {\n foreach($total_rows as &$row) {\n $price_html = $row['value'];\n $row['value'] = Masari_Gateway::convert_wc_price_order($price_html, $order);\n }\n return $total_rows;\n }\n\n }\n\n add_action('wp_enqueue_scripts', 'masari_enqueue_scripts');\n function masari_enqueue_scripts() {\n if(Masari_Gateway::use_masari_price())\n wp_dequeue_script('wc-cart-fragments');\n if(Masari_Gateway::use_qr_code())\n wp_enqueue_script('masari-qr-code', MASARI_GATEWAY_PLUGIN_URL.'assets/js/qrcode.min.js');\n\n wp_enqueue_script('masari-clipboard-js', MASARI_GATEWAY_PLUGIN_URL.'assets/js/clipboard.min.js');\n wp_enqueue_script('masari-gateway', MASARI_GATEWAY_PLUGIN_URL.'assets/js/masari-gateway-order-page.js');\n wp_enqueue_style('masari-gateway', MASARI_GATEWAY_PLUGIN_URL.'assets/css/masari-gateway-order-page.css');\n }\n\n // [masari-price currency=\"USD\"]\n // currency: BTC, GBP, etc\n // if no none, then default store currency\n function masari_price_func( $atts ) {\n global $woocommerce;\n $a = shortcode_atts( array(\n 'currency' => get_woocommerce_currency()\n ), $atts );\n\n $currency = strtoupper($a['currency']);\n $rate = Masari_Gateway::get_live_rate($currency);\n if($currency == 'BTC')\n $rate_formatted = sprintf('%.8f', $rate / 1e8);\n else\n $rate_formatted = sprintf('%.5f', $rate / 1e8);\n\n return \"<span class=\\\"masari-price\\\">1 MSR = $rate_formatted $currency</span>\";\n }\n add_shortcode('masari-price', 'masari_price_func');\n\n\n // [masari-accepted-here]\n function masari_accepted_func($atts) {\n $height = $atts['height'];\n $width = $atts['width'];\n return '<img src=\"'.MASARI_GATEWAY_PLUGIN_URL.'assets/images/masari-accepted-here.png\" height=\"'.$height.'\" width=\"'.$width.'\"/>';\n }\n add_shortcode('masari-accepted-here', 'masari_accepted_func');\n\n}", "function wpad_sync_on_changes() {\n\tglobal $config;\n\n\tif (is_array($config['installedpackages']['wpadsync']['config'])) {\n\t\t$wpad_sync = $config['installedpackages']['wpadsync']['config'][0];\n\t\t$synconchanges = $wpad_sync['synconchanges'];\n\t\t$synctimeout = $wpad_sync['synctimeout'] ?: '250';\n\t\tswitch ($synconchanges) {\n\t\t\tcase \"manual\":\n\t\t\t\tif (is_array($wpad_sync['row'])) {\n\t\t\t\t\t$rs = $wpad_sync['row'];\n\t\t\t\t} else {\n\t\t\t\t\tlog_error(\"[wpad] XMLRPC sync is enabled but there are no hosts configured as replication targets.\");\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\tcase \"auto\":\n\t\t\t\tif (is_array($config['hasync'])) {\n\t\t\t\t\t$system_carp = $config['hasync'];\n\t\t\t\t\t$rs[0]['ipaddress'] = $system_carp['synchronizetoip'];\n\t\t\t\t\t$rs[0]['username'] = $system_carp['username'];\n\t\t\t\t\t$rs[0]['password'] = $system_carp['password'];\n\t\t\t\t\t$rs[0]['syncdestinenable'] = FALSE;\n\n\t\t\t\t\t// XMLRPC sync is currently only supported over connections using the same protocol and port as this system\n\t\t\t\t\tif ($config['system']['webgui']['protocol'] == \"http\") {\n\t\t\t\t\t\t$rs[0]['syncprotocol'] = \"http\";\n\t\t\t\t\t\t$rs[0]['syncport'] = $config['system']['webgui']['port'] ?: '80';\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$rs[0]['syncprotocol'] = \"https\";\n\t\t\t\t\t\t$rs[0]['syncport'] = $config['system']['webgui']['port'] ?: '443';\n\t\t\t\t\t}\n\t\t\t\t\tif ($system_carp['synchronizetoip'] == \"\") {\n\t\t\t\t\t\tlog_error(\"[wpad] XMLRPC CARP/HA sync is enabled but there are no system backup hosts configured as replication targets.\");\n\t\t\t\t\t\treturn;\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$rs[0]['syncdestinenable'] = TRUE;\n\t\t\t\t\t}\n\t\t\t\t} else {\n\t\t\t\t\tlog_error(\"[wpad] XMLRPC CARP/HA sync is enabled but there are no system backup hosts configured as replication targets.\");\n\t\t\t\t\treturn;\n\t\t\t\t}\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\treturn;\n\t\t\t\tbreak;\n\t\t}\n\t\tif (is_array($rs)) {\n\t\t\tlog_error(\"[wpad] XMLRPC sync is starting.\");\n\t\t\tforeach ($rs as $sh) {\n\t\t\t\t// Only sync enabled replication targets\n\t\t\t\tif ($sh['syncdestinenable']) {\n\t\t\t\t\t$sync_to_ip = $sh['ipaddress'];\n\t\t\t\t\t$port = $sh['syncport'];\n\t\t\t\t\t$username = $sh['username'] ?: 'admin';\n\t\t\t\t\t$password = $sh['password'];\n\t\t\t\t\t$protocol = $sh['syncprotocol'];\n\n\t\t\t\t\t$error = '';\n\t\t\t\t\t$valid = TRUE;\n\n\t\t\t\t\tif ($password == \"\") {\n\t\t\t\t\t\t$error = \"Password parameter is empty. \";\n\t\t\t\t\t\t$valid = FALSE;\n\t\t\t\t\t}\n\t\t\t\t\tif (!is_ipaddr($sync_to_ip) && !is_hostname($sync_to_ip) && !is_domain($sync_to_ip)) {\n\t\t\t\t\t\t$error .= \"Misconfigured Replication Target IP Address or Hostname. \";\n\t\t\t\t\t\t$valid = FALSE;\n\t\t\t\t\t}\n\t\t\t\t\tif (!is_port($port)) {\n\t\t\t\t\t\t$error .= \"Misconfigured Replication Target Port. \";\n\t\t\t\t\t\t$valid = FALSE;\n\t\t\t\t\t}\n\t\t\t\t\tif ($valid) {\n\t\t\t\t\t\twpad_do_xmlrpc_sync($sync_to_ip, $port, $protocol, $username, $password, $synctimeout);\n\t\t\t\t\t} else {\n\t\t\t\t\t\tlog_error(\"[wpad] XMLRPC sync with '{$sync_to_ip}' aborted due to the following error(s): {$error}\");\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tlog_error(\"[wpad] XMLRPC sync completed.\");\n\t\t}\n \t}\n}", "public function handle()\n {\n PayNL::syncPaymentMethods();\n }", "private function updateRublonSettings() {\n\n\t\t$this->_clearConfig();\n\t\t$this->_saveConfig('rublon_system_token', $this->getSystemToken());\n\t\t$this->_saveConfig('rublon_secret_key', $this->getSecretKey());\n\n\t}", "public function updateOrderLimits($observer = null)\n {\n $configs = array(\n 'PBI' => 'afterpaypayovertime',\n 'PAY_BY_INSTALLMENT' => 'afterpaypayovertime',\n // 'PAD' => 'afterpaybeforeyoupay',\n );\n\n $website_param = Mage::app()->getRequest()->getParam('website');\n\n foreach ($configs as $tla => $payment) {\n\n $base = new Afterpay_Afterpay_Model_Method_Payovertime();\n\n if (strlen($code = Mage::getSingleton('adminhtml/config_data')->getWebsite())) // website level\n {\n\n $website_code = Mage::getSingleton('adminhtml/config_data')->getWebsite();\n $website_id = Mage::getModel('core/website')->load($website_code)->getId();\n \n if (!Mage::getStoreConfigFlag('payment/' . $payment . '/active', $website_id)) {\n continue;\n }\n\n $overrides = array('website_id' => $website_id);\n $level = 'websites';\n $target_id = $website_id;\n }\n else if( !empty( $website_param ) ) {\n\n $website_id = $website_param;\n \n if (!Mage::getStoreConfigFlag('payment/' . $payment . '/active', $website_id)) {\n continue;\n }\n\n $overrides = array('website_id' => $website_id);\n $level = 'websites';\n $target_id = $website_id;\n }\n else // default level\n {\n $target_id = 0;\n $level = 'default';\n \n if (!Mage::getStoreConfigFlag('payment/' . $payment . '/active')) {\n continue;\n }\n\n $website_code = Mage::getSingleton('adminhtml/config_data')->getWebsite();\n $overrides = array();\n }\n\n $values = $base->getPaymentAmounts($payment, $tla, $overrides);\n \n //skip if there is no values\n if( !$values ) {\n continue;\n }\n\n $this->_doPaymentLimitUpdate($payment, $values, $level, $target_id); \n }\n\n // after changing system configuration, we need to clear the config cache\n Mage::app()->cleanCache(array(Mage_Core_Model_Config::CACHE_TAG));\n }", "public function saveConfiguration(){\n //Si le formulaire a été envoyé \n if(Tools::isSubmit(\"submit_mysiteadvice_form\")){\n\n // Récupère la valeur POST associée à la clé passée en paramètre\n $enable_advices = Tools::getValue('enable_advices');\n // Sauvegarde des valeurs (clé en premier paramètre et valeur en second)\n // updateValue crée une nouvelle entrée dans la table de config ou la met à jour \n Configuration::updateValue('MYADVICE_ADVICES', $enable_advices);\n\n // Assigne une variable de confirmation à l'objet Smarty\n $this->context->smarty->assign('confirmation', 'ok');\n }\n }", "function mollom_config() {\t\r\n\tglobal $wpdb, $wp_db_version, $wp_roles;\r\n\t\r\n\t$ms = array();\r\n\t$result = '';\r\n\t$tmp_publickey = '';\r\n\t$tmp_privatekey = '';\r\n\t\t\t\r\n\tif(isset($_POST['submit'])) {\r\n\t\tif (function_exists('check_admin_referer')) {\r\n\t\t\tcheck_admin_referer('mollom-action-configuration');\r\n\t\t}\r\n\t\t\t\r\n\t\tif (function_exists('current_user_can') && !current_user_can('manage_options')) {\r\n\t\t\tdie(__('Cheatin&#8217; uh?'));\r\n\t\t}\r\n\t\t\r\n\t\t$privatekey = $_POST['mollom-private-key'];\r\n\t\t$publickey = $_POST['mollom-public-key'];\r\n\t\t$reverseproxy_addresses = $_POST['mollom-reverseproxy-addresses'];\r\n\t\t\t\r\n\t\tif (empty($privatekey)) {\r\n\t\t\t$ms[] = 'privatekeyempty';\r\n\t\t}\r\n\t\t\t\r\n\t\tif (empty($publickey)) {\r\n\t\t\t$ms[] = 'publickeyempty';\r\n\t\t}\r\n\r\n\t\tif (!empty($privatekey) && !empty($publickey)) {\r\n\t\t\t// store previous values in temporary buffer\r\n\t\t\t$tmp_privatekey = get_option('mollom_private_key');\r\n\t\t\t$tmp_publickey = get_option('mollom_public_key');\r\n\t\t\t\r\n\t\t\tupdate_option('mollom_private_key', $privatekey);\r\n\t\t\tupdate_option('mollom_public_key', $publickey);\r\n\t\t\t\r\n\t\t\t$result = mollom('mollom.verifyKey');\r\n\t\t}\r\n\t\t\r\n\t\t// set the policy mode for the site\r\n\t\tif(isset($_POST['sitepolicy'])) {\r\n\t\t\tif ($_POST['sitepolicy'] == on) {\r\n\t\t\t\tupdate_option('mollom_site_policy', true);\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\t\tupdate_option('mollom_site_policy', false);\r\n\t\t}\r\n\t\t\r\n\t\t// set restore of database (purge all mollom data)\r\n\t\t// deprecated. Backward compatibility only.\r\n\t\tif ($wp_db_version < 8645) {\r\n\t\t\tif(isset($_POST['mollomrestore'])) {\r\n\t\t\t\tif ($_POST['mollomrestore'] == on) {\r\n\t\t\t\t\tupdate_option('mollom_dbrestore', true);\r\n\t\t\t\t}\r\n\t\t\t} else {\r\n\t\t\t\t\tupdate_option('mollom_dbrestore', false);\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t// set reserve proxy mode on/off\r\n\t\tif(isset($_POST['mollomreverseproxy'])) {\r\n\t\t\tif ($_POST['mollomreverseproxy'] == on) {\r\n\t\t\t\tupdate_option('mollom_reverseproxy', true);\r\n\t\t\t}\r\n\t\t} else {\r\n\t\t\t\tupdate_option('mollom_reverseproxy', false);\r\n\t\t}\t\t\r\n\t\t\r\n\t\t// set a commaseperated list of reverse proxy addresses. Needed to determine visitor's valid ip.\r\n\t\tif (!empty($reverseproxy_addresses)) {\r\n\t\t\tupdate_option('mollom_reverseproxy_addresses', $reverseproxy_addresses);\r\n\t\t}\r\n\r\n\t\t// set the user roles that are exempt from the mollom comment check\r\n\t\tif (isset($_POST['mollomroles'])) {\r\n\t\t\tupdate_option('mollom_roles', serialize($_POST['mollomroles']));\r\n\t\t}\r\n\t} else {\r\n\t\t$privatekey = get_option('mollom_private_key');\r\n\t\t$publickey = get_option('mollom_public_key');\r\n\t\t\r\n\t\tif (!empty($privatekey) && !empty($publickey)) {\r\n\t\t\t$result = mollom('mollom.verifyKey');\r\n\t\t} else {\r\n\t\t\tif (empty($privatekey)) {\r\n\t\t\t\t$ms[] = 'privatekeyempty';\r\n\t\t\t}\r\n\t\t\t\t\r\n\t\t\tif (empty($publickey)) {\r\n\t\t\t\t$ms[] = 'publickeyempty';\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\t\r\n\t// evaluate the result, if it is a WP_Error object or a bool\r\n\tif (function_exists('is_wp_error') && is_wp_error($result)) {\r\n\t\tif (($result->get_error_code()) == MOLLOM_ERROR) {\r\n\t\t\t$ms[] = 'mollomerror';\r\n\t\t\t// reset the wordpress variables to whatever (empty or\r\n\t\t\t// previous value) is in the buffer if mollom returned error code 1000\r\n\t\t\tupdate_option('mollom_private_key', $tmp_privatekey);\r\n\t\t\tupdate_option('mollom_public_key', $tmp_publickey);\r\n\t\t}\r\n\t\t\r\n\t\tif (($result->get_error_code()) != MOLLOM_ERROR) {\t\r\n\t\t\t $ms[] = 'networkerror';\r\n\t\t}\r\n\t\t\r\n\t\t$errormsg = $result->get_error_message();\r\n\t}\r\n\r\n\tif (is_bool($result)) {\r\n\t\t$ms[] = 'correctkey';\r\n\t}\r\n\t\r\n\t$messages = array(\r\n\t\t\t\t'privatekeyempty' => array('color' => 'aa0', 'text' => __('Your private key is empty.', MOLLOM_I8N)),\r\n\t\t\t\t'publickeyempty' => array('color' => 'aa0', 'text' => __('Your public key is empty.', MOLLOM_I8N)),\r\n\t\t\t\t'wrongkey' => array('color' => 'd22', 'text' => __('The key you provided is wrong.', MOLLOM_I8N)),\r\n\t\t\t\t'mollomerror' => array('color' => 'd22', 'text' => sprintf(__('Mollom error: %s', MOLLOM_I8N), $errormsg)),\r\n\t\t\t\t'networkerror' => array('color' =>'d22', 'text' => sprintf(__('Network error: %s', MOLLOM_I8N), $errormsg)),\r\n\t\t\t\t'correctkey' => array('color' => '2d2', 'text' => __('Your keys are valid.', MOLLOM_I8N))\r\n\t\t\t\t);\r\n\t?>\r\n<style type=\"text/css\">\r\n#wpcontent select {\r\n\theight: 10em;\r\n\twidth: 140px;\r\n}\r\n</style>\r\n<div class=\"wrap\">\r\n<h2><?php _e('Mollom Configuration', MOLLOM_I8N); ?></h2>\r\n<div class=\"narrow\">\r\n<?php if ( !empty($_POST ) ) : ?>\r\n<div id=\"message\" class=\"updated fade\"><p><strong><?php _e('Options saved.') ?></strong></p></div>\r\n<?php endif; ?>\r\n<form action=\"\" method=\"post\" id=\"mollom_configuration\" style=\"margin: auto; width: 420px;\">\r\n\t<?php\r\n\t\tif ( !function_exists('wp_nonce_field') ) {\r\n\t\t\tfunction mollom_nonce_field($action = -1) { return; }\r\n\t\t\t$mollom_nonce = -1;\r\n\t\t} else {\r\n\t\t\tfunction mollom_nonce_field($action = -1) { return wp_nonce_field($action); }\r\n\t\t\t$mollom_nonce = 'mollom-action-configuration';\r\n\t\t}\r\n\r\n\t\tmollom_nonce_field($mollom_nonce);\r\n\t?>\r\n\t<p><?php _e('<a href=\"http://mollom.com\" title=\"Mollom\">Mollom</a> is a web service that helps you identify content quality and, more importantly, helps you stop comment and contact form spam. When moderation becomes easier, you can spend more time and energy to interact with your web community.', MOLLOM_I8N); ?></p>\t\r\n\t<p><?php _e('You need a public and a private key before you can make use of Mollom. <a href=\"http://mollom.com/user/register\">Register</a> with Mollom to get your keys.', MOLLOM_I8N); ?></p>\r\n\t<?php if(!empty($ms)) {\r\n\t\tforeach ( $ms as $m ) : ?>\r\n\t<p style=\"padding: .5em; background-color: #<?php echo $messages[$m]['color']; ?>; color: #fff; font-weight: bold;\"><?php echo $messages[$m]['text']; ?></p>\r\n\t<?php endforeach; } ?>\r\n\t<h3><label><?php _e('Public key', MOLLOM_I8N); ?></label></h3>\r\n\t<p><input type=\"text\" size=\"35\" maxlength=\"32\" name=\"mollom-public-key\" id=\"mollom-public-key\" value=\"<?php echo get_option('mollom_public_key'); ?>\" /></p>\r\n\t<h3><label><?php _e('Private key', MOLLOM_I8N); ?></label></h3>\r\n\t<p><input type=\"text\" size=\"35\" maxlength=\"32\" name=\"mollom-private-key\" id=\"mollom-private-key\" value=\"<?php echo get_option('mollom_private_key'); ?>\" /></p>\r\n\t<h3><label><?php _e('User roles', MOLLOM_I8N); ?></label></h3>\r\n\t<p><?php _e('Select the roles you want to exclude from the mandatory Mollom check. Default: all roles are exempt.', MOLLOM_I8N); ?></p>\r\n\t<ul class=\"mollom-roles\">\r\n\t<?php \r\n\t\t$mollom_roles = unserialize(get_option('mollom_roles'));\r\n\t\tforeach ($wp_roles->roles as $role => $data) { ?>\r\n\t\t<li><input type=\"checkbox\" name=\"mollomroles[]\" value=\"<?php echo $role; ?>\" <?php if(in_array($role, $mollom_roles)) { echo \" checked\"; }?> /> <?php echo $role; ?></li>\r\n\r\n\t<?php } ?>\r\n\t</ul>\r\n\t<h3><label><?php _e('Policy mode', MOLLOM_I8N); ?></label></h3>\r\n\t<p><input type=\"checkbox\" name=\"sitepolicy\" <?php if (get_option('mollom_site_policy')) echo 'value = \"on\" checked'; ?> />&nbsp;&nbsp;<?php _e('If Mollom services are down, all comments are blocked by default.', MOLLOM_I8N); ?></p>\r\n\t<?php \r\n\t\tif ( 8645 > $wp_db_version ) { // deprecated option (< WP 2.7) \r\n\t?>\r\n\t<h3><label><?php _e('Restore', MOLLOM_I8N); ?></label></h3>\r\n\t<p><input type=\"checkbox\" name=\"mollomrestore\" <?php if (get_option('mollom_dbrestore')) echo 'value = \"on\" checked'; ?> />&nbsp;&nbsp;<?php _e('Restore the database (purge all Mollom data) upon deactivation of the plugin.', MOLLOM_I8N); ?></p>\r\n\t<?php } ?>\r\n\t<h3><label><?php _e('Reverse proxy', MOLLOM_I8N); ?></label></h3>\r\n\t<p><?php _e('Check this if your host is running a reverse proxy service (squid,...) and enter the ip address(es) of the reverse proxy your host runs as a commaseparated list.', MOLLOM_I8N); ?></p>\r\n\t<p><?php _e('When in doubt, just leave this off.', MOLLOM_I8N); ?></p>\r\n\t<p><?php _e('Enable: ', MOLLOM_I8N); ?><input type=\"checkbox\" name=\"mollomreverseproxy\" <?php if (get_option('mollom_reverseproxy')) echo 'value = \"checked\"'; ?> />&nbsp;-&nbsp;\r\n\t<input type=\"text\" size=\"35\" maxlength=\"255\" name=\"mollom-reverseproxy-addresses\" id=\"mollom-reverseproxy-addresses\" value=\"<?php echo get_option('mollom_reverseproxy_addresses'); ?>\" /></p>\r\n\t<p class=\"submit\"><input type=\"submit\" value=\"<?php _e('Update options &raquo;', MOLLOM_I8N); ?>\" id=\"submit\" name=\"submit\"/></p>\r\n</form>\r\n</div>\r\n</div>\r\n\t\r\n<?php\r\n}", "function authorize_payment_config() {\n $this->load->model('admin/Crud_model');\n if ($_POST) {\n $id = $this->input->post('config_id', TRUE);\n if ($id != '') {\n // update configuration\n $this->Crud_model->authorize_net_config_update($id, array(\n 'login_id' => $this->input->post('login_id', TRUE),\n 'transaction_key' => $this->input->post('transaction_key', TRUE),\n 'success_url' => $this->input->post('success_url', TRUE),\n 'failure_url' => $this->input->post('failure_url', TRUE),\n 'cancel_url' => $this->input->post('cancel_url', TRUE),\n 'status' => $this->input->post('status', TRUE)\n )\n );\n $this->session->set_flashdata('Configuration updated.', 'Authorize.net payment gateway configutaion updated.');\n } else {\n // add new configuration\n $this->Crud_model->authorize_net_config_insert(array(\n 'login_id' => $this->input->post('login_id', TRUE),\n 'transaction_key' => $this->input->post('transaction_key', TRUE),\n 'success_url' => $this->input->post('success_url', TRUE),\n 'failure_url' => $this->input->post('failure_url', TRUE),\n 'cancel_url' => $this->input->post('cancel_url', TRUE),\n 'status' => $this->input->post('status', TRUE)\n )\n );\n $this->session->set_flashdata('Configuration added.', 'Authorize.net configuration successfully added.');\n }\n redirect(base_url('admin/authorize_payment_config'));\n }\n $page_data['title'] = 'Authorize.net Payment Gateway Configuration';\n $page_data['page_name'] = 'authorize_payment_config';\n $page_data['authorize_net'] = $this->Crud_model->authorize_net_config();\n $this->load->view('backend/index', $page_data);\n }", "function tw_twispay_p_synchronize_subscriptions( $request ) {\n /* Get configuration from database. */\n global $wpdb;\n $apiKey = '';\n $configuration = $wpdb->get_row( \"SELECT * FROM \" . $wpdb->prefix . \"twispay_tw_configuration\" );\n\n if ( $configuration ) {\n if ( $configuration->live_mode == 1 ) {\n $apiKey = sanitize_text_field( $configuration->live_key );\n $baseUrl = 'https://api.twispay.com/order?externalOrderId=__EXTERNAL_ORDER_ID__&orderType=recurring&page=1&perPage=1&reverseSorting=0';\n } else if ( $configuration->live_mode == 0 ) {\n $apiKey = sanitize_text_field( $configuration->staging_key );\n $baseUrl = 'https://api-stage.twispay.com/order?externalOrderId=__EXTERNAL_ORDER_ID__&orderType=recurring&page=1&perPage=1&reverseSorting=0';\n }\n }\n\n /* Load languages. */\n $lang = explode( '-', get_bloginfo( 'language' ) )[0];\n if ( file_exists( TWISPAY_PLUGIN_DIR . 'lang/' . $lang . '/lang.php' ) ) {\n require( TWISPAY_PLUGIN_DIR . 'lang/' . $lang . '/lang.php' );\n } else {\n require( TWISPAY_PLUGIN_DIR . 'lang/en/lang.php' );\n }\n\n /* Extract all the subscriptions. */\n $subscriptions = wcs_get_subscriptions(['subscriptions_per_page' => -1]);\n $skip = FALSE;\n\n foreach ($subscriptions as $key => $subscription) {\n /* Reset skip flag. */\n $skip = FALSE;\n\n /* Construct the URL. */\n $url = str_replace('__EXTERNAL_ORDER_ID__', esc_html( $subscription->get_parent_id() ), $baseUrl);\n\n /* Execute the request. This means to perform a \"GET\"/\"PUT\" request at the specified URL. */\n $args = array('method' => 'GET', 'headers' => ['accept' => 'application/json', 'Authorization' => $apiKey]);\n $response = wp_remote_request( $url, $args );\n\n /* Check if the CURL call failed. */\n if( FALSE === $response ) {\n Twispay_TW_Logger::twispay_tw_log( $tw_lang['subscriptions_log_error_call_failed'] . WP_Error::get_error_message() );\n $skip = TRUE;\n }\n\n if((FALSE == $skip) && (200 != wp_remote_retrieve_response_code( $response ))){\n Twispay_TW_Logger::twispay_tw_log( $tw_lang['subscriptions_log_error_http_code'] . wp_remote_retrieve_response_code( $response ) );\n $skip = TRUE;\n }\n\n if(FALSE == $skip){\n $response = json_decode($response['body']);\n\n if ( 'Success' == $response->message ) {\n\n /* Check if any order was found on the server. */\n if($response->pagination->currentItemCount){\n /* Synchronize the statuses. */\n Twispay_TW_Status_Updater::updateSubscriptionStatus($subscription->get_parent_id(), $response->data[0]->orderStatus, $tw_lang);\n } else {\n /* Cancel the local subscription as no order was found on the server. */\n Twispay_TW_Status_Updater::updateSubscriptionStatus($subscription->get_parent_id(), Twispay_TW_Status_Updater::$RESULT_STATUSES['CANCEL_OK'], $tw_lang);\n }\n\n /* Redirect to the Transaction list Page with success. */\n wp_safe_redirect( admin_url( 'admin.php?page=tw-transaction&notice=success_recurring' ) );\n } else {\n Twispay_TW_Logger::twispay_tw_log( $tw_lang['subscriptions_log_error_get_status'] . $subscription->get_parent_id() );\n }\n }\n }\n /* Redirect to the Transaction list Page with message. */\n wp_safe_redirect( admin_url( 'admin.php?page=tw-transaction&notice=sync_finished' ) );\n}", "function snae_ecommerce_set_up_for_payment() {\n\t// Retrieve POST params\n\t$_POST = filter_input_array(INPUT_POST, FILTER_SANITIZE_STRING);\n\t$client_secret = $_POST['intent'];\n\t$dietary = $_POST['dietary'];\n\n\t// Initialise Stripe object for API calls\n\t$stripe_secret_key = carbon_get_theme_option('crb_stripe_api_key_secret');\n\t$stripe = new \\Stripe\\StripeClient($stripe_secret_key);\n\n\t// Check for req params\n\tif (!$client_secret) {\n\t\twp_send_json(array(\n\t\t\t'stock' => null,\n\t\t\t'updated' => false,\n\t\t\t'error' => 'Missing client secret'\n\t\t), 400);\n\t}\n\n\tif (!$dietary) {\n\t\twp_send_json(array(\n\t\t\t'stock' => null,\n\t\t\t'updated' => false,\n\t\t\t'error' => 'Missing dietary'\n\t\t), 400);\n\t}\n\n\t// Update workshop places, send error if now full\n\t$intent_id = \"pi_\" . explode(\"_\", $client_secret)[1];\n\ttry {\n\t\t$intent = $stripe->paymentIntents->retrieve($intent_id);\n\t} catch (\\Stripe\\Exception\\ApiErrorException | \\Stripe\\Exception\\ApiConnectionException $e) {\n\t\twp_send_json(array(\n\t\t\t'stock' => null,\n\t\t\t'updated' => false,\n\t\t\t'error' => 'Request Failed - Could not make Stripe API call'\n\t\t), 502);\n\t}\n\n\t$workshops = explode(\",\",$intent->metadata->workshops);\n\n\t$places_updated = snae_ecommerce_update_workshop_places($workshops);\n\tif (count($places_updated)) {\n\t\twp_send_json(array(\n\t\t\t'stock' => false,\n\t\t\t'updated' => false,\n\t\t\t'error' => 'Insufficient Stock',\n\t\t\t'full' => $places_updated,\n\t\t), 406);\n\t}\n\n\t// Update Strip PaymentIntent with checkout form metadata\n\t$intent_updated = snae_ecommerce_update_paymentintent($stripe, $intent_id, $dietary);\n\n\tif (!$intent_updated) {\n\t\twp_send_json(array(\n\t\t\t'stock' => true,\n\t\t\t'updated' => false,\n\t\t\t'error' => 'Request Failed - Could not make Stripe API call',\n\t\t), 502);\n\t}\n\n\t// All good, send response - 200 OK\n\twp_send_json(array(\n\t\t'stock' => true,\n\t\t'updated' => true,\n\t), 200);\n}", "function templ_payment_gateway(){\r\n\t\t$modules_array = array();\r\n\t\t$modules_array = array('templatic-custom_taxonomy','templatic-custom_fields','templatic-registration','templatic-monetization','templatic-claim_ownership');\r\n\t\trequire_once(TEMPL_MONETIZE_FOLDER_PATH.'templ_header_section.php' );\r\n\t\t?>\r\n <p class=\"tevolution_desc\"><?php echo __('The payment gateways below will help you maximize the earning potential of your site. Offering more payment options to your users will help encourage more people, who perhaps might not find the built-in PayPal suitable, to submit a listing on your directory.','templatic-admin');?></p>\r\n <?php\r\n\t\t\r\n\t\techo '\r\n\t\t<div id=\"tevolution_bundled\" class=\"metabox-holder wrapper widgets-holder-wrap\"><table cellspacing=\"0\" class=\"wp-list-tev-table postbox fixed pages \">\r\n\t\t\t<tbody style=\"background:white; padding:40px;\">\r\n\t\t\t<tr><td>\r\n\t\t\t';\r\n\t\t/* This is the correct way to loop over the directory. */\r\n\t\tdo_action('tevolution_payment_gateway');\r\n\t\t/* to get t plugins */\t\t\t\r\n\t\techo '</td></tr>\r\n\t\t</tbody></table>\r\n\t\t</div>\r\n\t\t';\r\n\t\r\n\t\trequire_once(TEMPL_MONETIZE_FOLDER_PATH.'templ_footer_section.php' );\r\n\t}", "public static function core_settings() {\n\t\t$core_settings = get_option( 'woocommerce_wc_checkout_com_cards_settings' );\n\t\t$nas_docs = 'https://www.checkout.com/docs/four/resources/api-authentication/api-keys';\n\t\t$abc_docs = 'https://www.checkout.com/docs/the-hub/update-your-hub-settings#Manage_the_API_keys';\n\t\t$docs_link = $abc_docs;\n\n\t\tif ( isset( $core_settings['ckocom_account_type'] ) && 'NAS' === $core_settings['ckocom_account_type'] ) {\n\t\t\t$docs_link = $nas_docs;\n\t\t}\n\n\t\t$settings = [\n\t\t\t'core_setting' => [\n\t\t\t\t'title' => __( 'Core settings', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'type' => 'title',\n\t\t\t\t'description' => '',\n\t\t\t],\n\t\t\t'enabled' => [\n\t\t\t\t'id' => 'enable',\n\t\t\t\t'title' => __( 'Enable/Disable', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'type' => 'checkbox',\n\t\t\t\t'label' => __( 'Enable Checkout.com cards payment', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'description' => __( 'This enables Checkout.com. cards payment', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'desc_tip' => true,\n\t\t\t\t'default' => 'yes',\n\t\t\t],\n\t\t\t'ckocom_environment' => [\n\t\t\t\t'title' => __( 'Environment', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'type' => 'select',\n\t\t\t\t'description' => __( 'When going to production, make sure to set this to Live', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'desc_tip' => true,\n\t\t\t\t'options' => [\n\t\t\t\t\t'sandbox' => __( 'SandBox', 'checkout-com-unified-payments-api' ),\n\t\t\t\t\t'live' => __( 'Live', 'checkout-com-unified-payments-api' ),\n\t\t\t\t],\n\t\t\t\t'default' => 'sandbox',\n\t\t\t],\n\t\t\t'title' => [\n\t\t\t\t'title' => __( 'Payment Option Title', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'type' => 'text',\n\t\t\t\t'label' => __( 'Pay by Card with Checkout.com', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'description' => __( 'Title that will be displayed on the checkout page', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'desc_tip' => true,\n\t\t\t\t'default' => 'Pay by Card with Checkout.com',\n\t\t\t],\n\t\t\t'ckocom_account_type' => [\n\t\t\t\t'title' => __( 'Account type', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'type' => 'select',\n\t\t\t\t'description' => __( 'Contact support team to know your account type.', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'desc_tip' => true,\n\t\t\t\t'options' => [\n\t\t\t\t\t'ABC' => __( 'ABC', 'checkout-com-unified-payments-api' ),\n\t\t\t\t\t'NAS' => __( 'NAS', 'checkout-com-unified-payments-api' ),\n\t\t\t\t],\n\t\t\t\t'default' => 'ABC',\n\t\t\t],\n\t\t\t'ckocom_sk' => [\n\t\t\t\t'title' => __( 'Secret Key', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'type' => 'text',\n\t\t\t\t/* translators: 1: HTML anchor opening tag, 2: HTML anchor closing tag. */\n\t\t\t\t'description' => sprintf( __( 'You can %1$s find your secret key %2$s in the Checkout.com Hub', 'checkout-com-unified-payments-api' ), '<a class=\"checkoutcom-key-docs\" target=\"_blank\" href=\"' . esc_url( $docs_link ) . '\">', '</a>' ),\n\t\t\t\t'placeholder' => 'sk_xxx',\n\t\t\t],\n\t\t\t'ckocom_pk' => [\n\t\t\t\t'title' => __( 'Public Key', 'checkout-com-unified-payments-api' ),\n\t\t\t\t'type' => 'text',\n\t\t\t\t/* translators: 1: HTML anchor opening tag, 2: HTML anchor closing tag. */\n\t\t\t\t'description' => sprintf( __( 'You can %1$s find your public key %2$s in the Checkout.com Hub', 'checkout-com-unified-payments-api' ), '<a class=\"checkoutcom-key-docs\" target=\"_blank\" href=\"' . esc_url( $docs_link ) . '\">', '</a>' ),\n\t\t\t\t'placeholder' => 'pk_xxx',\n\t\t\t],\n\t\t];\n\n\t\treturn apply_filters( 'wc_checkout_com_cards', $settings );\n\t}" ]
[ "0.70752525", "0.62321043", "0.60704976", "0.585333", "0.5714921", "0.5605237", "0.56012523", "0.55793834", "0.5572835", "0.55670625", "0.55522543", "0.5527366", "0.54939204", "0.5475904", "0.5472717", "0.5471001", "0.5432785", "0.5423817", "0.5423098", "0.5408627", "0.5388078", "0.53589845", "0.5335072", "0.5321695", "0.53029007", "0.5275536", "0.527186", "0.5256561", "0.52489287", "0.52435917" ]
0.7532659
0
readRecordFromTableByID() read a specific record from a database table.
public function readRecordFromTableByID($tableName, $id) { // Query $stmt = $this->conn->prepare("SELECT * FROM {$tableName} WHERE id = {$id}"); if($stmt->execute()) { return $stmt->fetch(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function readRowByIDFromDB($conn, string $table_name, $id)\n {\n }", "public function getRecord($id);", "public function read($p_id, $p_pk_name=NULL, $p_table=NULL, $p_dbname=NULL){ return $this->getRecordAssoc($p_id, $p_pk_name, NULL, true, $p_table, $p_dbname); }", "function readById($id){\r\n\t\t\r\n\t\t$sql = \"SELECT * FROM $this->table WHERE id=:id\";\r\n\t\t\r\n\t\t$stmt = Db::prepareOwn($sql);\r\n\t\t$stmt->bindParam(\":id\",$id);\r\n\t\t$stmt->execute();\r\n\t\treturn $stmt->fetch();\t\r\n\t}", "function getRecord($id = null) {\n\t\tif ($id === null) $id = $this->id;\n\t\telse $this->id = $id;\n\n\t\t$this->record = &$this->passRecord($this->tablename, $id);\n\t\t$this->DescIntoFields($this->tablename, $id);\n\n\t\treturn $this->id;\n\t}", "protected function getRecordByTableAndId($table, $identity) {\n\t\treturn BackendUtility::getRecord($table, $identity);\n\t}", "function record_get($conn, $id_record, $tablename) {\r\n $tablename = trim($tablename);\r\n $tablename = mysqli_real_escape_string($conn, $tablename);\r\n $tablename = stripslashes($tablename);\r\n $id_record = trim($id_record);\r\n $id_record = mysqli_real_escape_string($conn, $id_record);\r\n $id_record = stripslashes($id_record);\r\n\r\n \t//Query for receiving one record from table with title that will be given by special variable $tablename.\r\n \t$query = sprintf(\"SELECT * FROM $tablename WHERE \tid=%d\", (int)$id_record);\r\n \t$result = mysqli_query($conn, $query);\r\n\r\n \t//Check the correctness of query. If the query did not work, the site will not be shown.\r\n\t if (!$result)\r\n die(mysqli_error($conn));\r\n\r\n //Save data in variable.\r\n \t$record = mysqli_fetch_assoc($result);\r\n\r\n \t//Data variable will be stored in external variable.\r\n \treturn $record;\r\n }", "function &loadRecordById($recordid){\n\t\t$rec =& Dataface_IO::getByID($recordid);\n\t\treturn $rec;\n\n\t}", "public function getRecord($id){\n\n return $this->curl('GET', '/records/' . $id);\n\n }", "function read($query='', &$record, $tablename=null){\n\t\t$app =& Dataface_Application::getInstance();\n\t\tif ( !is_a($record, \"Dataface_Record\") ){\n\t\t\ttrigger_error(\n\t\t\t\tdf_translate(\n\t\t\t\t\t'scripts.Dataface.IO.read.ERROR_PARAMETER_2',\n\t\t\t\t\t\"Dataface_IO::read() requires second parameter to be of type 'Dataface_Record' but received '\".get_class($record).\"\\n<br>\",\n\t\t\t\t\tarray('class'=>get_class($record))\n\t\t\t\t\t).Dataface_Error::printStackTrace(), E_USER_ERROR);\n\t\t}\n\t\t\n\t\tif ( is_string($query) and !empty($query) ){\n\t\t\t// If the query is actually a record id string, then we convert it\n\t\t\t// to a normal query.\n\t\t\t$query = $this->recordid2query($query);\n\t\t}\n\t\t\n\t\tif ( $tablename === null and $this->_altTablename !== null ){\n\t\t\t$tablename = $this->_altTablename;\n\t\t}\n\t\t\n\t\n\t\t$qb = new Dataface_QueryBuilder($this->_table->tablename);\n\t\t$qb->selectMetaData = true;\n\t\t$sql = $qb->select('', $query, $this->tablename($tablename));\n\t\t//echo $sql;\n\t\t//$res = mysql_query($sql, $this->_table->db);\n\t\t$res = $this->dbObj->query($sql, $this->_table->db, $this->lang, true /* as_array */);\n\t\tif ( (!is_array($res) and !$res) || PEAR::isError($res) ){\n\t\t\t$app->refreshSchemas($this->_table->tablename);\n\t\t\t$res = $this->dbObj->query($sql, $this->_table->db, $this->lang, true /* as array */);\n\t\t\tif ( (!is_array($res) and !$res) || PEAR::isError($res) ){\n\t\t\t\tif ( PEAR::isError($res) ) return $res;\n\t\t\t\treturn PEAR::raiseError(\n\t\t\t\t\tDataface_LanguageTool::translate(\n\t\t\t\t\t\t/* i18n id */\n\t\t\t\t\t\t\"Error reading record\",\n\t\t\t\t\t\t/* default error message */\n\t\t\t\t\t\t\"Error reading table '\".\n\t\t\t\t\t\t$this->_table->tablename.\n\t\t\t\t\t\t\"' from the database: \".\n\t\t\t\t\t\tmysql_error($this->_table->db).\n\t\t\t\t\t\t\" on line \".__LINE__.\" of file \".__FILE__.\n\t\t\t\t\t\t\". \\nSQL used was '$sql'.\",\n\t\t\t\t\t\t/* i18n parameters */\n\t\t\t\t\t\n\t\t\t\t\t\tarray('table'=>$this->_table->tablename, \n\t\t\t\t\t\t\t'mysql_error'=>mysql_error(), \n\t\t\t\t\t\t\t'line'=>__LINE__, \n\t\t\t\t\t\t\t'file'=>__FILE__,\n\t\t\t\t\t\t\t'sql'=>$sql\n\t\t\t\t\t\t)\n\t\t\t\t\t),\n\t\t\t\t\t\t\n\t\t\t\t\tDATAFACE_E_READ_FAILED\n\t\t\t\t);\n\t\t\t}\n\t\t}\n\t\t\n\t\t//if ( mysql_num_rows($res) == 0 ){\n\t\tif ( count($res) == 0 ){\n\t\t\treturn PEAR::raiseError(\n\t\t\t\tDataface_LanguageTool::translate(\n\t\t\t\t\t/* i18n id */\n\t\t\t\t\t\"No records found\",\n\t\t\t\t\t/* default error message */\n\t\t\t\t\t\"Record for table '\".\n\t\t\t\t\t$this->_table->tablename.\n\t\t\t\t\t\"' could not be found.\",\n\t\t\t\t\t/* i18n parameters */\n\t\t\t\t\tarray('table'=>$this->_table->tablename, 'sql'=>$sql)\n\t\t\t\t),\n\t\t\t\tDATAFACE_E_READ_FAILED\n\t\t\t);\n\t\t}\n\t\t\n\t\t//$row = mysql_fetch_assoc($res);\n\t\t$row = $res[0];\n\t\t//mysql_free_result($res);\n\t\t$record->setValues($row);\n\t\t$record->setSnapshot();\n\t\t\t// clear all flags that may have been previously set to indicate that the data is old or needs to be updated.\n\t\t\n\t\t\n\t\n\t}", "public function getRecordById($table, $where = false){\n $this->db->select(\"*\");\n if($where != false) $this->db->where($where);\n return $this->db->get($table);\n }", "public function GetRecordByID($conditions,$tbl_name){\r\n \t$db=$this->getAdapter();\r\n \t$sql=\"SELECT * FROM \".$tbl_name.\" WHERE \".$conditions.\" LIMIT 1\";\r\n \t$row = $this->fetchRow($sql);\r\n \treturn $row;\r\n \t$row= $db->fetchRow($sql);\r\n \treturn $row;\r\n }", "public function GetRecordByID($conditions,$tbl_name){\r\n \t$db=$this->getAdapter();\r\n \t$sql=\"SELECT * FROM \".$tbl_name.\" WHERE \".$conditions.\" LIMIT 1\";\r\n \t$row = $this->fetchRow($sql);\r\n \treturn $row;\r\n \t$row= $db->fetchRow($sql);\r\n \treturn $row;\r\n }", "protected function getRecord(int $id)\n {\n $record = null;\n\n $modelClass = $this->module->model_class;\n $record = $modelClass::findOrFail($id);\n\n return $record;\n }", "abstract public function read($id);", "public function readOne($id)\n {\n //\n }", "function getOneRecordFromTablePatients($patientID)\n{\n\t//require connection\n\trequire('includes/conn.inc.php');\n\n\t//sql query and select the one you want to get\n\t$sql = \"SELECT * FROM patients WHERE patientID = $patientID\";\n\n\t//prepare query and run\n\t$stmt = $pdo->prepare($sql);\n\n\tif($stmt->execute()){\n\t\techo \"<div class='alert alert-success'>Got one record from table.</div>\";\n\t}else{\n\t\techo \"<div class='alert alert-danger'>Unable to get one record.</div>\";\n\t}\n\n\t//store retrieved row from db to variable\n\t$row = $stmt->fetch(PDO::FETCH_ASSOC);\n\n\treturn $row;\n}", "function &getRecordByID($id){\n\t\tglobal $db;\n\t\t\n\t\t$sql = \"select nip,pwd,ses_reg,roles,kdunit,departemen from m_login where nip = '$id'\";\n\t\tPerson::events($sql);\n\t\t$row =& $db->getRow($sql);\n\t\treturn $row;\n\t}", "function &getOneRecordFetched($id)\n\t{\n\t\t// get uses the primary key as a default\t\n\t\t$this->_dao->get($id);\n\t\t$this->_dao->fetch();\n\t\treturn $this->_dao;\n\t}", "public function getRecord()\n {\n $id = $_REQUEST['id'];\n $sql = \"SELECT * FROM cruddb.students WHERE id = $id\";\n global $conn;\n $result = $conn->query($sql);\n return $result;\n }", "function retrieveById($id)\n\t{\n\t\t$sql = \"select * from {$this->table} where {$this->primaryKey} = {$id}\";\n\t\t\n \treturn $this->select($sql);\n\t}", "public function getById($tbl_name, $id) {\n return $this->db->get_where($tbl_name, array('id' => $id))->row();\n }", "function getRecord($id, $useUuid = false){\n\n $whereclause = \"`\".$this->maintable.\"`.\";\n\n if($useUuid){\n\n $id = mysql_real_escape_string($id);\n $whereclause .= \"`uuid` = '\".$id.\"'\";\n\n } else {\n\n $id = (int) $id;\n $whereclause .= \"`id` = \".$id;\n\n }//endif\n\n // iterate through all possible fields and comprise a list\n // of columns to retrieve\n\n $fieldlist = \"\";\n foreach($this->fields as $fieldname => $thefield){\n\n if(isset($thefield[\"select\"]))\n $fieldlist .= \", (\".$thefield[\"select\"].\") AS `\".$fieldname.\"`\";\n else\n $fieldlist .= \", `\".$fieldname.\"`\";\n\n }//end foreach\n\n if($fieldlist)\n $fieldlist = substr($fieldlist, 1);\n\n\n $querystatement = \"\n SELECT\n \".$fieldlist.\"\n FROM\n `\".$this->maintable.\"`\n WHERE\n \".$whereclause;\n\n $queryresult = $this->db->query($querystatement);\n\n if($this->db->numRows($queryresult))\n $therecord = $this->db->fetchArray($queryresult);\n else\n $therecord = $this-> getDefaults();\n\n return $therecord;\n\n }", "function getRecord($id = null) {\n\t\tif ($id == 'new') {\n\t\t\t$this->type = 'record';\n\t\t\t$classname = $this->tablename;\n\t\t\t$classname[0] = strtoupper($classname[0]);\n\t\t\t$this->_record = new $classname();\n\t\t\tif ($this->getConstraints()) {\n\t\t\t\t$this->_record->fromArray($this->getConstraints());\n\t\t\t}\n\t\t} elseif ($this->getConstraints()) {\n\t\t\t// add $id as a constraint...\n\t\t\t$this->addConstraint($this->getIdField(), $id);\n\t\t\t$record = $this->_applyUserConstraintsToQuery()->fetchOne();\n\t\t\t\n\t\t\t// if you didn't find one, return.\n\t\t\tif (!$record && $record !== 0) return null;\n\t\t\t\n\t\t\t$this->type = 'record';\n\t\t\t$this->_record = $record;\n\t\t} elseif ($record = Doctrine::getTable($this->tablename)->find($id)) {\n\t\t\t$this->type = 'record';\n\t\t\t$this->_record = $record;\n\t\t} else {\n\t\t\t$id = null;\n\t\t}\n\t\treturn $id;\n\t}", "public function getRecordById($table,$id){\n\t\t$arrList = DB::table($table)->where('Id',$id)->first();\n\t\tif($arrList != null){\n\t\t\treturn $arrList;\n\t\t}else{\n\t\t\treturn array();\n\t\t}\n\t}", "public function getObjectFromTable($object_id);", "function &getRecordByID($id){\n\t\tglobal $db;\n\t\t\n\t\t$sql = \"SELECT id,strname FROM v_product_family WHERE id_business_unit = $id ORDER BY id\";\n\t\t//Basic::EventLog(\"User->getRecordByID: \".$sql);\n\t\t$res =& $db->query($sql);\n\t\treturn $res;\n\t}", "function getOneRecordFromTableHealthData($healthDataID)\n{\n\t//require connection\n\trequire('includes/conn.inc.php');\n\n\t//sql query and select the one you want to get\n\t$sql = \"SELECT * FROM healthdata WHERE healthDataID = $healthDataID\";\n\n\t//prepare query and run\n\t$stmt = $pdo->prepare($sql);\n\n\tif($stmt->execute()){\n\t\techo \"<div class='alert alert-success'>You got one record.</div>\";\n\t}else{\n\t\techo \"<div class='alert alert-danger'>Unable to get one record.</div>\";\n\t}\n\n\t//store retrieved row from db to variable\n\t$row = $stmt->fetch(PDO::FETCH_ASSOC);\n\n\treturn $row;\n}", "public function readOne(int $id)\n {\n }", "public function read($table) {\n\t\t$query = $this->db->order_by('id', 'DESC');\n\t\t$query = $this->db->get($table);\n\t\tif($query->num_rows() > 0) {\n\t\t\treturn $query->result();\n\t\t}\n\t}" ]
[ "0.7119695", "0.70201653", "0.6856106", "0.68151426", "0.66536427", "0.65104985", "0.65065444", "0.64885014", "0.6450733", "0.64138305", "0.64113575", "0.6325726", "0.6325726", "0.63021636", "0.62754905", "0.6254606", "0.623219", "0.6223022", "0.62092495", "0.6200898", "0.61619884", "0.6155066", "0.6149725", "0.6120675", "0.6117499", "0.6115177", "0.61119014", "0.6106992", "0.60800743", "0.60647726" ]
0.76491684
0
columnTypeValidate() is a private method to check which data type is used. For strings add quotes around the $columnValue. However, for a numeric $columnValue none quotes are added.
private function columnTypeValidate($columnValue) { return is_numeric($columnValue) == true ? $columnValue . ' ' : "'{$columnValue}' "; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function columnTypeValidate($columnValue) {\n return is_numeric($columnValue) == true ? $columnValue . ' ' : \"'{$columnValue}' \";\n }", "function csvupload_checkColType($table, $data) {\n $fields = db_query('SHOW columns FROM ' . $table, array(), array('target' => 'bamp_new'))->fetchAll();\n\n //Loop over field definitions and check to see if data is proper type\n foreach ($fields as $fd) {\n //Check if the field exists in the data\n if (array_key_exists($fd->field, $data)) {\n //Get the actual value\n $var = $data[$fd->field];\n\n //field type is in datatype(length) format, split that apart\n $type = explode('(', $fd->type);\n \n $d_type = $type[0];\n switch ($d_type) {\n case 'int':\n if (isset($type[1])) {\n $length = substr($type[1], 0, -1);\n if (!is_int($var) && strlen($var) > $length) {\n $error = t('Error: Value is not an integer or is longer than the allowed length for this field.');\n }//end if\n }//end if\n break;\n\n case 'float':\n break;\n\n case 'char':\n case 'varchar':\n if (isset($type[1])) {\n $length = substr($type[1], 0, -1);\n if (!is_string($var) && strlen($var) > $length) {\n $error = t('Error: Value is not a valid char/varchar or is longer than the allowed length for this field.');\n }//end if\n }//end if\n break;\n \n case 'timestamp':\n break;\n }\n }\n }\n return (empty($error)) ? TRUE : $error;\n }", "protected function validateColumn()\n {\n if (!is_string($this->column)) {\n throw new InvalidArgumentException(\"Column must be a string.\");\n }\n\n\n if (\n strpos($this->column, ' ') !== false\n ) {\n throw new DomainException(\n \"Column must not contain spaces.\"\n );\n }\n }", "public function columnType(string $table, string $column);", "public function columnType($column_number)\n {\n }", "function sqlite_check_data_type($db, $table, $column, $date_type){\n\t\t$date_type = \" \".$date_type;\t\t#add space to begining of data type to ensure it is not a column name\n\t\t//$query_st = sqlite_query($db, \"SELECT name, sql FROM sqlite_master WHERE type = 'table' AND name = '\".$table.\"';\");\n\t\t$row = sqlite_fetch_array($query_st);\n\n\t\t$column_array = explode(\",\", $row['sql']);\n\t\t$max_cols = sizeof($column_array);\n\t\t\n\t\tfor ($i=0; $i<$max_cols; $i++)\t{\n\t\t\t$pk_check = strpos(trim($column_array[$i]), $date_type);\n\t\t\t$col_check = strpos($column_array[$i], $column);\n\t\t\tif ($pk_check AND $col_check)\n\t\t\t\treturn $column;\t\t#column name and primary key identifier present so this is our primary key\n\t\t}\n\t\treturn 0;\n\t}", "public function get_database_column_type();", "private function fixDatatype(&$col)\n\t{\n\t\t$regex = '_^([^\\( ]*) *\\(([^\\(]*)\\) *(.*)$_';\n\t\tpreg_match($regex, $col['str_datatype'], $matches);\n\n\t\tif (!$matches)\n\t\t{\n\t\t\t$matches = [NULL, $col['datatype'], 0, ''];\n\t\t}\n\n\t\tarray_shift($matches);\n\t\tlist($type, $len, $extra) = $matches;\n\n\t\t// Correct len to be an integer, set max possible length where missing\n\t\t$len = min((int)$len, $this->getTypeMaxLen($type));\n\n\t\tswitch (strtoupper($type))\n\t\t{\n\t\t\tcase 'CHAR':\n\t\t\tcase 'VARCHAR':\n\t\t\tcase 'BINARY':\n\t\t\tcase 'VARBINARY':\n\t\t\tcase 'TINYTEXT':\n\t\t\tcase 'TEXT':\n\t\t\tcase 'MEDIUMTEXT':\n\t\t\tcase 'LONGTEXT':\n\t\t\tcase 'TINYBLOB':\n\t\t\tcase 'BLOB':\n\t\t\tcase 'MEDIUMBLOB':\n\t\t\tcase 'LONGBLOB':\n\t\t\t\t$raw = 'string';\n\t\t\t\tbreak;\n\n\t\t\tcase 'ENUM':\n\t\t\tcase 'SET':\n\t\t\t\t$raw = 'list';\n\t\t\t\tbreak;\n\n\t\t\tcase 'TINYINT':\n\t\t\t\t$raw = ($len == 1) ? 'boolean' : 'integer';\n\t\t\t\tbreak;\n\n\t\t\tcase 'SMALLINT':\n\t\t\tcase 'MEDIUMINT':\n\t\t\tcase 'INT':\n\t\t\tcase 'BIGINT':\n\t\t\t\t$raw = 'integer';\n\t\t\t\tbreak;\n\n\t\t\t// For these there is no point in trying to give a \"max length\"\n\t\t\tcase 'FLOAT':\n\t\t\tcase 'DOUBLE':\n\t\t\tcase 'DOUBLEPRECISION':\n\t\t\tcase 'DECIMAL':\n\t\t\tcase 'NUMERIC':\n\t\t\t\t$raw = 'float';\n\t\t\t\tbreak;\n\n\t\t\t// These have a max length as strings, but it's not meaningful\n\t\t\tcase 'TIME':\n\t\t\tcase 'DATE':\n\t\t\tcase 'DATETIME':\n\t\t\tcase 'TIMESTAMP':\n\t\t\tcase 'YEAR':\n\t\t\t\t$raw = 'date';\n\t\t\t\tbreak;\n\t\t}\n\n\t\t$col['datatype'] = compact('type', 'len', 'extra', 'raw');\n\n\t\t$col['datatype']['charset'] = $col['charset'];\n\t\t$col['datatype']['collation'] = $col['collation'];\n\n\t\tunset($col['str_datatype'], $col['charset'], $col['collation']);\n\t}", "public function getDataType($column);", "private function typecheck () {\n\t\t$types = array();\n\t\t$vars = array_values($this->get_object_vars());\n\t\t/* Maybe set the vars to default PDO consts instead of trying to detect them?\n\t\tPDO::PARAM_BOOL (integer) // Represents a boolean data type. \n\t\tPDO::PARAM_NULL (integer) // Represents the SQL NULL data type. \n\t\tPDO::PARAM_INT (integer) // Represents the SQL INTEGER data type. \n\t\tPDO::PARAM_STR (integer) // Represents the SQL CHAR, VARCHAR, or other string data type. \n\t\tPDO::PARAM_LOB // BLOB\n\t\t// Floats are apparently problematic and need to not be specified?!?\n\t\t*/\n\t\tforeach ($vars AS $var) {\n\t\t\tif (is_int($var)) $types[] = PDO::PARAM_INT; // var is an int, assign PDO int\n\t\t\telse $types[] = PDO::PARAM_STR; // Default to string\n\t\t}\n\t\t$this->types = $types;\n\t}", "public function testSetType() {\n\n $obj = new DataTablesColumn();\n\n $obj->setType(\"date\");\n $this->assertEquals(\"date\", $obj->getType());\n\n $obj->setType(\"num\");\n $this->assertEquals(\"num\", $obj->getType());\n\n $obj->setType(\"num-fmt\");\n $this->assertEquals(\"num-fmt\", $obj->getType());\n\n $obj->setType(\"html\");\n $this->assertEquals(\"html\", $obj->getType());\n\n $obj->setType(\"html-num\");\n $this->assertEquals(\"html-num\", $obj->getType());\n\n $obj->setType(\"string\");\n $this->assertEquals(\"string\", $obj->getType());\n }", "public function validateSchemaColumns(mixed $key, mixed $value): bool\n {\n switch ($key) {\n case 'name':\n if ($value === '') {\n throw new DataSchemaInvalidArgumentException('');\n }\n break;\n case 'type':\n if (!in_array($value, $this->types)) {\n throw new DataSchemaInvalidArgumentException('');\n }\n break;\n case 'length':\n if (!is_int($value)) {\n throw new DataSchemaInvalidArgumentException('');\n }\n break;\n case 'index':\n if (!in_array($value, ['primary', 'unique', 'index', 'fulltext'])) {\n throw new DataSchemaInvalidArgumentException('');\n }\n break;\n case 'null':\n case 'auto_increment':\n if (!is_bool($value)) {\n throw new DataSchemaInvalidArgumentException('');\n }\n break;\n case 'default':\n if (!in_array($value, ['none', 'null', 'CURRENT_TIMESTAMP', $value])) {\n throw new DataSchemaInvalidArgumentException('');\n }\n break;\n case 'attributes':\n if (!in_array($value, ['', 'binary', 'unsigned', 'unsigned zerofill', 'on update CURRENT_TIMESTAMP'])) {\n throw new DataSchemaInvalidArgumentException('');\n }\n break;\n }\n $this->row[$key] = $value;\n return true;\n }", "public function checkValueType($value);", "public function providerSchemaCastValue() {\n $cases = [];\n // Tests NULL values.\n $cases[] = [\n NULL,\n NULL,\n [\n 'not null' => FALSE,\n ],\n ];\n $cases[] = [\n 0,\n NULL,\n [\n 'not null' => TRUE,\n 'type' => 'int',\n ],\n ];\n $cases[] = [\n 0,\n NULL,\n [\n 'not null' => TRUE,\n 'type' => 'serial',\n ],\n ];\n $cases[] = [\n 0.0,\n NULL,\n [\n 'not null' => TRUE,\n 'type' => 'float',\n ],\n ];\n $cases[] = [\n '',\n NULL,\n [\n 'not null' => TRUE,\n 'type' => 'varchar',\n ],\n ];\n // Tests cast to int and serial.\n $cases[] = [\n 1,\n '1.001',\n [\n 'type' => 'int',\n ],\n ];\n $cases[] = [\n 2,\n 2.6,\n [\n 'type' => 'int',\n ],\n ];\n $cases[] = [\n 3,\n '3.6',\n [\n 'type' => 'serial',\n ],\n ];\n // Tests float.\n $cases[] = [\n 1.001,\n '1.001',\n [\n 'type' => 'float',\n ],\n ];\n $cases[] = [\n 2.6,\n 2.6,\n [\n 'type' => 'float',\n ],\n ];\n // Tests other column types casts to string.\n $cases[] = [\n '1',\n 1,\n [\n 'type' => 'varchar',\n ],\n ];\n $cases[] = [\n '2',\n '2',\n [\n 'type' => 'varchar',\n ],\n ];\n return $cases;\n }", "protected function validateColumnSettings(array &$info)\n {\n $type = (isset($info['type'])) ? $info['type'] : null;\n switch ($type) {\n // some types need massaging, some need other required properties\n case 'bit':\n case 'tinyint':\n case 'smallint':\n case 'mediumint':\n case 'int':\n case 'bigint':\n if (!isset($info['type_extras'])) {\n $length =\n (isset($info['length']))\n ? $info['length']\n : ((isset($info['precision'])) ? $info['precision']\n : null);\n if (!empty($length)) {\n $info['type_extras'] = \"($length)\"; // sets the viewable length\n }\n }\n\n $default = (isset($info['default'])) ? $info['default'] : null;\n if (isset($default) && is_numeric($default)) {\n $info['default'] = intval($default);\n }\n break;\n\n case 'decimal':\n case 'numeric':\n case 'real':\n case 'float':\n case 'double':\n if (!isset($info['type_extras'])) {\n $length =\n (isset($info['length']))\n ? $info['length']\n : ((isset($info['precision'])) ? $info['precision']\n : null);\n if (!empty($length)) {\n $scale =\n (isset($info['decimals']))\n ? $info['decimals']\n : ((isset($info['scale'])) ? $info['scale']\n : null);\n $info['type_extras'] = (!empty($scale)) ? \"($length,$scale)\" : \"($length)\";\n }\n }\n\n $default = (isset($info['default'])) ? $info['default'] : null;\n if (isset($default) && is_numeric($default)) {\n $info['default'] = floatval($default);\n }\n break;\n\n case 'char':\n case 'nchar':\n case 'binary':\n $length = (isset($info['length'])) ? $info['length'] : ((isset($info['size'])) ? $info['size'] : null);\n if (isset($length)) {\n $info['type_extras'] = \"($length)\";\n }\n break;\n\n case 'varchar':\n case 'nvarchar':\n case 'varbinary':\n $length = (isset($info['length'])) ? $info['length'] : ((isset($info['size'])) ? $info['size'] : null);\n if (isset($length)) {\n $info['type_extras'] = \"($length)\";\n } else // requires a max length\n {\n $info['type_extras'] = '(' . static::DEFAULT_STRING_MAX_SIZE . ')';\n }\n break;\n\n case 'time':\n case 'timestamp':\n case 'datetime':\n $default = (isset($info['default'])) ? $info['default'] : null;\n if ('0000-00-00 00:00:00' == $default) {\n // read back from MySQL has formatted zeros, can't send that back\n $info['default'] = 0;\n }\n\n $length = (isset($info['length'])) ? $info['length'] : ((isset($info['size'])) ? $info['size'] : null);\n if (isset($length)) {\n $info['type_extras'] = \"($length)\";\n }\n break;\n }\n }", "function getColumnType($columnIndex) { }", "public static function IsCharCol($strType)\n {\n $arrType = array('VARCHAR', 'NVARCHAR', 'CHAR', 'NCHAR', 'NVARCHAR2', 'VARCHAR2', 'LONGTEXT', 'TEXT', 'NTEXT');\n\n return in_array(strtoupper($strType), $arrType);\n }", "public static function IsNumCol($strType)\n {\n $arrType = array('NUMERIC', 'INT', 'SMALLINT', 'FLOAT', 'DECIMAL', 'NUMBER', 'MONEY', 'SMALLMONEY', 'TINYINT', 'BIT', 'BIGINT', 'REAL');\n\n return in_array(strtoupper($strType), $arrType);\n }", "public static function IsDateCol($strType)\n {\n $arrType = array('DATETIME','DATE','TIMESTAMP','SMALLDATE','TIME', 'SMALLDATETIME');\n\n return in_array(strtoupper($strType), $arrType);\n }", "function process_value($table, $value, $type) {\n switch($type) {\n case \"string\":\n $formatted_value=\"'$value'\";\n break;\n case \"int\":\n $formatted_value = $value;\n break;\n default: \n $formatted_value = $value;\n break;\n }\n return $formatted_value;\n }", "protected function _column($real) {\n\t\tif (is_array($real)) {\n\t\t\treturn $real['type'] . (isset($real['length']) ? \"({$real['length']})\" : '');\n\t\t}\n\n\t\tif (!preg_match(\"/{$this->_regex['column']}/\", $real, $column)) {\n\t\t\treturn $real;\n\t\t}\n\n\t\t$column = array_intersect_key($column, ['type' => null, 'length' => null]);\n\t\tif (isset($column['length']) && $column['length']) {\n\t\t\t$length = explode(',', $column['length']) + [null, null];\n\t\t\t$column['length'] = $length[0] ? (integer) $length[0] : null;\n\t\t\t$length[1] ? $column['precision'] = (integer) $length[1] : null;\n\t\t}\n\n\t\tswitch (true) {\n\t\t\tcase in_array($column['type'], ['date', 'time', 'datetime', 'timestamp']):\n\t\t\t\treturn $column;\n\t\t\tcase ($column['type'] === 'tinyint' && $column['length'] == '1'):\n\t\t\tcase ($column['type'] === 'boolean'):\n\t\t\t\treturn ['type' => 'boolean'];\n\t\t\tbreak;\n\t\t\tcase (strpos($column['type'], 'int') !== false):\n\t\t\t\t$column['type'] = 'integer';\n\t\t\tbreak;\n\t\t\tcase (strpos($column['type'], 'char') !== false):\n\t\t\t\t$column['type'] = 'string';\n\t\t\t\t$column['length'] = 255;\n\t\t\tbreak;\n\t\t\tcase (strpos($column['type'], 'text') !== false):\n\t\t\t\t$column['type'] = 'text';\n\t\t\tbreak;\n\t\t\tcase (strpos($column['type'], 'blob') !== false || $column['type'] === 'binary'):\n\t\t\t\t$column['type'] = 'binary';\n\t\t\tbreak;\n\t\t\tcase preg_match('/real|float|double|decimal/', $column['type']):\n\t\t\t\t$column['type'] = 'float';\n\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\t$column['type'] = 'text';\n\t\t\tbreak;\n\t\t}\n\t\treturn $column;\n\t}", "public function testSetCellType() {\n\n $obj = new DataTablesColumn();\n\n $obj->setCellType(\"td\");\n $this->assertEquals(\"td\", $obj->getCellType());\n\n $obj->setCellType(\"th\");\n $this->assertEquals(\"th\", $obj->getCellType());\n\n $obj->setCellType(\"exception\");\n $this->assertEquals(\"td\", $obj->getCellType());\n }", "function checkDataType( $args )\n\t{\n\t\tif ( is_bool( $args ) ) return 'boolean';\n\n\t\tif ( is_null( $args ) ) return 'null';\n\n\t\tif ( is_string( $args ) ) return 'string';\n\n\t\tif ( is_float( $args ) ) return 'float';\n\n\t\tif ( is_int( $args ) ) return 'int';\n\t}", "function get_column_type($table, $column) {\n // function. Returns an array with the field info or false if there is\n // an error.\n $r = $this->db_link->query(\"SELECT $column FROM $table\");\n if (!$r) {\n $this->last_error = $this->db_link->error;\n return false;\n }\n $finfo = $r->fetch_field_direct(0);\n\t $ret = $finfo->type;\n if (!$ret) {\n $this->last_error = \"Unable to get column information on $table.$column.\";\n\t $r->close();\n return false;\n }\n $r->close();\n return $ret;\n \n }", "public function _get_type($field, $value) {\n\n if (strcasecmp($value,'char')==0) { //I am filtering all the char to do them \"char varying\"\n $remove_length=true;\n $fieldsql = $field .\" CHAR VARYING \";\n }elseif (strcasecmp($value,'int')==0) {\n $remove_length=true;\n $fieldsql = $field .\" \".strtoupper($value) . \" \";\n\n }else{\n $fieldsql = $field .\" \".strtoupper($value) . \" \";\n $remove_length=false;\n }\n\n //$remove_length variable manage when is necessary to remove the length\n return array('sql_returned'=>$fieldsql,'remove_length'=>$remove_length);\n }", "public function verify_field($value,$type=\"none\")\r\n {\r\n if(is_string($value))\r\n $l = strlen($value)==0?true:false;\r\n if($l)\r\n return false;\r\n switch($type) {\r\n case 'number': // check is its number\r\n return is_numeric($value);\r\n break;\r\n case 'alphabet': // check if its only alphabet\r\n preg_match(\"/[A-Za-z]+/s\",$value,$a);\r\n return (abs(strlen($value)-strlen($a[0]))>0)?false:true;\r\n break;\r\n case 'email': // check for email\r\n preg_match(\"/[A-Za-z0-9_]+@[A-Za-z0-9]+.[A-Za-z]+/s\",$value,$a);\r\n return (abs(strlen($value)-strlen($a[0]))>0)?false:true;\r\n break;\r\n case 'datetime':\r\n $a = date_parse($value);\r\n return ($a[\"error_count\"]>0)?false:true;\r\n break;\r\n default:\r\n throw new \\Exception(\"No type was specified\", 1);\r\n }\r\n return false;\r\n }", "protected function valueToSQL(string $columnType, $originalValue) {\n $value = $originalValue;\n switch($columnType) {\n case \"boolean\":\n $value = ($originalValue === true) ? 1 : 0;\n break;\n case null:\n $value = \"NULL\";\n break;\n }\n return $value;\n }", "public function GetColumnDataType($column, $table = null)\n {\n $this->ResetError();\n if (!$this->IsConnected()) {\n return $this->SetError('No connection', -1);\n }\n if (empty($table)) {\n if ($this->RowCount() > 0) {\n if (is_numeric($column)) {\n return mysql_field_type($this->last_result, $column);\n } else {\n return mysql_field_type($this->last_result, $this->GetColumnID($column));\n }\n } else {\n return false;\n }\n } else {\n if (is_numeric($column)) $column = $this->GetColumnName($column, $table);\n\n $sql = 'SELECT ' . self::SQLFixName($column) . ' FROM ' . self::SQLFixName($table) . ' LIMIT 1';\n $this->last_sql = $sql;\n $this->query_count++;\n $result = mysql_query($sql, $this->mysql_link);\n if (!$result) {\n return $this->SetError('The specified column or table does not exist, or no data was returned');\n } else {\n if (mysql_num_fields($result) > 0) {\n return mysql_field_type($result, 0);\n } else {\n return $this->SetError('The specified column or table does not exist, or no data was returned', -1);\n }\n }\n }\n }", "public function setDataType( $column, $type='string' )\n {\n if( is_array($column) )\n {\n foreach( $column as $_column )\n {\n $this->_dataTypes[ $_column ] = $type;\n }\n }\n else\n {\n $this->_dataTypes[ $column ] = $type;\n }\n }", "public function test_column_type_change() {\n\n\t\tglobal $wpdb;\n\n\t\t// id: bigint(20) => int(11)\n\t\t$updates = dbDelta(\n\t\t\t\"\n\t\t\tCREATE TABLE {$wpdb->prefix}dbdelta_test (\n\t\t\t\tid int(11) NOT NULL AUTO_INCREMENT,\n\t\t\t\tcolumn_1 varchar(255) NOT NULL,\n\t\t\t\tPRIMARY KEY (id),\n\t\t\t\tKEY key_1 (column_1($this->max_index_length)),\n\t\t\t\tKEY compound_key (id,column_1($this->max_index_length))\n\t\t\t)\n\t\t\t\"\n\t\t);\n\n\t\t$bigint_display_width = '(20)';\n\n\t\t/*\n\t\t * MySQL 8.0.17 or later does not support display width for integer data types,\n\t\t * so if display width is the only difference, it can be safely ignored.\n\t\t * Note: This is specific to MySQL and does not affect MariaDB.\n\t\t */\n\t\tif ( version_compare( self::$db_version, '8.0.17', '>=' )\n\t\t\t&& ! str_contains( self::$db_server_info, 'MariaDB' )\n\t\t) {\n\t\t\t$bigint_display_width = '';\n\t\t}\n\n\t\t$this->assertSame(\n\t\t\tarray(\n\t\t\t\t\"{$wpdb->prefix}dbdelta_test.id\"\n\t\t\t\t\t=> \"Changed type of {$wpdb->prefix}dbdelta_test.id from bigint{$bigint_display_width} to int(11)\",\n\t\t\t),\n\t\t\t$updates\n\t\t);\n\t}" ]
[ "0.81155396", "0.63605", "0.63299525", "0.61782104", "0.61546427", "0.6082129", "0.5906964", "0.5890695", "0.5884858", "0.581713", "0.577849", "0.57190585", "0.569192", "0.56287277", "0.56276035", "0.56240296", "0.5619788", "0.56177866", "0.5582981", "0.55592376", "0.5523898", "0.5516335", "0.5508613", "0.54687864", "0.5467447", "0.54527634", "0.5451638", "0.5426655", "0.5420383", "0.53914946" ]
0.81052816
1
Check whether an ID is a valid event ID. The current implementation just checks if the ID is a number
public static function isValidId($id) { $id = (int)$id; return !empty($id); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function validateID($id) {\n return ( is_numeric ( $id ) );\n }", "function isId($id)\n{\n\t// and the integer is > 0, then it's a valid ID.\n\tif(app_is_int($id) && $id > 0) {\n\t\treturn true;\n\t}\n\telse {\n\t\treturn false;\n\t}\n}", "private function validateId($id) { return (isset($id) && (int) $id > 0) ? true : false; }", "public static function isValid($id)\n {\n $res = false;\n\n if (ctype_digit($id)) {\n $res = true;\n }\n return $res;\n }", "static public function isValidID( $id )\n {\n return isset( $id ) && ( ((int)$id) > 0 );\n }", "function isValidID($id) {\n if (empty($id)) return false;\n elseif ($id < 1) return false;\n elseif (version_compare(phpversion(), \"5.2.0\", \">=\") && !filter_var($id, FILTER_VALIDATE_INT)) \n\treturn false;\n elseif (!is_numeric($id)) return false;\n else return true;\n}", "public function is_valid_id($id){\n\t\treturn (boolean) preg_match('/^[A-z0-9]+$/', $id);\n\t}", "private function checkIdNumberFormat($id_number)\n {\n return (preg_match('/(^[A-Z][0-9]{9})/u', $id_number) === 1) ? true : false;\n }", "private function checkId($id) {\n\t\t$id = (int) $id;\n\t\tif (is_int($id) && $id > 0) return $id;\n\t\treturn false;\n\t}", "private function _validateId($id) {\n try {\n $id = intval($id);\n } catch (Exception $e) {\n throw new Exception(\"error by parsing the id (\".$e->message.\")\");\n }\n\n # test if id is set and not 0\n if (!isset($id) || $id === 0) {\n throw new Exception(\"id must be set and greater then 0\");\n }\n\n return $id;\n }", "public function validateEvent($idEvent){\n\t\t$userId = $this->getUser()->getId();\n\t\t$event = EventsQuery::create()->findPk($idEvent);\n\t\tif(!($event instanceof Events) || $event->getIdUser() != $userId){\n\t\t\treturn false;\n\t\t}\n\t\treturn true;\n\t}", "function steamIDFormatIsValid($steamid) {\n\t\tif (strlen($steamid) == 17 && is_numeric($steamid) && strpos($steamid, '7656') === 0) {\n\t\t\treturn true;\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t}", "abstract protected function validateId($id): bool;", "protected function is_valid_id()\n\t{\n\t\treturn\t!empty($this -> id);\n\t}", "function validate_id( $id ) {\n\n if ( validate_length( $id, 4, 64) ) return 'id-length-too-short-or-too-long';\n // if ( ! preg_match(\"/^[a-zA-Z0-9\\-_@\\.]+$/\", $id) ) return 'id-malformed';\n return false;\n\n}", "function checkId($id)\n\t{\n\t\tif( $id < 0 )\n\t\t{\n\t\t\treturn 0;\n\t\t}\n\n\t\tif( (intVal($id) == 0 && $id != 0) || (intVal($id) == 1 && $id != 1) )\n\t\t{\n\t\t\treturn 0;\n\t\t}\n\n\t\treturn 1;\n\t}", "public static\tfunction validarID($id){\n \t /*Chequeo si el identificador es numerico*/\n \t $permitidos = \"0123456789\"; \n for ($i=0; $i < strlen($id); $i++)\n { \n if (strpos($permitidos, substr($id,$i,1)) === false)\n { \n /*Si no es así, devuelvo que el usuario es invalido*/\n return FALSE; \n } \n }\n \t return TRUE;\n \t}", "private function _validateId($id = null)\n {\n if (empty($id)) {\n throw new InvalidArgumentException('expected transaction id to be set');\n }\n if (!preg_match('/^[0-9a-z]+$/', $id)) {\n throw new InvalidArgumentException($id . ' is an invalid transaction id.');\n }\n }", "public static function isValidID( $value ) {\r\n\t\t\tif( ValidatorLogic::isNotNull( $value ) ) {\r\n\t\t\t\tif(validator::isPositiveNumber( $value ) ) {\r\n\t\t\t\t\tif( is_integer( $value ) ) {\r\n\t\t\t\t\t\treturn true;\r\n\t\t\t\t\t} else {\r\n\t\t\t\t\t\tthrow new ValidationException( \"The value was not a positive integer which would indicate a proper DB index ID\", 7210, null, $value );\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}", "function _checkId($id)\n\t{\n\t\t//passed id null or string\n\t \tif($id==null OR !(is_numeric($id)))\n\t\treturn false;\n\t\t//Checking server id exist or not in database\n\t\tif( $this->WpServer->find( 'count', array('conditions' => array('WpServer.id' => $id)) ) <= 0 )\n\t\treturn false;\n\t\t\n\t\treturn true;\n\t}", "function checkID()\n\t{\n\t\t$ids = $this->getCronIDs();\n\t\treturn in_array($this->_id, $ids);\n\t}", "protected function checkMessageID(&$inMessage = '') {\n\t\t$isValid = true;\n\t\tif ( !is_numeric($this->_MessageID) && $this->_MessageID !== 0 ) {\n\t\t\t$inMessage .= \"{$this->_MessageID} is not a valid value for MessageID\";\n\t\t\t$isValid = false;\n\t\t}\n\t\treturn $isValid;\n\t}", "public static function assertID($value) {\n //Treat it as a normal integer id\n if(is_numeric($value)) {\n return self::assertTrue($value > 0);\n }\n\n //Treat it as a tournament id\n else if(is_string($value)) {\n return self::assertTourneyID($value);\n }\n\n self::fail('id value type (' . gettype($value) . ') invalid');\n }", "public function isValid($id)\n {\n return Str::string($id) & ctype_alnum($id) & Str::length($id) === 40;\n }", "function is_id($ID)\n{\n if($ID!='')\n {\n $ID=preg_split('//', $ID, -1);\n $bool=true;\n for($x = 0; $x < sizeof($ID); $x++)\n {\n if(!($ID[$x]>0||$ID[$x]==0||$ID[$x]<0))\n $bool=false;\n }\n return $bool;\n }\n else\n return false;\n}", "function check_validBannerID($student_BannerID)\n{\n\tif(strlen($student_BannerID)==0)\n\t{\n\t\techo\"No ID number given.\\n\";\n\t\treturn false;\n\t}\n\telseif(strlen($student_BannerID)>10)\n\t{\n\t\techo\"Number is too long.\\n\";\n\t\treturn false;\n\t}\n\telseif(ctype_digit($student_BannerID) == false)\n\t{\n\t\techo\"Number does not contain only numbers.\\n\";\n\t\treturn false;\n\t}\n\telse\n\t{\n\t\treturn true;\n\t}\n}", "function is_valid_input( $id = 0 ) {\n\n\t\treturn true;\n\t}", "public function validateId($id): bool\n {\n try {\n if (\\preg_match('/^[a-zA-Z0-9-]{' . $this->lengthSessionID . '}+$/', $id) !== 1) {\n return false;\n }\n\n $sql = 'SELECT COUNT(id) FROM sessions WHERE id=:id';\n $params = ['id' => $id];\n $count = $this->db->count($sql, $params);\n\n return $count === 1;\n } catch (DatabaseException $e) {\n throw new SessionException('could not validate id: ' . $e->getMessage(), $e->getCode(), $e->getPrevious());\n }\n }", "function IsObjectId($id)\n\t{\n\t\tif(strlen($id) == 18)\n\t\t\treturn false;\n\t\telse if(strlen($id) == 24)\n\t\t\treturn true;\n\t\telse\n\t\t\treturn -1;\n\t}", "protected function isId($value)\n {\n return isset($value) && intval($value) != 0;\n }" ]
[ "0.7826365", "0.7088158", "0.7078805", "0.70611775", "0.7019991", "0.69403917", "0.68615746", "0.67104036", "0.6694466", "0.6631795", "0.6599778", "0.656753", "0.65569985", "0.6533952", "0.64972925", "0.6446064", "0.6425342", "0.6392476", "0.6306311", "0.62463003", "0.62439334", "0.62065345", "0.6205404", "0.6193938", "0.61518615", "0.6080799", "0.59918165", "0.5991158", "0.59615606", "0.5935996" ]
0.71079576
1
Return the raw sql statement as a string.
public function getRawSql() { return $this->sql; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getRawSql() : string\n {\n if (empty($this->params)) {\n return $this->_sql;\n }\n $params = [];\n foreach ($this->params as $name => $value) {\n if (is_string($name) && strncmp(':', $name, 1)) {\n $name = ':' . $name;\n }\n if (is_string($value)) {\n $params[$name] = $this->db->quoteValue($value);\n } elseif (is_bool($value)) {\n $params[$name] = ($value ? 'TRUE' : 'FALSE');\n } elseif ($value === null) {\n $params[$name] = 'NULL';\n } elseif ((!is_object($value) && !is_resource($value)) || $value instanceof Expression) {\n $params[$name] = $value;\n }\n }\n if (!isset($params[1])) {\n return strtr($this->_sql, $params);\n }\n $sql = '';\n foreach (explode('?', $this->_sql) as $i => $part) {\n $sql .= ($params[$i] ?? '') . $part;\n }\n\n return $sql;\n }", "public function getRawSql()\n {\n if (empty($this->params)) {\n return $this->_sql;\n }\n $params = [];\n foreach ($this->params as $name => $value) {\n if (is_string($name) && strncmp(':', $name, 1)) {\n $name = ':' . $name;\n }\n if (is_string($value)) {\n $params[$name] = $this->db->quoteValue($value);\n } elseif (is_bool($value)) {\n $params[$name] = ($value ? 'TRUE' : 'FALSE');\n } elseif ($value === null) {\n $params[$name] = 'NULL';\n } elseif (!is_object($value) && !is_resource($value)) {\n $params[$name] = $value;\n }\n }\n if (!isset($params[1])) {\n return strtr($this->_sql, $params);\n }\n $sql = '';\n foreach (explode('?', $this->_sql) as $i => $part) {\n $sql .= (isset($params[$i]) ? $params[$i] : '') . $part;\n }\n\n return $sql;\n }", "public function getSql() : string\n {\n return $this->_sql;\n }", "public function toSql () : string\n {\n return Syntax::toSql();\n }", "public function sql() : string\n {\n return $this->sql;\n }", "public function __toString(): string\n {\n return $this->getSql();\n }", "public function __toString()\n {\n return (string) $this->getQuery()->getStatement();\n }", "public function toSql() : string\n {\n return $this->__toString();\n }", "public function toSql() {\n\t\treturn \"\";\n\t}", "public function getSQL() :string\n {\n return sprintf($this->selectInstruction, implode('', [\n (!empty($this->selectRule) ? ' ' . $this->selectRule : '') .\n ($this->highPriority == true ? ' HIGH_PRIORITY' : '') .\n ($this->straightJoin == true ? ' STRAIGHT_JOIN' : '') .\n (count($this->sizeResult) > 0 ? ' ' . implode(' ', $this->sizeResult) : '') .\n ($this->noCache == true ? ' SQL_NO_CACHE' : '') .\n ($this->sqlCalcFoundRows == true ? ' SQL_CALC_FOUND_ROWS' : '') .\n ' ' . implode(',', $this->select)\n ]), implode('', [\n ($this->tableAlias ? ' `' . $this->table . '` AS `' . $this->tableAlias . '`' : ' `' . $this->table . '`'),\n (count($this->join) > 0 ? ' ' . $this->mountJoin($this->join) : ''),\n (count($this->where) > 0 ? ' WHERE ' . $this->mountWhere($this->where) : ''),\n count($this->groupBy) > 0 ? $this->mountGroupBy($this->groupBy) : '',\n ($this->groupByWithRollup == true ? ' WITH ROLLUP' : ''),\n (is_object($this->having) > 0 ? ' ' . $this->mountHaving($this->having) : ''),\n (count($this->orderBy) > 0 ? ' ' . $this->mountOrderBy($this->orderBy) : ''),\n ($this->orderByWithRollup == true ? ' WITH ROLLUP' : ''),\n (!empty($this->limit) ? ' LIMIT ' . $this->limit : ''),\n (!empty($this->offset) ? ' OFFSET ' . $this->offset : '')\n ]));\n }", "public function getSQL()\n {\n return $this->buildQuery()->getSQL();\n }", "public function getSQL()\n {\n $query = 'SELECT * FROM ' . $this->table;\n\n if (!empty($this->where)) {\n $query .= ' WHERE ' . join(' AND ', $this->where);\n }\n\n if (!empty($this->orderBy)) {\n $query .= ' ORDER BY ' . join(', ', $this->orderBy);\n }\n\n if ($this->limit) {\n $query .= ' LIMIT ' . $this->limit;\n }\n\n return $query . ';';\n }", "public function sql(){\r\n return $this->sql->replace('@fields', $this->selectFields)->toString();\r\n }", "public function getStatement()\n {\n $union = '';\n if (! empty($this->union)) {\n $union = implode(PHP_EOL, $this->union) . PHP_EOL;\n }\n return $union . $this->build();\n }", "public function fetchSqlString()\n {\n return $this->cur_query;\n }", "public function __toString() {\n return $this->_sql;\n }", "public function getSql()\n {\n return $this->sql;\n }", "public function getSql()\n {\n return $this->sql;\n }", "public function getSql()\n {\n return $this->sql;\n }", "public function toSql()\n {\n /* fetch by current query */\n $query = $this->_query;\n $sql = $query->build();\n $vars = $query->vars;\n foreach( $vars as $name => $value ) {\n $sql = str_replace( $name, $value, $sql );\n }\n return $sql;\n }", "protected function query(): string\n {\n $table = $this->_TABELS[0];\n $column = implode(', ', $this->_COLUMNS);\n $where_statment = $this->getWhere();\n $where_statment = $where_statment == '' ? '' : \"WHERE $where_statment\";\n $sortOrder = $this->_SORT_ORDER;\n $limit = $this->_limit_start < 0 ? \"LIMIT $this->_limit_end\" : \"LIMIT $this->_limit_start, $this->_limit_end\";\n $limit = $this->_limit_end < 1 ? '' : $limit;\n // merge join\n $this->_JOIN[] = $this->_COSTUME_JOIN;\n $join = implode(' ', $this->_JOIN);\n\n return \"SELECT $column FROM $table\n $join $where_statment ORDER BY $sortOrder $limit\";\n }", "public function __toString()\n {\n return $this->sql;\n }", "public function toSql()\n\t{\n\t\tif ($this->_limitAmount) {\n\t\t\t$limit = $this->_limitAmount . ($this->_limitOffset ? \" OFFSET \" . $this->_limitOffset : '');\n\t\t} else if ($this->_limitOffset) {\n\t\t\t$limit = '999999 OFFSET ' . $this->_limitOffset;\n\t\t} else {\n\t\t\t$limit = false;\n\t\t}\n\n\t\treturn 'SELECT ' . implode(', ', $this->_fields)\n\t\t\t. \"\\nFROM `$this->_table`\"\n\t\t\t. ($this->_joins ? \"\\n\" . implode(\"\\n\", $this->_joins) : '')\n\t\t\t. ($this->_conditions ? \"\\nWHERE \" . implode(' AND ', $this->_conditions) : '')\n\t\t\t. ($this->_groupBy ? \"\\nGROUP BY \" . implode(', ', $this->_groupBy) : '')\n\t\t\t. ($this->_orderBy ? \"\\nORDER BY \" . implode(', ', $this->_orderBy) : '')\n\t\t\t. ($limit ? \"\\nLIMIT $limit\" : '');\n\t}", "public function getSql() {\n return $this -> sql;\n }", "public function fetchSqlString();", "private function _getSQL() {\n\t\t$str = '';\n\n\t\t// Inicia la construccion de la consulta\n\t\tswitch ($this->_operation) {\n\t\t\tcase 'SELECT':\n\t\t\tcase 'SELECT DISTINCT':\n\t\t\t\t$str = $this->_operation . ' ';\n\t\t\t\t$str .= $this->_getCols();\n\t\t\t\t$str .= $this->_getFrom();\n\t\t\t\t$str .= $this->_getWhere();\n\t\t\t\t$str .= $this->_getGroup();\n\t\t\t\t$str .= $this->_getHaving();\n\t\t\t\t$str .= $this->_getOrder();\n\t\t\t\t$str .= $this->_getLimit();\n\t\t\t\tbreak;\n\n\t\t\tcase 'INSERT':\n\t\t\t\t$str = 'INSERT INTO ' . $this->_table . ' '. $this->_getCols();\n\t\t\t\tbreak;\n\n\t\t\tcase 'INSERT IGNORE':\n\t\t\t\t$str = 'INSERT IGNORE INTO ' . $this->_table . ' '. $this->_getCols();\n\t\t\t\tbreak;\n\n\t\t\tcase 'REPLACE':\n\t\t\t\t$str = 'REPLACE INTO ' . $this->_table . ' '. $this->_getCols();\n\t\t\t\tbreak;\n\n\t\t\tcase 'UPDATE':\n\t\t\t\t$str = 'UPDATE ' . $this->_table . ' SET '. $this->_getCols();\n\t\t\t\t$str .= $this->_getWhere();\n\t\t\t\tbreak;\n\n\t\t\tcase 'DELETE':\n\t\t\t\t$str = 'DELETE FROM ' . $this->_table;\n\t\t\t\t$str .= $this->_getWhere();\n\t\t\t\tbreak;\n\n\t\t\tcase 'QUERY':\n\t\t\t\t$str = $this->_query;\n\t\t\t\tbreak;\n\n\t\t\tdefault:\n\t\t\t\treturn '';\n\t\t\t\tbreak;\n\t\t}\n\t\treturn $str;\n\t}", "public function getSql()\n {\n return $this->sql;\n }", "public function __toString()\n {\n return $this->sql();\n }", "public function toSql()\n {\n return '';\n }", "public function get_sql() {\n\t\treturn $this->_build_select();\n\t}" ]
[ "0.78803456", "0.7816266", "0.744117", "0.7368804", "0.7357045", "0.7346664", "0.73444587", "0.72985685", "0.72757995", "0.723804", "0.7189384", "0.7171218", "0.7168403", "0.71506613", "0.71486294", "0.70933354", "0.7072355", "0.7072355", "0.7072355", "0.7061428", "0.70570207", "0.7055914", "0.70533484", "0.70468545", "0.7029721", "0.70111716", "0.7002095", "0.69995964", "0.69913393", "0.69849575" ]
0.816555
0
Builds a where condition from the array parameter. Example $condition = [ ['=', 'id', '1'], ['and'], ['!=', 'status', '0'] ];
private function buildCondition($condition) { $where = ''; foreach($condition as $filter) { switch(count($filter)) { case 1: $where .= ' ' . $this->validateLogicalOperator(($filter[0])) . ' '; break; case 3: $where .= $this->quoteColumnName($filter[1]) .' '. $this->validateComparisonOperators($filter[0]) .' '. $this->handleThridParameter($filter[2]); break; case 4: $where .= $this->quoteColumnName($filter[1]) .' '. $this->validateComparisonOperators($filter[0]) .' '. $this->quoteValue($filter[2]) . ' AND ' . $this->quoteValue($filter[3]); break; } } return $where; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function _db_where($condition) {\n\t$queryString = \"\";\n\tif (is_array($condition)) {\n\t\tforeach ($condition as $fName => $fValue) {\n\t\t\t$queryString .= '(' . $fName . '=';\n\t\t\t$queryString .= ($fValue) . \") AND \";\n\t\t}\n\t\t$qLength = strlen($queryString);\n\t\t$queryString = substr($queryString, 0, $qLength-5);\n\t} else if (is_string($condition)) {\n\t\t$queryString = $condition;\n\t}\n\treturn $queryString;\n}", "public function where($condition)\r\n {\r\n // where(array('field1'=>'value', 'field2'=>'value'))\r\n $this->where = (NULL !== $this->where) ? $this->where . ' OR (' : '(';\r\n if (is_array($condition)) {\r\n $i = 0;\r\n $operand = '=';\r\n foreach ($condition as $field => $value) {\r\n $this->where .= ($i > 0) ? ' AND ' : '';\r\n if (is_int($field)) {\r\n $this->where .= $value;\r\n }\r\n else {\r\n $parts = explode(' ', $value);\r\n foreach (self::$operators as $operator) {\r\n if (in_array($operator, $parts, TRUE) && $parts[0] === $operator) {\r\n $operand = $operator;\r\n }\r\n }\r\n $this->where .= $field . ' ' . $operand . ' ' . str_replace($operand, '', $value);\r\n $operand = '=';\r\n }\r\n ++$i;\r\n }\r\n }\r\n else {\r\n $this->where .= $condition;\r\n }\r\n $this->where .= ')';\r\n\r\n return $this;\r\n }", "public function buildCondition($condition)\n {\n static $builders = [\n 'NOT' => 'buildNotCondition',\n 'AND' => 'buildAndCondition',\n 'OR' => 'buildOrCondition',\n 'BETWEEN' => 'buildBetweenCondition',\n 'NOT BETWEEN' => 'buildBetweenCondition',\n 'IN' => 'buildInCondition',\n 'NOT IN' => 'buildInCondition',\n 'REGEX' => 'buildRegexCondition',\n 'LIKE' => 'buildLikeCondition',\n ];\n\n if (!is_array($condition)) {\n throw new InvalidParamException('Condition should be an array.');\n } elseif (empty($condition)) {\n return [];\n }\n if (isset($condition[0])) { // operator format: operator, operand 1, operand 2, ...\n $operator = strtoupper($condition[0]);\n if (isset($builders[$operator])) {\n $method = $builders[$operator];\n } else {\n $operator = $condition[0];\n $method = 'buildSimpleCondition';\n }\n array_shift($condition);\n return $this->$method($operator, $condition);\n } else {\n // hash format: 'column1' => 'value1', 'column2' => 'value2', ...\n return $this->buildHashCondition($condition);\n }\n }", "function buildWhere($array){\n\n\t $result = array();\n\n\t if(is_array($array)){\n\n\t\tforeach($array as $k=>$v){\n\n\t\t $where .= $separator;\n\n\t\t if(is_array($v)){\n\n\t\t\t$where .= '('.buildWhere($v).')';\n\n\t\t }\n\n\t\t else $where .= $v;\n\n\t\t if(!$separator) $separator = \" AND \";\n\n\t\t}//end foreach($array)\n\n\t }// end if(is_array($array))\n\n\t return $where;\n\n\t}", "public function where(array $array) \n {\n \t$strQuery = '';\n\n \t//crear un array definitivo con los arrays anteriores\n \tforeach($array as $key => $value) {\n \t\tif (is_numeric($value)) {\n \t\t\t$value = '{table}.'.$key . ' = ' . \"{$value}\";\n \t\t}\n \t\telse{\n \t\t\t$value = '{table}.'.$key . ' = ' . \"'{$value}'\";\n \t\t}\n \t\t$strQuery .= $value . ' and ';\n \t}\n \t\n \t//creo el sql definitivo\n \t$this->where = rtrim($strQuery, ' and ');\n }", "protected function createWhereConditionByArray($where_condition_list)\n {\n if (empty($where_condition_list)) {\n return ['sql' => '', 'params' => []];\n }\n $sql = '1';\n $param_list = [];\n foreach ($where_condition_list as $where_condition_key => $where_condition_value) {\n $column = trim(preg_replace('/(`|>|<|=|!| is| not| in)+/i', '', $where_condition_key));\n if (preg_match('/ in/i', $where_condition_key)) {\n // in\n if (empty($where_condition_value)) {\n continue;\n }\n\n $where_condition_value = array_unique(array_clear_empty($where_condition_value));\n $sql .= \" AND {$where_condition_key} ( '\" . implode(\"','\", $where_condition_value) . \"')\";\n } else {\n $sql .= \" AND {$where_condition_key} :where_{$column} \";\n $param_list[\":where_{$column}\"] = $where_condition_value;\n }\n }\n return ['sql' => $sql, 'params' => $param_list];\n }", "public function where(array $condition=[], LogicalOperator $logicalOperator=LogicalOperator::_AND_): Condition\n {\n $where = new Condition($condition, $logicalOperator);\n $this->where=$where;\n return $where;\n }", "private function _getCondition($condition)\n\t{\n\t\t$conditionStr = \"WHERE 1 = 1\";\n\t\tif (is_string($condition) || is_numeric($condition)) {\n\t\t\t$conditionStr .= \" AND `{$this->_primaryKey}` = '{$condition}'\";\n\t\t} else if (is_array($condition)) {\n\t\t\t$groupStr = '';\n\t\t\t$orderStr = '';\n\t\t\t$limitStr = '';\n\t\t\tforeach ($condition as $key => $value) {\n\t\t\t\tswitch ($key) {\n\t\t\t\t\tcase 'group':\n\t\t\t\t\t\t$groupStr = $this->_getGroupBy($value);\n\t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'order':\n\t\t\t\t\t\t$orderStr = $this->_getOrderBy($value);\n \t\t\t\t\t\tbreak;\n\t\t\t\t\tcase 'limit':\n\t\t\t\t\t\t$limitStr = $this->_getLimit($value);\n\t\t\t\t\t\tbreak;\n\t\t\t\t}\n\n\t\t\t\t$key = explode(':', $key);\n\t\t\t\tif (count($key) != 2) {\n\t\t\t\t\tcontinue;\n\t\t\t\t}\n\t\t\t\t$field = $key[0];\n\t\t\t\t$compare = strtolower($key[1]);\n\t\t\t\t$op = self::$_op;\n\t\t\t\tif (isset($op[$compare])) {\n\t\t\t\t\t$conditionStr .= \" AND `{$field}` {$op[$compare]} '{$value}'\";\n\t\t\t\t} else {\n\t\t\t\t\tswitch ($compare) {\n\t\t\t\t\t\tcase 'like':\n\t\t\t\t\t\t\t$conditionStr .= \" AND `{$field}` LIKE '%{$value}%'\";\n\t\t\t\t\t\t\tbreak;\t\n\t\t\t\t\t\tcase 'in':\n\t\t\t\t\t\t\t$conditionStr .= \" AND `{$field}` IN ('\".join(\"','\", $value).\"')\";\n\t\t\t\t\t\t\tbreak;\t\t\t\t\t\t\t\n\t\t\t\t\t\tcase 'notin':\n\t\t\t\t\t\t\t$conditionStr .= \" AND `{$field}` NOT IN ('\".join(\"','\", $value).\"')\";\n\t\t\t\t\t\t\tbreak;\t\t\t\n\t\t\t\t\t\tcase 'between':\n\t\t\t\t\t\t\t$conditionStr .= \" AND `{$field}` BETWEEN '$value[0]' AND '{$value[1]}'\";\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 'llike':\n\t\t\t\t\t\t\t$conditionStr .= \" AND `{$field}` LIKE '{$value}%'\";\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tcase 'rlike':\n\t\t\t\t\t\t\t$conditionStr .= \" AND `{$field}` LIKE '%{$value}'\";\n\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\tdefault:\n\t\t\t\t\t\t\tthrow new Exception('op type undefined.');\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\treturn $conditionStr.$groupStr.$orderStr.$limitStr;\n\t}", "private function createConditionWhere($conditions = NULL, $where = NULL, $where_params = NULL){\n\t\t$sql_where = '';\n\t\tif(isset($conditions)){\n\n\t\t\t//$conditions => array(key1[:operator1] => value1, key2[:operator2] => value2)\n\t\t\t//(operatorを省略するとデフォルトは\"=\")\n\t\t\t//配列の場合、key1 operator1 value1 AND key2 operator2 value2\n\t\t\t//(IS NULL or IS NOT NULL はオペランドなし)\n\t\t\tif(is_array($conditions)){\n\n\t\t\t\tforeach($conditions as $key => $value){\n\t\t\t\t\tpreg_match('/([^:]+):?([^:]*)/', $key, $matches);\n\t\t\t\t\t$column = $matches[1];\n\t\t\t\t\t$operator = $matches[2];\n\t\t\t\t\tif( $operator == '' ){\n\t\t\t\t\t\tif ( is_array( $value ) ){\n\t\t\t\t\t\t\t$operator = 'in';\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t$operator = '=';\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\tif( preg_match('/IS\\s+NULL|IS\\s+NOT\\s+NULL/i', $operator) ){\n\t\t\t\t\t\t//IS NULL or IS NOT NULL はオペランドなし\n\t\t\t\t\t\t$operand = '';\n\t\t\t\t\t}else{\n\t\t\t\t\t\tif( is_array( $value ) ) {\n\t\t\t\t\t\t\t$buf = array();\n\t\t\t\t\t\t\t$null_flg = 0;\n\t\t\t\t\t\t\tforeach( $value as $key ){\n\t\t\t\t\t\t\t\tif( strtoupper( $key ) == 'NULL' ) $null_flg = 1;\n\t\t\t\t\t\t\t\telse $buf[] = \"'\" . $this->db_read->escape($key) . \"'\";\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tif( $buf ) {\n\t\t\t\t\t\t\t\t$operand = '(' . join( ',', $buf ) . ') ' ;\n\t\t\t\t\t\t\t\tif ( $null_flg ) {\n\t\t\t\t\t\t\t\t\t$operand .= ' or ' . $column . ' is null ) ';\n\t\t\t\t\t\t\t\t\t$column = '(' . $column;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t$operand = '1';\n\t\t\t\t\t\t\t\t$operator = '=';\n\t\t\t\t\t\t\t\t$column = '1';\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\tif ( is_null ( $value ) ) continue;\n\t\t\t\t\t\t\t$operand = \"'\" . $this->db_read->escape($value) . \"'\";\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tif($sql_where == ''){\n\t\t\t\t\t\t$sql_where = \"WHERE $column $operator $operand \";\n\t\t\t\t\t}else{\n\t\t\t\t\t\t$sql_where .= \" AND $column $operator $operand \";\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}else{\n\t\t\t\t//$conditions => value\n\t\t\t\t//配列でない場合で$key_listが単数の場合、key=value、$key_listが単数出ない場合はエラー\n\t\t\t\tif(count($this->key_list) == 1){\n\t\t\t\t\t$sql_where = \"WHERE \" . $this->key_list[0] . \" = '\" . $this->db_read->escape($conditions) . \"'\";\n\t\t\t\t}else{\n\t\t\t\t\t//エラー\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tif($this->column_delete_flg != '' and isset($this->table_info[$this->column_delete_flg])){\n\t\t\tif($sql_where == ''){\n\t\t\t\t$sql_where = \"WHERE $this->column_delete_flg = '0' \";\n\t\t\t}else{\n\t\t\t\t$sql_where .= \" AND $this->column_delete_flg = '0' \";\n\t\t\t}\n\t\t}\n\n\t\tif($where != ''){\n\t\t\tif(is_array($where_params)){\n\t\t\t\tforeach($where_params as $key => $value){\n\t\t\t\t\tif ( is_array ( $value ) ) {\n\t\t\t\t\t\t$vals = array();\n\t\t\t\t\t\tforeach ( $value as $val ) $vals[] = \"'\" . $this->db_read->escape ( $val ) . \"'\";\n\t\t\t\t\t\t$where = str_replace( $key, join ( ',', $vals ), $where );\n\t\t\t\t\t} else {\n\t\t\t\t\t\t$where = str_replace($key, $this->db_read->escape($value), $where);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\tif($sql_where == ''){\n\t\t\t\t$sql_where = \"WHERE $where \";\n\t\t\t}else{\n\t\t\t\t$sql_where .= \" AND $where \";\n\t\t\t}\n\t\t}\n\t\t// self::$whereCache[$this->table_name][serialize( $conditions )][$where][serialize( $where_params)] =$sql_where;\n\t\treturn $sql_where;\n\t}", "public function getWhereClauseFromArray(array $whereArray)\n {\n $where = '';\n\n foreach ($whereArray as $column => $value) {\n $value = $this->quoteValue($value);\n $where .= \"`$column` = $value AND \";\n }\n\n $where = rtrim($where, 'AND ');\n\n return 'WHERE ' . $where;\n }", "protected function sqlBuildConditionalClause($params, $condition) {\n\t\t$clause = \"\";\n\t\t$and = false; //so we know when to add AND in the sql statement\t\n\t\tif ($params != null) {\n\t\t\tforeach ($params as $key => $value) {\n\t\t\t\t$op = '='; //comparison operator\n\t\t\t\tif ($key == 'studio')\n\t\t\t\t\t$op = '<=';\n\t\t\t\tif (!empty($value)) {\n\t\t\t\t\tif ($and){\n\t\t\t\t\t\t$clause = $clause.\" $condition $key $op '$value'\";\n\t\t\t\t\t} else {\n\t\t\t\t\t\t//the first AND condition\n\t\t\t\t\t\t$clause = \"WHERE $key $op '$value'\";\n\t\t\t\t\t\t$and = true;\n\t\t\t\t\t}\t\t\t\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $clause;\n\t}", "public function build_where($where) {\n if (empty($where)) {\n return '';\n }\n $where_sql = '';\n $comma = '';\n foreach ($where as $k => $v) {\n if (is_array($v) && isset($v[0])) {\n if (!isset($v[2]) && !is_array($v[1])) {\n //array('d', 4)\n $tmp_value = $this->raw_quote($v[1]);\n if (empty($tmp_value)) {\n $tmp_value = '';\n }\n $where_sql .= $comma . \" `\" . addslashes($v[0]) . \"` = \" . $tmp_value;\n }if (isset($v[2]) && !isset($v[3])) {\n //array('a', '>', 1),\n $tmp_value = $this->raw_quote($v[2]);\n if (empty($tmp_value)) {\n $tmp_value = '';\n }\n $where_sql .= $comma . \" `\" . addslashes($v[0]) . \"` {$v[1]} \" . $tmp_value;\n } elseif (isset($v[3])) {\n //array('and', 'b', '!=', '2'),\n $tmp_value = $this->raw_quote($v[3]);\n if (empty($tmp_value)) {\n $tmp_value = '';\n }\n $where_sql .= $comma . \" \" . addslashes($v[0]) . \" `\" . addslashes($v[1]) . \"` {$v[2]} \" . $tmp_value;\n } elseif (is_array($v[1])) {\n $where_sql .= $comma . \" \" . addslashes($v[0]) . \" (\" . $this->build_where($v[1]) . \")\";\n }\n } elseif (is_array($v)) {\n //array(k=>v)\n foreach ($v as $k1 => $v1) {\n $tmp_value = $this->raw_quote($v1);\n $where_sql .= $comma . \" `\" . addslashes($k1) . \"` = \" . $tmp_value;\n $comma = ' and ';\n }\n } else {\n //$where = array(k=>v,kk=>vv)\n $tmp_value = $this->raw_quote($v);\n if (empty($tmp_value)) {\n $tmp_value = '';\n }\n $where_sql .= $comma . \" `\" . addslashes($k) . \"` = \" . $tmp_value;\n }\n $comma = ' and ';\n }\n return $where_sql;\n }", "protected function filterCondition($condition)\n {\n if (!is_array($condition)) {\n return $condition;\n }\n\n if (!isset($condition[0])) {\n // hash format: 'column1' => 'value1', 'column2' => 'value2', ...\n foreach ($condition as $name => $value) {\n if ($this->isEmpty($value)) {\n unset($condition[$name]);\n }\n }\n return $condition;\n }\n\n // operator format: operator, operand 1, operand 2, ...\n\n $operator = array_shift($condition);\n\n switch (strtoupper($operator)) {\n case 'NOT':\n case 'AND':\n case 'OR':\n foreach ($condition as $i => $operand) {\n $subCondition = $this->filterCondition($operand);\n if ($this->isEmpty($subCondition)) {\n unset($condition[$i]);\n } else {\n $condition[$i] = $subCondition;\n }\n }\n\n if (empty($condition)) {\n return [];\n }\n break;\n case 'SENTENCE':\n case 'PARAGRAPH':\n $column = array_shift($condition);\n foreach ($condition as $i => $operand) {\n if ($this->isEmpty($operand)) {\n unset($condition[$i]);\n }\n }\n\n if (empty($condition)) {\n return [];\n }\n\n array_unshift($condition, $column);\n break;\n case 'ZONE':\n case 'ZONESPAN':\n foreach ($condition as $i => $operand) {\n if ($this->isEmpty($operand)) {\n unset($condition[$i]);\n }\n }\n\n if (empty($condition)) {\n return [];\n }\n break;\n default:\n if (array_key_exists(1, $condition) && $this->isEmpty($condition[1])) {\n return [];\n }\n }\n\n array_unshift($condition, $operator);\n\n return $condition;\n }", "public function statementConditions(array $conditions = array())\n\t{\n\t\tif(count($conditions) == 0) { return; }\n\t\t\n\t\t$sqlStatement = \"\";\n\t\t$defaultColOperators = array(0 => '', 1 => '=');\n\t\t$ci = 0;\n\t\t$loopOnce = false;\n\t\tforeach($conditions as $condition) {\n\t\t\tif(is_array($condition) && isset($condition['conditions'])) {\n\t\t\t\t$subConditions = $condition['conditions'];\n\t\t\t} else {\n\t\t\t\t$subConditions = $conditions;\n\t\t\t\t$loopOnce = true;\n\t\t\t}\n\t\t\t$sqlWhere = array();\n\t\t\tforeach($subConditions as $column => $value) {\n\t\t\t\t// Column name with comparison operator\n\t\t\t\t$colData = explode(' ', $column);\n\t\t\t\tif ( count( $colData ) > 2 ) {\n\t\t\t\t\t$operator = array_pop( $colData );\n\t\t\t\t\t$colData = array( join(' ', $colData), $operator );\n\t\t\t\t}\n\t\t\t\t$col = $colData[0];\n\t\t\t\t\n\t\t\t\t// Array of values, assume IN clause\n\t\t\t\tif(is_array($value)) {\n\t\t\t\t\t$sqlWhere[] = $col . \" IN('\" . implode(\"', '\", $value) . \"')\";\n\t\t\t\t\n\t\t\t\t// NULL value\n\t\t\t\t} elseif(is_null($value)) {\n\t\t\t\t\t$sqlWhere[] = $col . \" IS NULL\";\n\t\t\t\t\n\t\t\t\t// Standard string value\n\t\t\t\t} else {\n\t\t\t\t\t$colComparison = isset($colData[1]) ? $colData[1] : '=';\n\t\t\t\t\t$columnSql = $col . ' ' . $colComparison;\n\t\t\t\t\t\n\t\t\t\t\t// Add to binds array and add to WHERE clause\n\t\t\t\t\t$colParam = preg_replace('/\\W+/', '_', $col) . $ci;\n\t\t\t\t\t$sqlWhere[] = $columnSql . \" :\" . $colParam . \"\";\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t// Increment ensures column name distinction\n\t\t\t\t$ci++;\n\t\t\t}\n\t\t\tif ( $sqlStatement != \"\" ) {\n\t\t\t\t$sqlStatement .= \" \" . (isset($condition['setType']) ? $condition['setType'] : 'AND') . \" \";\n\t\t\t}\n\t\t\t//var_dump($condition);\n\t\t\t$sqlStatement .= join(\" \" . (isset($condition['type']) ? $condition['type'] : 'AND') . \" \", $sqlWhere );\n\t\t\t\n\t\t\tif($loopOnce) { break; }\n\t\t}\n\t\t\n\t\treturn $sqlStatement;\n\t}", "public function buildWhere($where = [])\n {\n\n if (!$where)\n $where = $this->where;\n\n $sql = ' ';\n\n foreach ($where as $cond)\n $sql .= ' '.$cond.' ';\n\n return $sql;\n\n }", "private function conditions($conditions = []) {\n $out = \" WHERE\";\n $arOut = [];\n foreach ($conditions as $key => $condition) {\n $out .= ' '.$key. ' = ? AND';\n $arOut[] = $condition;\n }\n $out = rtrim($out, ' AND');\n return ['statement'=>$out, 'bind'=>$arOut];\n }", "private function getWhereAndParams($conditions=array())\n {\n $wheres = array();\n $params = array();\n $suffix = 0;\n if(isset($conditions['wheres']) && is_array($conditions['wheres'])>0 && count($conditions['wheres'])>0) {\n foreach($conditions['wheres'] as $k => $v) {\n $k_escaped = str_replace('.', 'DOT', $k);\n if(is_array($v) && count($v)>0) {\n $placeholders = array();\n foreach($v as $vv) {\n $placeholders[] = \":{$k_escaped}{$suffix}\";\n $params[\":{$k_escaped}{$suffix}\"] = $vv;\n $suffix++;\n }\n $implode_placeholders = implode(',', $placeholders);\n $wheres[] = \"{$k} IN({$implode_placeholders})\";\n } else {\n $wheres[] = \"{$k}=:{$k_escaped}\";\n $params[\":{$k_escaped}\"] = $v;\n }\n }\n }\n if(isset($conditions['wheres_not']) && is_array($conditions['wheres_not'])>0 && count($conditions['wheres_not'])>0) {\n foreach($conditions['wheres_not'] as $k => $v) {\n $k_escaped = str_replace('.', 'DOT', $k);\n if(is_array($v) && count($v)>0) {\n $placeholders = array();\n foreach($v as $vv) {\n $placeholders[] = \":{$k_escaped}{$suffix}\";\n $params[\":{$k_escaped}{$suffix}\"] = $vv;\n $suffix++;\n }\n $implode_placeholders = implode(',', $placeholders);\n $wheres[] = \"{$k} NOT IN({$implode_placeholders})\";\n } else {\n $wheres[] = \"{$k}!=:{$k_escaped}\";\n $params[\":{$k_escaped}\"] = $v;\n }\n }\n }\n\n $where = '';\n if(count($wheres)>0) {\n $where = 'WHERE '.implode(' AND ', $wheres);\n }\n\n return array(\n 'where' => $where,\n 'params' => $params,\n );\n }", "public function BuildSQLWhereClause($whereArray)\n {\n switch (gettype($whereArray)) {\n case 'array':\n $where = '';\n foreach ($whereArray as $key => $value) {\n if (strlen($where) == 0) {\n $where = 'WHERE ';\n } else {\n $where .= ' AND ';\n }\n\n if (is_string($key) && empty($key))\n return $this->SetError('ERROR: Invalid key specified in BuildSQLWhereClause method', -1);\n if (empty($value) && !is_integer($value))\n return $this->SetError('ERROR: Invalid value specified in BuildSQLWhereClause method for key ' . self::SQLFixName($key), -1);\n\n if (is_string($key)) {\n $where .= self::SQLFixName($key) . ' = ' . $value;\n } else {\n $where .= $value;\n }\n }\n return $where;\n\n case 'string':\n return $whereArray;\n\n default:\n return $this->SetError('ERROR: Invalid key specified in BuildSQLWhereClause method', -1);\n }\n }", "protected function _build_where() {\n\t\treturn $this->_build_conditions( 'where' );\n\t}", "public function where($condition)\n {\n if($this->where == null)\n $this->where = 'WHERE ' . $condition;\n else\n $this->where = $this->where . ' AND ' . $condition;\n }", "protected function _compileWhereArray($source, $conditions){\n\n $where = array();\n\n if (!$conditions)\n return $where;\n\n $model = $this->createModel($source);\n\n foreach ($conditions as $k => $v){\n\n // detect if we have array\n if (!is_numeric($k) && (is_scalar($v) || $v === null) && !preg_match('/^(AND|OR|NOT|IN)\\s/is', $v)){\n\n /*if (!isset($model->getModelFields()[$k]))\n continue; */\n\n // we have simple value\n\n $z = $this->compileWhereValue($model, $k, array('value' => trim($v), 'op' => '='));\n\n if ($z != '')\n $where[] = $z;\n\n //$where[] = $this->quoteField($k).'=\\''.$this->quote($model->getModelFields()[$k], trim($v)).'\\'';\n\n } elseif (!is_numeric($k) && is_array($v)){\n\n if ($k == '$or'){\n $v = $this->compileOr($model, $v);\n\n if ($v != '')\n $where[] = $v;\n\n } elseif ($k == '$and'){\n\n $v = $this->compileAnd($model, $v);\n\n if ($v != '')\n $where[] = $v;\n\n } else {\n\n $v = $this->compileWhereValue($model, $k, $v);\n\n //if ($v != '' && !preg_match('/^(AND|OR|NOT)\\s/is', $v))\n if ($v != '')\n $where[] = $v;\n\n }\n\n\n } elseif (is_numeric($k) && is_array($v)){\n\n // compile special expressions, like '$or' or '$and'\n if (($l = $this->_compileWhereExpression($model, $v))){\n\n $where[] = $l;\n\n } else {\n\n $field = isset($v['key']) ? $v['key'] : $v['field'];\n $v = $this->compileWhereValue($model, $field, $v);\n\n if ($v != '' /*&& !preg_match('/^(AND|OR|NOT)\\s/is', $v)*/)\n $where[] = $v;\n }\n\n } else {\n\n $v = trim($v);\n if ($v != '' /*&& !preg_match('/^(AND|OR|NOT)\\s/is', $v)*/)\n $where[] = $v;\n }\n\n }\n\n unset($model);\n\n return $where;\n\n }", "private function whereStatement($where, $conditional) {\n // Check if it is an array.\n if(is_array($where)) {\n // Start off the statement and escape.\n $tmp = 'WHERE ';\n $where = $this->escape($where);\n\n // Combine and implode values.\n foreach($where as $key => &$value) {\n $value = \"$key='$value' \";\n } $tmp .= implode(\" $conditional \", $where);\n\n // Return final value\n return $tmp;\n } else {\n // Bad variable type.\n return false;\n }\n }", "protected function buildDeleteQuery(array $condition) {\n $query = 'DELETE FROM '.$this->table.' WHERE ';\n\n $key = array_keys($condition);\n $data = array_values($condition);\n $amount = count($key)-1;\n\n for ($i = 0; $i <= $amount; $i++) {\n $query .= $key[$i].\" = '\".$data[$i].\"'\";\n if ($i < $amount) $query .= \" AND \";\n }\n\n return $query;\n }", "public function where($condition){\n\t\t// Adding an OR operator if needed.\n\t\tif(count($this->where) > 0){\n\t\t\t$last = $this->where[count($this->where)-1];\n\t\t\tif($last !== ' AND ' && $last !== ' OR '){\n\t\t\t\t$this->andWhere();\n\t\t\t}\n\t\t}\n\t\t\n\t\t// Adding the actual condition\n\t\t$this->where[] = $condition;\n\n\t\t// Storing parameters names with a default null value.\n\t\tpreg_match_all('#:([a-zA-Z0-9_-]+)#',$condition,$matches);\n\t\tforeach($matches[0] as $match){\n\t\t\t$this->params[substr($match,1)] = null;\n\t\t}\n\t\treturn $this;\n\t}", "protected function _buildCondition($operator, &$conditions)\n {\n if (empty($conditions)) {\n return;\n }\n\n //Prepare the where portion of the query\n $this->_query .= ' ' . $operator;\n\n foreach ($conditions as $cond) {\n\n if (!is_array($cond)) {\n $this->_query .= \" \" . $cond . \" \";\n continue;\n }\n\n list ($concat, $varName, $operator, $val) = $cond;\n $this->_query .= \" \" . $concat . \" \" . $varName;\n\n switch (strtolower($operator)) {\n case 'not in':\n case 'in':\n $comparison = ' ' . $operator . ' (';\n if (is_object($val)) {\n $comparison .= $this->_buildPair(\"\", $val);\n } else {\n foreach ($val as $v) {\n $comparison .= ' ?,';\n $this->_bindParam($v);\n }\n }\n $this->_query .= rtrim($comparison, ',') . ' ) ';\n break;\n case 'not between':\n case 'between':\n $this->_query .= \" $operator ? AND ? \";\n $this->_bindParams($val);\n break;\n case 'not exists':\n case 'exists':\n $this->_query .= $operator . $this->_buildPair(\"\", $val);\n break;\n default:\n if (is_array($val)) {\n $this->_bindParams($val);\n } elseif ($val === null) {\n $this->_query .= ' ' . $operator . \" NULL\";\n } elseif ($val != 'DBNULL' || $val == '0') {\n $this->_query .= $this->_buildPair($operator, $val);\n }\n }\n\n }\n }", "public function buildConditionQuery($condition='')\n\t\t\t{\n\t\t\t\t$this->sql_condition = $condition;\n\t\t\t}", "public function where(array $condition = null): Update\n {\n if (!\\is_array($condition)) {\n throw new InvalidArgumentException('$condition has to be an array');\n }\n $this->where = (new Condition($this->namesClass->getAliases()))->parse($condition);\n\n return $this;\n }", "public function buildConditionQuery($condition='')\n\t{\n\t\t$this->sql_condition = $condition;\n\t}", "protected function compileWhere(array $where)\n {\n $sql = array();\n foreach ($where as $whereObj) {\n if ($whereObj instanceof SugarQuery_Builder_Andwhere) {\n $operator = \"AND\";\n } else {\n $operator = \"OR\";\n }\n $sql[] = $this->buildWhereSql($operator, $whereObj);\n }\n\n $compiledSql = '';\n foreach ($sql as $conditionals) {\n foreach($conditionals as $operator => $statement) {\n if(count($statement) > 1) {\n $compiledSql .= implode(\" {$operator} \", $statement);\n } else {\n $compiledSql .= reset($statement);\n }\n }\n }\n\n return $compiledSql;\n }", "protected function _build_where() {\n // If there are no WHERE clauses, return empty string\n if (count($this->_where_conditions) === 0) {\n return '';\n }\n\n $where_conditions = array();\n foreach ($this->_where_conditions as $condition) {\n $where_conditions[] = $condition[static::WHERE_FRAGMENT];\n $this->_values = array_merge($this->_values, $condition[static::WHERE_VALUES]);\n }\n\n return \"WHERE \" . join(\" AND \", $where_conditions);\n }" ]
[ "0.74745756", "0.72123986", "0.71929795", "0.7101884", "0.7088172", "0.7086907", "0.6905233", "0.6822548", "0.6769826", "0.66831136", "0.6669532", "0.6646363", "0.6579363", "0.651662", "0.6420309", "0.6419214", "0.6384617", "0.6382402", "0.6356616", "0.6332572", "0.6330083", "0.63263875", "0.63083833", "0.6299015", "0.6295718", "0.6264875", "0.62647945", "0.6229783", "0.6189344", "0.6170622" ]
0.73694587
1
Quotes table name using the backtick char.
public function quoteTableName($table) { return $this->quoteBacktick($table); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function dQuoteTable(string $table): string\n {\n $table = '`' . $table . '`';\n return $table;\n }", "public function get_table_name_escaped() {\r\n\t\treturn $this->get_table_driver()->escape_database_entity($this->get_table_name(), IDBDriver::TABLE);\r\n\t}", "public function quoteTableName($name)\n{\n if ($name[0] == $this->quoteChar) {\n return $name;\n }\n return $this->quoteChar.$name.$this->quoteChar;\n}", "public function quoteTableName($tableName);", "public function quoteTable($name)\n {\n $name = trim((string)$name,'`');\n if(strpos($name, \"`\") !== false) {\n throw new DbException(\"table name must not contain any charcter `, {$name} is given\");\n }\n else {\n return \"`$name`\";\n }\n }", "public function quoteSimpleTableName($name) {\n return '`' . $name . '`';\n }", "public function quoteTable($table);", "public function getQuoteTableName($name) \n {\n if ( $c = $this->quoteTable ) {\n if( is_string($c) ) {\n return $c . $name . $c;\n } elseif( 'pgsql' === $this->type) {\n return '\"' . $name . '\"';\n } elseif ( 'mysql' === $this->type) {\n return '`' . $name . '`';\n }\n }\n return $name;\n }", "public function quoteTableName(string $tableName): string\n {\n return strtoupper(parent::quoteTableName($tableName));\n }", "public function quoteSimpleTableName($name)\n {\n if ($this->db->isDelimident()) {\n return strpos($name, '\"') !== false ? $name : '\"' . $name . '\"';\n }\n return trim($name, \"\\\"'`\");\n }", "public function quoteTable($table) : string\n {\n // Identifiers are escaped by repeating them\n $escaped_identifier = $this->_identifier.$this->_identifier;\n\n if (is_array($table))\n {\n [$table, $alias] = $table;\n $alias = str_replace($this->_identifier, $escaped_identifier, $alias);\n }\n\n if ($table instanceof Query)\n {\n // Create a sub-query\n $table = '('.$table->compile($this).')';\n }\n elseif ($table instanceof Expression)\n {\n // Compile the expression\n $table = $table->compile($this);\n }\n else\n {\n // Convert to a string\n $table = (string)$table;\n\n $table = str_replace($this->_identifier, $escaped_identifier, $table);\n\n if (strpos($table, '.') !== FALSE)\n {\n $parts = explode('.', $table);\n\n if ($prefix = $this->tablePrefix())\n {\n // Get the offset of the table name, last part\n $offset = count($parts)-1;\n\n // Add the table prefix to the table name\n $parts[$offset] = $prefix.$parts[$offset];\n }\n\n foreach ($parts as & $part)\n {\n // Quote each of the parts\n $part = $this->_identifier.$part.$this->_identifier;\n }\n\n unset($part);\n\n $table = implode('.', $parts);\n }\n else\n {\n // Add the table prefix\n $table = $this->_identifier.$this->tablePrefix() . $table . $this->_identifier;\n }\n }\n\n if (isset($alias))\n {\n // Attach table prefix to alias\n $table .= ' AS '.$this->_identifier.$this->tablePrefix() . $alias . $this->_identifier;\n }\n\n return $table;\n }", "public function quoteTableName ($name) {\r\n return $this->getSchema()\r\n ->quoteTableName( \r\n $name );\r\n }", "public function quoteTable($table)\n {\n // Identifiers are escaped by repeating them\n $escapedIdentifier = $this->identifier.$this->identifier;\n\n if (is_array($table)) {\n list($table, $alias) = $table;\n $alias = str_replace($this->identifier, $escapedIdentifier, $alias);\n }\n\n if ($table instanceof DatabaseQuery) {\n // Create a sub-query\n $table = '('.$table->compile($this).')';\n } elseif ($table instanceof DatabaseExpression) {\n // Compile the expression\n $table = $table->compile($this);\n } else {\n // Convert to a string\n $table = (string) $table;\n $table = str_replace($this->identifier, $escapedIdentifier, $table);\n\n if (strpos($table, '.') !== false) {\n $parts = explode('.', $table);\n\n if ($prefix = $this->tablePrefix()) {\n // Get the offset of the table name, last part\n $offset = count($parts) - 1;\n // Add the table prefix to the table name\n $parts[$offset] = $prefix.$parts[$offset];\n }\n\n foreach ($parts as & $part) {\n // Quote each of the parts\n $part = $this->identifier.$part.$this->identifier;\n }\n\n $table = implode('.', $parts);\n } else {\n // Add the table prefix\n $table = $this->identifier.$this->tablePrefix().$table.$this->identifier;\n }\n }\n\n if (isset($alias)) {\n // Attach table prefix to alias\n $table .= ' AS '.$this->identifier.$this->tablePrefix().$alias.$this->identifier;\n }\n\n return $table;\n }", "public function get_table_ref(){\n return \"`$this->db_name`\".'.'.\"`$this->table_name`\";\n }", "public function quoteTable($tblName) {\n $tblName = $this->getTableName($tblName);\n if (strpos($tblName, '.') === false) {\n return $this->normalQuote($tblName);\n }\n $parts = explode('.', $tblName);\n foreach ($parts as $key => &$part) {\n $part = $this->normalQuote($part);\n }\n unset($part);\n return implode('.', $parts);\n }", "public static function RawTableName(){\n return str_replace('}}','', str_replace('{{%','',static::tableName()));\n }", "public function quoteName($name)\n\t{\n\t return \"`$name`\";\n\t}", "function _table_name($table) {\n $table = mysql_escape_string($table);\n if (substr($table, 0, strlen($this->Prefix)) == $this->Prefix) return $table;\n return $this->Prefix . mysql_escape_string($table);\n}", "public function getTableName() {\n\t\t\t\t$tokens = preg_split('/\\\\\\\\+/', $this->value);\n\t\t\t\t$tokens = array_filter($tokens, 'trim');\n\t\t\t\tarray_shift($tokens);\n\n\t\t\t\t$tokens = array_map( function ($x) {\n\t\t\t\t\t\treturn $this->camelCaseToUnderscore($x);\n\t\t\t\t}, $tokens);\n\t\t\t\treturn 'tx_' . implode('_', $tokens);\n\t\t}", "public function getQuotesTableName();", "public function getQuoteIdentifierSymbol()\n {\n return '`';\n }", "public static function TABLE_NAME(): string\n\t{\n\t\treturn (self::TABLE_NAME);\n\t}", "public function quoteName(string $name);", "public function s($input,$table = 'cheese'){\n return $GLOBALS['TYPO3_DB']->fullQuoteStr($input,$table);\n }", "private function tableAlias(string $name): string\n {\n $table = explode('.',$name);\n\n if (count($table) > 1) {\n $name = implode('_', $table);\n }\n\n return $name;\n }", "abstract function escapeTable($name, $database);", "private static function tableName()\n {\n $table = explode('\\\\', get_called_class());\n $table_name = strtolower($table[count($table) - 1]);\n\n if (endsWith($table_name, 'y'))\n $table_name = substr($table_name, 0, strlen($table_name) - 1) . 'ies';\n else\n $table_name = $table_name . 's';\n\n return $table_name;\n }", "public function quoteColumnName($name)\n{\n if ($name[0] == $this->quoteChar) {\n return $name;\n }\n // $name = str_replace('.', $this->quoteChar.'.'.$this->quoteChar, $name);\n return $this->quoteChar.$name.$this->quoteChar;\n}", "function backquote($a_name)\n\t{\n\t /*\n\t Add backqouotes to tables and db-names in\n\t SQL queries. Taken from phpMyAdmin.\n\t */\n\t if (!empty($a_name) && $a_name != '*') {\n\t if (is_array($a_name)) {\n\t $result = array();\n\t reset($a_name);\n\t while(list($key, $val) = each($a_name)) {\n\t $result[$key] = '`' . $val . '`';\n\t }\n\t return $result;\n\t } else {\n\t return '`' . $a_name . '`';\n\t }\n\t } else {\n\t return $a_name;\n\t }\n\t}", "function quoteName( $name )\n\t{\n\t\tif ($name === '*') {\n\t\t\treturn $name;\n\t\t}\n\t return \"`\" . str_replace(\"`\", \"``\", $name) . \"`\";\n\t}" ]
[ "0.7901055", "0.76727164", "0.7563702", "0.7536376", "0.7470145", "0.7451757", "0.74374455", "0.7304302", "0.7257635", "0.7183215", "0.70560265", "0.702229", "0.6895631", "0.6725746", "0.67025477", "0.6682452", "0.6601381", "0.6595924", "0.6584207", "0.6531382", "0.6528594", "0.6505848", "0.6473781", "0.6407982", "0.63442165", "0.63421834", "0.63293314", "0.6310544", "0.63021225", "0.62488806" ]
0.8095317
0
Quotes the backtick char itself.
private function quoteBacktick($value) { return '`' . str_replace('`', '``' ,$value) . '`'; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getQuoteIdentifierSymbol()\n {\n return '`';\n }", "function tQuote($val = ''){\n\t\treturn trim($val,\"\\x22\\x27\");\n\t}", "public function getEscapeChar() {\n\t\treturn $this->escapeChar;\n\t}", "public function getEscaped():string {\n return $this->val;\n }", "public function getDoubleQuote()\n {\n return $this->_doubleQuote;\n }", "public static function backQuotesEnclose($elem)\n\t{\n\t\treturn \"`$elem`\";\n\t}", "public static function add_single_quotes($arg) {\n return \"'\" . addcslashes($arg, \"'\\\\\") . \"'\";\n }", "public static function commandLineQuote($str)\n\t{\n\t\t// so this turns ' into '\\'' ... we have to double-slash for this php.\n\t\treturn \"'\" . str_replace(\"'\", \"'\\\\''\", $str) . \"'\";\n\t}", "function sqesc($str)\n{\n return str_replace('\\'', '\\'\\\\\\'\\'', $str);\n}", "public function testTheBacktickOperatorMayNotBeUsed(): void\n {\n }", "function backquote_apostrophe($str)\n {\n $out = \"\";\n for ($i = 0;$i < strlen($str);$i++)\n if (ord($str[$i]) != 39)\n $out .= $str[$i];\n else\n $out .= \"'\".$str[$i];\n // Return pre-parsed SQL statement.\n return $out;\n }", "public function singleQuote(&$value, &$key)\n {\n if ($value)\n $value = \"'{$value}'\";\n }", "function escape_quote( $str ) {\n\treturn preg_replace ( \"/'/\", \"\\\\'\", $str );\n}", "function remplazaCharSpecial($arg){\n\t\t$arg = str_replace(\"'\", \"\", $arg);\n\t\t$arg = str_replace('\"', \"\", $arg);\n\treturn $arg;\n\t}", "public function testQuotesAndBackslashesEscaped()\n {\n $this->assertEquals('yes', $this->ds->getValue('escape[o\\'really]'));\n $this->assertEquals('no', $this->ds->getValue('escape[oh\\\\no]'));\n }", "function addQuote($str){\n\treturn '\"'.$str.'\"';\n}", "function addQuote($str)\n{\n\treturn \"'\".$str.\"'\";\n}", "public static function backquote($string)\n\t{\n\t\treturn static::quote($string, '`');\n\t}", "public function useDoubleQuotes()\n {\n $this->sQuoteCharacter = '\"';\n }", "public static function quote($value): string {\n return $value;\n }", "public function useDoubleQuote()\n {\n $this->sQuoteCharacter = '\"';\n }", "protected function _escapeshellargSpecial($str) {\n return \"'\" . str_replace(\"'\", \"'\\\"'\\\"'\", $str) . \"'\";\n }", "function quote($value);", "private function _handleQuote($char)\n\t{\n\t\tif(!$this->_quote && trim($this->_buffer)==\"\")\n\t\t{\n\t\t\t$this->_quote = $char;\n\t\t}elseif($char == $this->_quote)\n\t\t{\n\t\t\t$this->_quote = false;\n\t\t}else\n\t\t{\n\t\t\t$this->_buffer .= $char;\t\t\t\n\t\t}\n\t}", "public function converteEsc()\n\t{\n\t\treturn $this->converte(0);\n\t}", "public function escape($str) {\n return $this->quote($str);\n }", "public function quote($string)\n\t{\n\t\treturn str_replace('\\'','\\'\\'',$string);\n\t}", "public function Quote( $text ) {\r\n\t\treturn '\\''.$this->getEscaped($text).'\\'';\r\n\t}", "function quotes($string) {\n\treturn str_replace(array(\"'\", '\"'), array('&#34;', '&#39;'), $string);\n}", "protected function quote_string($value) {\n\t\treturn $this->quote($value);\n\t}" ]
[ "0.71517634", "0.66515493", "0.63798404", "0.6365327", "0.6356336", "0.6200481", "0.6190687", "0.60928637", "0.60732514", "0.60258746", "0.60009986", "0.59939307", "0.5982492", "0.5981409", "0.5977126", "0.596737", "0.5961979", "0.59337837", "0.59005606", "0.58648837", "0.5851238", "0.5837078", "0.583191", "0.5796092", "0.57888657", "0.577478", "0.5762042", "0.5748348", "0.5744977", "0.5718253" ]
0.6878643
1
Validate if the logicalOperator is supported.
private function validateLogicalOperator($value) { $operator = strtoupper(trim($value)); $isValid = in_array($operator, $this->logicalOperators); if($isValid === true) { return $operator; } throw new \Exception("Logical operator $value is not supported."); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function isValidOperator($op) {\n\t\treturn in_array($op, self::$operators);\n\t}", "public function isAllowedForRuleCondition()\r\n {\r\n $allowedInputTypes = array('text', 'multiselect', 'textarea', 'date', 'datetime', 'select', 'boolean', 'price');\r\n return $this->getIsVisible() && in_array($this->getFrontendInput(), $allowedInputTypes);\r\n }", "private function _matchesOperator()\n {\n return $this->stream->matches(Token::TYPE_OPERATOR)\n || self::OPERATOR_PRECEDENCE_PRE_9_5 === $this->precedence\n && ($this->stream->matches(Token::TYPE_INEQUALITY)\n || $this->stream->matches(Token::TYPE_EQUALS_GREATER))\n || $this->stream->matches(Token::TYPE_KEYWORD, 'operator')\n && $this->stream->look(1)->matches(Token::TYPE_SPECIAL_CHAR, '(');\n }", "public function getOperatorForValidate()\n {\n return $this->getOperator();\n }", "public static function isValidOperator($op) {\n\t\tif (!self::$initialized) {\n\t\t\tself::initialize();\n\t\t}\n\t\treturn array_key_exists($op, self::$opEvaluators);\n\t}", "function _hasOperator($str)\n {\n $str = trim($str);\n\n if ( ! preg_match('/(\\s|<|>|!|=|is null|is not null)/i', $str)) {\n return false;\n }\n\n return true;\n }", "public function getOperatorForValidate()\n {\n return $this->correctOperator($this->getOperator(), $this->getInputType());\n }", "public function isOperator($str) {\n\t\treturn in_array($str, array('=', '<', '>', '>=', '<=', '<>', '!=', '&', '~', '|', '^', '<<', '>>'));\n\t}", "private function _get_logical_operator()\n\t{\n\t\t$lo = \"or\";\n\t\tif ( isset($_GET['lo']) AND !is_array($_GET['lo']) AND strtolower($_GET['lo']) == \"and\" )\n\t\t{\n\t\t\t$lo = \"and\";\n\t\t}\n\t\treturn $lo;\n\t}", "public function isOperator($str);", "public function getConditionOperator();", "public function getConditionOperator();", "public static function isValidOperation($operation)\n\t{\n\t\treturn in_array($operation, static::$_validOperations);\n\t}", "function _has_operator($str)\n\t{\n\t\t$str = trim($str);\n\t\tif ( ! preg_match(\"/(\\s|<|>|!|=|is null|is not null)/i\", $str))\n\t\t{\n\t\t\treturn FALSE;\n\t\t}\n\t\t\n\t\treturn true;\n\t}", "public function isArrayOperatorType()\n {\n $op = $this->getOperator();\n return $op === '()' || $op === '!()' || in_array($this->getInputType(), $this->_arrayInputTypes);\n }", "public function testLogicalSyntax() {\n\n\t\t$lexer = new Lexer();\n\t\t$stream = $lexer->scan(' 12 > 4 && 0 >= 5 || 34 < 5 && 56 <= 5 || 4 % 2 == 0 && 5 != 4');\n\n\t\t$actual = $this->buildActualTokens($stream);\n\t\t$expected = array(\n\t\t\tarray(Lexer::T_VALUE => '12'),\n\t\t\tarray(Lexer::T_GREATER => '>'),\n\t\t\tarray(Lexer::T_VALUE => '4'),\n\t\t\tarray(Lexer::T_AND => '&&'),\n\t\t\tarray(Lexer::T_VALUE => '0'),\n\t\t\tarray(Lexer::T_GREATER_EQUAL => '>='),\n\t\t\tarray(Lexer::T_VALUE => '5'),\n\t\t\tarray(Lexer::T_OR => '||'),\n\t\t\tarray(Lexer::T_VALUE => '34'),\n\t\t\tarray(Lexer::T_LESS => '<'),\n\t\t\tarray(Lexer::T_VALUE => '5'),\n\t\t\tarray(Lexer::T_AND => '&&'),\n\t\t\tarray(Lexer::T_VALUE => '56'),\n\t\t\tarray(Lexer::T_LESS_EQUAL => '<='),\n\t\t\tarray(Lexer::T_VALUE => '5'),\n\t\t\tarray(Lexer::T_OR => '||'),\n\t\t\tarray(Lexer::T_VALUE => '4'),\n\t\t\tarray(Lexer::T_MOD => '%'),\n\t\t\tarray(Lexer::T_VALUE => '2'),\n\t\t\tarray(Lexer::T_EQUAL => '=='),\n\t\t\tarray(Lexer::T_VALUE => '0'),\n\t\t\tarray(Lexer::T_AND => '&&'),\n\t\t\tarray(Lexer::T_VALUE => '5'),\n\t\t\tarray(Lexer::T_NOT_EQUAL => '!='),\n\t\t\tarray(Lexer::T_VALUE => '4')\n\t\t);\n\t\t$this->assertSame($expected, $actual);\n\t}", "protected function getAllowedOperators(): array\n\t{\n\t\treturn [\n\t\t\tself::OPERATOR_EQUALS,\n\t\t\tself::OPERATOR_NOT_EQUALS\n\t\t];\n\t}", "function getOperator() {\n\t\tif($this->isExact) {\n\t\t\treturn ' AND ';\n\t\t} else {\n\t\t\treturn ' OR ';\n\t\t}\n\t}", "public function addOperator($op = 'AND') {\n if (!in_array($op, array('AND', 'OR'))) {\n throw new \\InvalidArgumentException('Invalid logical operator.');\n }\n\n $this->conditions[] = $op;\n\n return $this;\n }", "public function canValidate();", "public function buildLogicalStatement();", "private function isOperator($string)\n {\n return in_array($string, ['&', '|', '^']);\n }", "public function validateAttribute($validatedValue)\n {\n if (is_object($validatedValue)) {\n return false;\n }\n\n /**\n * Condition attribute value\n */\n $value = $this->getValueParsed();\n\n /**\n * Comparison operator\n */\n $op = $this->getOperatorForValidate();\n\n // if operator requires array and it is not, or on opposite, return false\n if ($this->isArrayOperatorType() xor is_array($value)) {\n return false;\n }\n\n $result = false;\n\n switch ($op) {\n case '==': case '!=':\n if (is_array($value)) {\n if (is_array($validatedValue)) {\n $result = array_intersect($value, $validatedValue);\n $result = !empty($result);\n } else {\n return false;\n }\n } else {\n if (is_array($validatedValue)) {\n $result = count($validatedValue) == 1 && array_shift($validatedValue) == $value;\n } else {\n $result = $this->_compareValues($validatedValue, $value);\n }\n }\n break;\n\n case '<=': case '>':\n if (!is_scalar($validatedValue)) {\n return false;\n } else {\n $result = $validatedValue <= $value;\n }\n break;\n\n case '>=': case '<':\n if (!is_scalar($validatedValue)) {\n return false;\n } else {\n $result = $validatedValue >= $value;\n }\n break;\n\n case '{}': case '!{}':\n if (is_scalar($validatedValue) && is_array($value)) {\n foreach ($value as $item) {\n if (stripos($validatedValue,$item)!==false) {\n $result = true;\n break;\n }\n }\n } elseif (is_array($value)) {\n if (is_array($validatedValue)) {\n $result = array_intersect($value, $validatedValue);\n $result = !empty($result);\n } else {\n return false;\n }\n } else {\n if (is_array($validatedValue)) {\n $result = in_array($value, $validatedValue);\n } else {\n $result = $this->_compareValues($value, $validatedValue, false);\n }\n }\n break;\n\n case '()': case '!()': case '[]': case '![]':\n if (is_array($validatedValue)) {\n $value = (array)$value;\n $match = count(array_intersect($validatedValue, $value));\n\n if (in_array($op, array('[]', '![]'))) {\n $result = $match == count($value);\n } else {\n $result = $match > 0;\n }\n } else {\n $value = (array)$value;\n foreach ($value as $item) {\n if ($this->_compareValues($validatedValue, $item)) {\n $result = true;\n break;\n }\n }\n }\n break;\n }\n\n if ('!=' == $op || '>' == $op || '<' == $op || '!{}' == $op || '!()' == $op || '![]' == $op) {\n $result = !$result;\n }\n\n return $result;\n }", "public static function getConditionOperators()\n\t{\n\t\tinclude_once './Services/AccessControl/classes/class.ilConditionHandler.php';\n\t\treturn array(\n\t\t\tilConditionHandler::OPERATOR_PASSED,\n\t\t\tilConditionHandler::OPERATOR_FAILED\n\t\t);\n\t}", "public function hasConditions($operand=null);", "private function validateComparisonOperators($value) \n {\n $operator = strtoupper(trim($value));\n $isValid = in_array($operator, $this->comparisonOperators);\n \n if($isValid === true) {\n return $operator;\n } \n \n throw new \\Exception(\"Comparison operator $value is not supported.\");\n }", "public function setLogicalOperation($var)\n {\n GPBUtil::checkMessage($var, \\Cerbos\\Engine\\V1\\PlanResourcesAst\\LogicalOperation::class);\n $this->writeOneof(1, $var);\n\n return $this;\n }", "private function _validate(): bool\n {\n if ($this->fuel !== 'petrol' && $this->fuel !== 'diesel') {\n throw new \\InvalidArgumentException('Invalid fuel type supplied');\n }\n\n return true;\n }", "public function setOperator($operator);", "public function setConditionOperator($condition_operator);" ]
[ "0.6688236", "0.64316505", "0.6237264", "0.6063067", "0.59550804", "0.5930898", "0.58529806", "0.58111984", "0.5783164", "0.5644273", "0.549141", "0.549141", "0.54822296", "0.5450933", "0.5419034", "0.5400318", "0.5347651", "0.5207111", "0.51619893", "0.5161674", "0.5160141", "0.5157292", "0.51523775", "0.51511174", "0.50884205", "0.50694036", "0.50316745", "0.50316435", "0.5030774", "0.50270987" ]
0.6508676
1
Validate if the comparisonOperator is supported.
private function validateComparisonOperators($value) { $operator = strtoupper(trim($value)); $isValid = in_array($operator, $this->comparisonOperators); if($isValid === true) { return $operator; } throw new \Exception("Comparison operator $value is not supported."); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function isValidOperator($op) {\n\t\treturn in_array($op, self::$operators);\n\t}", "private function _matchesOperator()\n {\n return $this->stream->matches(Token::TYPE_OPERATOR)\n || self::OPERATOR_PRECEDENCE_PRE_9_5 === $this->precedence\n && ($this->stream->matches(Token::TYPE_INEQUALITY)\n || $this->stream->matches(Token::TYPE_EQUALS_GREATER))\n || $this->stream->matches(Token::TYPE_KEYWORD, 'operator')\n && $this->stream->look(1)->matches(Token::TYPE_SPECIAL_CHAR, '(');\n }", "public function getOperatorForValidate()\n {\n return $this->getOperator();\n }", "public function getOperatorForValidate()\n {\n return $this->correctOperator($this->getOperator(), $this->getInputType());\n }", "public static function isValidOperator($op) {\n\t\tif (!self::$initialized) {\n\t\t\tself::initialize();\n\t\t}\n\t\treturn array_key_exists($op, self::$opEvaluators);\n\t}", "protected function getAllowedOperators(): array\n\t{\n\t\treturn [\n\t\t\tself::OPERATOR_EQUALS,\n\t\t\tself::OPERATOR_NOT_EQUALS\n\t\t];\n\t}", "public function getComparisonOperator()\n {\n return $this->comparisonOperator;\n }", "public function getComparisonOperator()\n {\n return $this->comparisonOperator;\n }", "private function validateLogicalOperator($value) \n {\n $operator = strtoupper(trim($value));\n $isValid = in_array($operator, $this->logicalOperators);\n \n if($isValid === true) {\n return $operator;\n } \n \n throw new \\Exception(\"Logical operator $value is not supported.\");\n }", "public function isOperator($str);", "private function validate_compare( $compare ) {\n\t\t$compare = strtoupper( $compare );\n\t\tif ( ! in_array( $compare, array(\n\t\t\t'=', '!=', '>', '>=', '<', '<=',\n\t\t\t'LIKE', 'NOT LIKE',\n\t\t\t'IN', 'NOT IN',\n\t\t\t'BETWEEN', 'NOT BETWEEN'\n\t\t) ) ) {\n\t\t\t$compare = '=';\n\t\t}\n\t\treturn $compare;\n\t}", "public function isOperator($str) {\n\t\treturn in_array($str, array('=', '<', '>', '>=', '<=', '<>', '!=', '&', '~', '|', '^', '<<', '>>'));\n\t}", "public function testValidationErrorsWitGreaterThanOrEqual()\n\t{\n\t\t$model = $this->getModelMock(array(\n\t\t\t'operator' => '>=',\n\t\t\t'strict' => true,\n\t\t\t'compareAttribute' => 'bar',\n\t\t));\n\t\t$model->foo = 1;\n\t\t$model->bar = 2;\n\n\t\t$this->assertFalse($model->validate());\n\t\t$this->assertTrue($model->hasErrors('foo'));\n\t\t$model->bar = 1;\n\t\t$this->assertTrue($model->validate());\n\n\t\t// client validation\n\t\t$validator = new CCompareValidator;\n\t\t$validator->operator = '>=';\n\t\t$validator->compareAttribute = 'bar';\n\t\t$script = $validator->clientValidateAttribute($model, 'foo');\n\t\t$this->assertInternalType('string', $script);\n\t\t$this->assertContains('Foo must be greater than or equal to \\\"{compareValue}\\\".\".replace(\\'{compareValue}\\', ', $script);\n\n\t\t$validator->message = '{compareAttribute}';\n\t\t$script = $validator->clientValidateAttribute($model, 'foo');\n\t\t$this->assertContains('\"Bar\"', $script);\n\t\t$this->assertNotContains('{compareAttribute}', $script);\n\t}", "public function getDefaultOperatorOptions()\n {\n if (null === $this->_defaultOperatorOptions) {\n $this->_defaultOperatorOptions = array(\n '==' => Mage::helper('rule')->__('is'),\n '!=' => Mage::helper('rule')->__('is not'),\n '>=' => Mage::helper('rule')->__('equals or greater than'),\n '<=' => Mage::helper('rule')->__('equals or less than'),\n '>' => Mage::helper('rule')->__('greater than'),\n '<' => Mage::helper('rule')->__('less than'),\n '{}' => Mage::helper('rule')->__('contains'),\n '!{}' => Mage::helper('rule')->__('does not contain'),\n '[]' => Mage::helper('rule')->__('contains'),\n '![]' => Mage::helper('rule')->__('does not contain'),\n '()' => Mage::helper('rule')->__('is one of'),\n '!()' => Mage::helper('rule')->__('is not one of')\n );\n }\n return $this->_defaultOperatorOptions;\n }", "function versionCompare ($version1, $version2, $operator) {\n\t$version1 = explode ('.', $version1);\n\t$version2 = explode ('.', $version2);\n\t$result = 0;\n\tforeach ($version1 as $key => $value) {\n\t\tif (! array_key_exists ($key, $version2)) {\n\t\t\t$result = 0;\n\t\t\tbreak;\n\t\t}\n\t\tif (($version1[$key] == '*') or ($version2[$key] == '*')) {\n\t\t\t$result = 0; \n\t\t} elseif ($version1[$key] > $version2[$key]) {\n\t\t\t$result = 1;\n\t\t\tbreak;\n\t\t} elseif ($version1[$key] < $version2[$key]) {\n\t\t\t$result = -1;\n\t\t\tbreak;\n\t\t} else {\n\t\t\t$result = 0;\n\t\t}\n\t}\n\t\n\tswitch ($operator) {\n\t\tcase '>=':\n\t\t\tif ($result >= 0) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\treturn false;\n\t\t\t}\n\t\tcase '<=':\n\t\t\tif ($result <= 0) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\treturn false;\n\t\t\t}\n\t\tcase '>':\n\t\t\tif ($result > 0) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\treturn false;\n\t\t\t}\n\t\tcase '<':\n\t\t\tif ($result < 0) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\treturn false;\n\t\t\t}\n\t\tcase '==':\n\t\t\tif ($result == 0) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\treturn false;\n\t\t\t}\n\t\tcase '!=':\n\t\t\tif ($result != 0) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\treturn false;\n\t\t\t}\n\t\tdefault:\n\t\t\ttrigger_error ('ERROR: Operator doesn\\'t exists.');\n\t\t\treturn false;\n\t}\n}", "public function setOperator($operator);", "public function getConditionOperator();", "public function getConditionOperator();", "private function compare(string $reg_val, string $operator, string $comparator) : bool {\n $code = 'return %s %s %s;';\n\n return eval(sprintf($code, $reg_val, $operator, $comparator));\n }", "protected function isOperatorAllowed(string $operator, array $allowedOperators, string $column)\n {\n if(!in_array($operator, $allowedOperators)) {\n throw new ApiException(sprintf(\n \"The operator '%s' is not allowed in the filter of property '%s'. Allowed operators are: %s\",\n $operator,\n $column,\n '`' . implode('`, `', $allowedOperators) . '`'\n ));\n }\n return true;\n }", "public static function versionCompare(string $version1, string $operator, string $version2): bool\n {\n $version1 = \\strtolower($version1);\n $version2 = \\strtolower($version2);\n \n try {\n return \\version_compare($version1, $version2, $operator);\n } catch (\\Throwable $th) {\n throw new InvalidArgumentException(\"Invalid operator \\\"$operator\\\". Expected: <, <=, >, >=, =, !=.\");\n }\n }", "public function testValidationErrorsWitLessThanOrEqual()\n\t{\n\t\t$model = $this->getModelMock(array(\n\t\t\t'operator' => '<=',\n\t\t\t'strict' => true,\n\t\t\t'compareAttribute' => 'bar',\n\t\t));\n\t\t$model->foo = 3;\n\t\t$model->bar = 2;\n\n\t\t$this->assertFalse($model->validate());\n\t\t$this->assertTrue($model->hasErrors('foo'));\n\t\t$model->bar = 3;\n\t\t$this->assertTrue($model->validate());\n\n\t\t// client validation\n\t\t$validator = new CCompareValidator;\n\t\t$validator->operator = '<=';\n\t\t$validator->compareAttribute = 'bar';\n\t\t$script = $validator->clientValidateAttribute($model, 'foo');\n\t\t$this->assertInternalType('string', $script);\n\t\t$this->assertContains('Foo must be less than or equal to \\\"{compareValue}\\\".\".replace(\\'{compareValue}\\', ', $script);\n\n\t\t$validator->message = '{compareAttribute}';\n\t\t$script = $validator->clientValidateAttribute($model, 'foo');\n\t\t$this->assertContains('\"Bar\"', $script);\n\t\t$this->assertNotContains('{compareAttribute}', $script);\n\t}", "public function isPropertyComparison(): bool\n {\n return $this->comparisonProperty !== null;\n }", "public function isAllowedForRuleCondition()\r\n {\r\n $allowedInputTypes = array('text', 'multiselect', 'textarea', 'date', 'datetime', 'select', 'boolean', 'price');\r\n return $this->getIsVisible() && in_array($this->getFrontendInput(), $allowedInputTypes);\r\n }", "function _hasOperator($str)\n {\n $str = trim($str);\n\n if ( ! preg_match('/(\\s|<|>|!|=|is null|is not null)/i', $str)) {\n return false;\n }\n\n return true;\n }", "public function getOperator();", "public function getOperator();", "public function setConditionOperator($condition_operator);", "public function setConditionOperator($condition_operator);", "private static function convertComparisonOperator($operator)\n {\n return isset(self::$operatorMap[$operator]) ? self::$operatorMap[$operator] : null;\n }" ]
[ "0.6305403", "0.62648", "0.6177887", "0.5913353", "0.5902174", "0.5691766", "0.56867564", "0.56867564", "0.56534773", "0.56327176", "0.56256753", "0.56085896", "0.5463562", "0.54592466", "0.5449294", "0.5448895", "0.5425036", "0.5425036", "0.5421594", "0.5409004", "0.54077893", "0.5402771", "0.53793645", "0.5355347", "0.5351037", "0.5296225", "0.5296225", "0.5290714", "0.5290714", "0.5260827" ]
0.64007586
0
GET Request REST CALL
function call_rest_get($url,$data='') { $result = $this->curl->simple_get($url , $data , array(CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST=> false)); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function rest_get($req)\n{\n $protocol = strtolower(substr($_SERVER[\"SERVER_PROTOCOL\"], 0, strpos($_SERVER[\"SERVER_PROTOCOL\"], '/'))) . '://';\n print_log(CURLOPT_URL, $protocol . $_SERVER['HTTP_HOST'] . $req);\n try {\n $cURLConnection = curl_init();\n curl_setopt($cURLConnection, CURLOPT_URL, $protocol . $_SERVER['HTTP_HOST'] . $req);\n curl_setopt($cURLConnection, CURLOPT_RETURNTRANSFER, true);\n\n $result = curl_exec($cURLConnection);\n\n if ($result === false) {\n throw new Exception(curl_error($cURLConnection), curl_errno($cURLConnection));\n return null;\n }\n curl_close($cURLConnection);\n return $result;\n }catch(\\Exception $e) {\n print_log($e->getMessage());\n return null;\n }\n}", "public function GET_method()\n {\n if (isset($_GET['id']))\n {\n //IF HAS ID PARAMETER\n $id = $_GET['id']??0;\n\n $backlog = $this\n ->backlogObject\n ->find($id);\n\n if (!$backlog)\n {\n JsonResponse(['error' => 'Resource Not Found'], 404);\n }\n\n JsonResponse(['data' => $backlog]);\n\n }\n else\n {\n\n $backlog = $this\n ->backlogObject\n ->all();\n\n JsonResponse(['data' => $backlog]);\n }\n }", "public function receiveGetRequest();", "public function executeGet(){\n $data = array(\n 'method'=>'GET',\n 'message' => 'you requested this',\n 'data' => isset($_GET['data']) ? $_GET['data'] : 'You did not pass anything in the \\'data\\' url parameter.',\n );\n $this->response->setContent($data); \n }", "function index_get() {\n\t\t$output['success'] = true;\n\t\t$output['message'] = \"Ini diakses melalui metode GET\";\n\t\treturn $this->response($output, REST::HTTP_OK);\n\t}", "public function getRequest();", "public function getRequest();", "public function getRequest();", "public function getRequest();", "public function getRequest();", "public function getRequest();", "function get() {\n $response = new Response($request);\n $response->code = Response::OK;\n $response->body = \"This resource is not usable with a GET request.\\n\";\n }", "public function asGetRequest()\n {\n $url = $this->asUrl();\n\n return parent::request('GET', $url, [], $this->fqb_access_token, $this->fqb_etag);\n }", "function getRequest();", "public function sendGetRequest();", "private function get()\n {\n $url = $this->build_query_url();\n\n return $this->api->getGuzzleClient()->get($this->url, ['query' => $url]);\n }", "public function get_rest_url();", "public function getRequest() {}", "public function getRequest()\n {\n /// @todo\n }", "function http_GET_call($url) {\n $curl = curl_init();\n\n curl_setopt_array($curl, array(\n CURLOPT_URL => $url,\n CURLOPT_RETURNTRANSFER => true,\n CURLOPT_ENCODING => \"\",\n CURLOPT_MAXREDIRS => 10,\n CURLOPT_TIMEOUT => 30,\n CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,\n CURLOPT_CUSTOMREQUEST => \"GET\",\n CURLOPT_POSTFIELDS => \"{}\",\n ));\n\n $response = curl_exec($curl);\n $err = curl_error($curl);\n\n curl_close($curl);\n\n if ($err) {\n return \" { 'cURL Error #':\" . $err . \" } \";\n } else {\n return $response;\n }\n}", "public function getAction()\n {\n $responseBody = '';\n\n $refno = (isset($this->_requestParameters[0])) ? $this->_requestParameters[0] : '';\n $refno = preg_replace('/\\D/', '', $refno);\n\n switch($this->_restAction) {\n\n case 'getfile':\n if ($refno != '') {\n $result = $this->_accessor->getFileByRefNo($refno);\n $responseBody = Zend_Json::encode($result);\n }\n break;\n\n case 'listcomplete':\n $result = $this->_accessor->listDataCompleteRefIds();\n $responseBody = Zend_Json::encode($result);\n break;\n\n }\n\n $this->getResponse()\n ->appendBody($responseBody);\n }", "function sendGet ($url = null, array $params = array());", "abstract public function getRequest();", "private function sendGET($url){\n $content = $this->httpRequestService->APIRequestGET($url,$this->smsServiceSettings->getToken());\n return json_encode($content);\n }", "private function send_get(){\n\t $this->set_curl_url(\"https://api.exchangeratesapi.io/latest?base=USD\");\n\t return $this->do_send_get();\n }", "public function getGet(): void {\n\t\t$this->response = $this->_request::send(\n\t\t\t$_ENV['HOME_URL'] . '/folder1/folder2/my-class/my-aspect?k1=v1',\n\t\t\t['id' => 1, 'methodUsed' => 'GET', 'description' => 'Request with GET method. Use to extract and return data. Response is just the data sent.'],\n\t\t\t'GET',\n\t\t\tnull,\n\t\t\t$this->httpCode\n\t\t);\n\t}", "public function request();", "private function GET($url,$params=false){\n\t\treturn $this->Request($url,$params,HTTP_GET);\n\t}", "private static function curlRequest()\n {\n\n $curl = curl_init();\n\n curl_setopt_array($curl, array(\n\n CURLOPT_URL => SELF::API_URL,\n \n CURLOPT_RETURNTRANSFER => true,\n \n CURLOPT_ENCODING => '',\n \n CURLOPT_MAXREDIRS => 10,\n \n CURLOPT_TIMEOUT => 5,\n \n CURLOPT_FOLLOWLOCATION => true,\n \n CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,\n \n CURLOPT_CUSTOMREQUEST => 'GET',\n\n ));\n\n $response = curl_exec($curl);\n\n curl_close($curl);\n \n // return the API response\n return json_decode($response);\n\n }", "public static function GET() {\n return (new Request(self::METHOD_GET));\n }" ]
[ "0.7159455", "0.6811346", "0.6742458", "0.67424035", "0.672388", "0.668701", "0.668701", "0.668701", "0.668701", "0.668701", "0.668701", "0.66765267", "0.66755563", "0.6672105", "0.66696715", "0.6638753", "0.66290855", "0.66258323", "0.662247", "0.6615336", "0.6607553", "0.660136", "0.65892005", "0.65602005", "0.6549624", "0.65474254", "0.6545566", "0.6529782", "0.6502294", "0.64891887" ]
0.7594175
1
POST Request REST CALL
function call_rest_post($url,$data='') { $result = $this->curl->simple_post($url , $data , array(CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST=> false)); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function sendPostRequest();", "public function index_post()\n {\n $data = array();\n $this->response($data, REST_Controller::HTTP_NOT_FOUND);\n }", "public function resource_post() {\n $this->set_response(true, REST_Controller::HTTP_OK);\n }", "public function asPostRequest()\n {\n $url = $this->asUrl();\n\n return parent::request('POST', $url, $this->post_data, $this->fqb_access_token, $this->fqb_etag);\n }", "public function post();", "public function post();", "public function post();", "private function post()\n {\n return $this->api->getGuzzleClient()->post($this->url, ['form_params' => $this->args]);\n }", "public function post($request, $response);", "public function postAction() {\n $this->_helper->json(array('success' => 0, 'message' => 'this is a read only service, POST operation is not allowed'));\n }", "public function receivePostRequest();", "function userbooking_post() {\n $this->config->load('rest', TRUE);\n header('Access-Control-Allow-Origin: *');\n header(\"Access-Control-Allow-Methods: GET, POST, OPTIONS, PUT, DELETE\");\n $email = $this->post('email');\n $this->db->order_by('id desc');\n $this->db->where('email', $email);\n $query = $this->db->get(\"web_order\");\n $result = $query->result();\n $this->response($result);\n }", "public static function POST() {\n return (new Request(self::METHOD_POST));\n }", "public function post_send () {\n\t\tif (! isset ($_POST['url'])) {\n\t\t\treturn $this->error ('Missing field: url');\n\t\t}\n\n\t\tif (! isset ($_POST['method'])) {\n\t\t\treturn $this->error ('Missing field: method');\n\t\t}\n\n\t\tRequests::register_autoloader ();\n\n\t\tswitch (strtolower ($_POST['method'])) {\n\t\t\tcase 'get':\n\t\t\t\t$type = Requests::GET;\n\t\t\t\tbreak;\n\t\t\tcase 'head':\n\t\t\t\t$type = Requests::HEAD;\n\t\t\t\tbreak;\n\t\t\tcase 'post':\n\t\t\t\t$type = Requests::POST;\n\t\t\t\tbreak;\n\t\t\tcase 'put':\n\t\t\t\t$type = Requests::PUT;\n\t\t\t\tbreak;\n\t\t\tcase 'patch':\n\t\t\t\t$type = Requests::PATCH;\n\t\t\t\tbreak;\n\t\t\tcase 'delete':\n\t\t\t\t$type = Requests::DELETE;\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\treturn $this->error ('Invalid or unsupported request method');\n\t\t}\n\n\t\t$headers = array ();\n\t\tif (is_array ($_POST['headers'])) {\n\t\t\t$headers = $_POST['headers'];\n\t\t}\n\n\t\t$data = array ();\n\t\tif (is_array ($_POST['params'])) {\n\t\t\t$data = $_POST['params'];\n\t\t}\n\t\t$options = array ();\n\n\t\tif (! empty ($_POST['user'])) {\n\t\t\t$options['auth'] = array ();\n\t\t\t$options['auth']['username'] = $_POST['user'];\n\t\t}\n\n\t\tif (! empty ($_POST['pass'])) {\n\t\t\t$options['auth'] = is_array ($options['auth']) ? $options['auth'] : array ();\n\t\t\t$options['auth']['password'] = $_POST['pass'];\n\t\t}\n\n\t\tif (isset ($_POST['body']) && ! empty ($_POST['body'])) {\n\t\t\t$data = $_POST['body'];\n\t\t} else {\n\t\t\t$data = $_POST['params'];\n\t\t}\n\n\t\ttry {\n\t\t\t$res = Requests::request (\n\t\t\t\t$_POST['url'],\n\t\t\t\t$headers,\n\t\t\t\t$data,\n\t\t\t\t$type,\n\t\t\t\t$options\n\t\t\t);\n\t\t} catch (\\Exception $e) {\n\t\t\treturn $this->error ($e->getMessage ());\n\t\t}\n\n\t\tif (! $res->success) {\n\t\t\treturn $this->error ('Request failed');\n\t\t}\n\n\t\t$headers = array ();\n\t\tforeach ($res->headers as $name => $value) {\n\t\t\t$headers[$name] = $value;\n\t\t}\n\n\t\t$out = array (\n\t\t\t'status' => $res->status_code,\n\t\t\t'headers' => $headers,\n\t\t\t'body' => $res->body\n\t\t);\n\t\treturn $out;\n\t}", "function mod_bongo_execute_rest_call($urladdress, $postfields) {\n $ch = curl_init();\n curl_setopt($ch, CURLOPT_URL, $urladdress);\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);\n curl_setopt($ch, CURLOPT_POSTFIELDS,\n $postfields\n );\n curl_setopt($ch, CURLOPT_POST, 1);\n\n $headers = array();\n $headers[] = 'Content-Type: application/x-www-form-urlencoded';\n curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);\n\n $result = curl_exec($ch);\n if (curl_errno($ch)) {\n print 'Error:' . curl_error($ch);\n }\n curl_close($ch);\n\n return $result;\n}", "public function busqueda_post(){\n $_POST = json_decode(file_get_contents(\"php://input\"), true);\n $_POST = $this->security->xss_clean($_POST);\n $datos=$this->post();\n $_data=$this->Model_Paciente->busqueda($datos[\"palabra\"]);\n $message = [\n 'status' => true,\n 'message' => \"Exito\",\n 'data'=>$_data\n\n ];\n\t\t$this->response($message, REST_Controller::HTTP_OK);\n }", "function post($url, $body = array()) {\n $curl_handler = curl_init();\n $params = array(\"api_key\" => $this->apiKey);\n $options = array(\n CURLOPT_URL => $url.\"?\".http_build_query($params),\n CURLOPT_POST => count($body),\n # preg_replace remove PHP's array indexes to properly pass a simple array of values\n CURLOPT_POSTFIELDS => preg_replace('/%5B[0-9]+%5D/simU', '%5B%5D', http_build_query($body))\n );\n curl_setopt_array($curl_handler, ($this->defaults + $options));\n \n $result = curl_exec($curl_handler);\n\n if ($result === false) {\n throw new Rxg_Exception(curl_error($curl_handler), 1);\n }\n $responseCode = curl_getinfo($curl_handler, CURLINFO_RESPONSE_CODE);\n # Make sure the request was successful, ie - the response code begins with 2 \n if (substr((string)$responseCode, 0, 1) != \"2\") {\n throw new Rxg_Exception($result, $responseCode);\n } else {\n $jsonResponse = json_decode($result, true);\n return $jsonResponse;\n }\n \n }", "public function index_post(){\n\n $is_valid_token = $this->authorization_token->validateToken();\n if(!empty($is_valid_token) && $is_valid_token['status'] === TRUE){\n try {\n $res['NoSurat'] = $this->post('NoSurat');\n $res['Tgl'] = $this->post('Tgl');\n $res['NoSuratHps'] = $this->post('NoSuratHps');\n $res['NoBaphp'] = $this->post('NoBaphp');\n $res['DataBaPhp'] = $this->m->getDataBaPphp($this->post('NoBaphp'));\n $res['KodePejabat'] = $this->post('KodePejabat');\n $res['DataPejabat'] = $this->m->getDataPejabat($this->post('KodePejabat'));\n $res['UserId'] = $this->UserId;\n if($this->m->cekDataExits($res['NoSurat']) <= 0){\n if($this->m->createData($res) > 0){\n $message = [\n \"status\" => TRUE,\n \"message\" => \"Berita Acara Serah Terima Barang dengan Nomor \".$res['NoSurat'].\" berhasil dibuat\"\n ];\n $this->response($message, REST_Controller::HTTP_CREATED);\n }else{\n $message = [\n \"status\" => FALSE,\n \"message\" => \"Berita Acara Serah Terima Barang gagal dibuat\"\n ];\n $this->response($message, REST_Controller::HTTP_BAD_REQUEST); // BAD_REQUEST (400) being the HTTP response code\n }\n }else{\n $message = [\n \"status\" => FALSE,\n \"message\" => \"Berita Acara Serah Terima Barang dengan Nomor \".$res['NoSurat'].\" telah ada dalam sistem, mohon diperiksa kembali\"\n ];\n $this->response($message, REST_Controller::HTTP_BAD_REQUEST); // BAD_REQUEST (400) being the HTTP response code\n }\n } catch (\\Exception $e) {\n $this->response($e->getMessage(), REST_Controller::HTTP_BAD_REQUEST); // BAD_REQUEST (400) being the HTTP response code\n }\n \n \n \n }else{\n $this->response($is_valid_token , REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code\n }\n }", "public function makeRestCall()\t{\n\t\t\t//This returns the data from the specified url page.\n\t\t\t\n\t\t\t$ch = curl_init();\n\t\t\t\n\t\t\tif($ch == false)\t{\n\t\t\t\treturn -1;\n\t\t\t}\n\t\t\t\n\t\t\t$timeout = 10;\t//TODO: Move this to the constants folder.\n\t\t\tcurl_setopt($ch, CURLOPT_URL, $this->url);\n\t\t\tcurl_setopt($ch, CURLOPT_POST, true);\n\t\t\tcurl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n\t\t\tcurl_setopt($ch, CURLOPT_POSTFIELDS, $this->postVarData);\n\t\t\tcurl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);\n\t\t\t\n\t\t\t$data = curl_exec($ch);\n\t\t\tcurl_close($ch);\n\t\t\t\n\t\t\treturn $data;\n\t\t}", "function try(Request $request){\n \n $headers = [\n 'Authorization' => $request->request_header, \n 'Accept' => 'application/json',\n ];\n $client = new Client(); \n \n $options = [\n 'body' => $request->request_body,\n 'headers' => $headers\n ];\n $res = $client->post('http://10.20.0.2:8552/selcomapi', $options);\n\n echo '<pre>';\n var_dump($res);\n echo '</pre>';\n }", "function post() {\n $result = $this->call_method();\n print $this->encode($result);\n }", "public function postAction()\n {\n $this->view->params = $this->_request->getParams();\n\n /** XXX **/\n\n $this->view->message = 'Resource Created';\n $this->_response->created();\n }", "public function postAction()\n {\n $this->view->params = $this->_request->getParams();\n\n /** XXX **/\n\n $this->view->message = 'Resource Created';\n $this->_response->created();\n }", "public function testApiPostRequest()\n {\n\t \t$products = [\n\t\t\t \t\t'product_id' => 1,\n\t\t\t \t\t'qty' => 1 \n\t\t\t \t];\n\n \t$data = [ 'products' => [ $products\t] ];\n \t//dd($data, json_encode($data));\n\t\t\n\t\t$response = $this->json('POST', '/api/totals', $data);\n\n\t\t$response\n ->assertStatus(200)\n ->assertJson([\n 'total' => '3.50',\n ]);\n\n\t}", "private function getPostRequest($uri, $payload = null, array $queryParams = array()) {\n try{\n $fields_string = '';\n \n $ch = curl_init($this->_domain . '/1/' . $uri);\n curl_setopt($ch, CURLOPT_HTTPHEADER, array('content-type: application/atom+xml', 'auth-token: ' . $this->generateAuthToken()));\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n curl_setopt($ch, CURLOPT_POSTFIELDS, $payload);\n curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);\n curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);\n curl_setopt($ch, CURLOPT_TIMEOUT, 20);\n \n $response = curl_exec($ch);\n\t\t$curl_info = curl_getinfo($ch);\n $http_code = $curl_info['http_code'];\n curl_close($ch);\n \n if(($http_code == 200) || ($http_code == 202) || ($http_code == 304)) {\n\t\t Mage::log('Post Request HTTP CODE Error ' . $http_code . print_r($curl_info, true) . $response, null, Flubit_Flubit_Helper_Data::FLUBIT_COMMUNICATION);\n\t\t} else {\n\t\t\t\t$helper = Mage::helper('flubit');\n\t\t\t\t$response = print_r($response, true);\n\t\t\t\t$feedid = $http_code . ' error';\n\t\t\t\t$helper->logCommunicationErrors (print_r($curl_info,true),$response,$feedid,\"Communication Error\");\n\t\t\t\tMage::log('Post Request HTTP CODE Success ' . $http_code . print_r($curl_info, true) . $response, null, Flubit_Flubit_Helper_Data::FLUBIT_COMMUNICATION);\n } \n \n } catch (Exception $e) {\n Mage::log('Post Request Exception ' . $e, null, Flubit_Flubit_Helper_Data::FLUBIT_EXCEPTIONS);\n }\n return $response;\n }", "public function postObcontact(Request $req)\n {\n $idno = $req->idno;\n $add1 = $req->add1;\n $add2 = $req->add2;\n $add3 = $req->add3;\n $postcode = $req->postcode;\n $city = $req->city;\n $statecode = $req->statecode;\n $telno = $req->telno;\n $mobileno = $req->mobileno;\n $email = $req->email;\n $nationality = $req->nationality;\n $addby = $req->addby;\n $dateadd = $req->dateadd;\n\n $obForm = ['idno'=> $idno, 'add1'=> $add1,'add2'=> $add2, 'add3'=> $add3, 'postcode'=> $postcode, 'city'=> $city, 'statecode'=> $statecode, 'telno'=> $telno, 'mobileno'=> $mobileno, 'email'=> $email, 'nationality'=> $nationality, 'addby'=> $addby, 'dateadd'=> $dateadd ];\n $jsondata = json_encode($obForm);\n \n $url = 'http://'.env('WS_IP', 'localhost').'/api/wsmotion/newobcontact';\n $ch = curl_init();\n \n curl_setopt($ch,CURLOPT_URL, $url);\n curl_setopt($ch, CURLOPT_PROXY, '');\n \n curl_setopt($ch,CURLOPT_POSTFIELDS, $jsondata);\n curl_setopt($ch, CURLOPT_HTTPGET, FALSE);\n \n curl_setopt( $ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n $result = curl_exec($ch);\n $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);\n $response = curl_getinfo($ch, CURLINFO_HEADER_OUT);\n\n //close connection\n curl_close($ch);\n //return redirect()->back();\n // return $this->index();\n }", "function bbp_post_request()\n{\n}", "public function post(Request $request): Response;", "public function postObcontact(Request $req)\n {\n $idno = $req->idno;\n $add1 = $req->add1;\n $add2 = $req->add2;\n $add3 = $req->add3;\n $postcode = $req->postcode;\n $city = $req->city;\n $statecode = $req->statecode;\n $telno = $req->telno;\n $mobileno = $req->mobileno;\n $email = $req->email;\n $nationality = $req->nationality;\n $addby = $req->addby;\n $dateadd = $req->dateadd;\n\n $obForm = ['idno'=> $idno, 'add1'=> $add1,'add2'=> $add2, 'add3'=> $add3, 'postcode'=> $postcode, 'city'=> $city, 'statecode'=> $statecode, 'telno'=> $telno, 'mobileno'=> $mobileno, 'email'=> $email, 'nationality'=> $nationality, 'addby'=> $addby, 'dateadd'=> $dateadd ];\n $jsondata = json_encode($obForm);\n \n $url = 'http://'.env('WS_IP', 'localhost').'/api/wsmotion/newobcontact';\n $ch = curl_init();\n \n curl_setopt($ch,CURLOPT_URL, $url);\n curl_setopt($ch, CURLOPT_PROXY, '');\n \n curl_setopt($ch,CURLOPT_POSTFIELDS, $jsondata);\n curl_setopt($ch, CURLOPT_HTTPGET, FALSE);\n \n curl_setopt( $ch, CURLOPT_HTTPHEADER, array('Content-Type:application/json'));\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n $result = curl_exec($ch);\n $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);\n $response = curl_getinfo($ch, CURLINFO_HEADER_OUT);\n\n //close connection\n curl_close($ch);\n //return redirect()->back();\n // return $this->index();\n }", "private function rest($op, $request, $post_fields = null) {\r\n //print(\"rest() $request op \" . $this->api_uri() . $op . \" fields $post_fields\\n\");\r\n $ch = curl_init($this->api_uri() . $op);\r\n curl_setopt($ch, CURLOPT_CUSTOMREQUEST, $request);\r\n if ($post_fields != null) {\r\n curl_setopt($ch, CURLOPT_POSTFIELDS, $post_fields);\r\n }\r\n curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\r\n curl_setopt($ch, CURLOPT_HTTPHEADER, array(\r\n 'Content-Type: application/json',\r\n 'Content-Length: ' . strlen($post_fields)));\r\n $result = curl_exec($ch);\r\n if (curl_getinfo($ch, CURLINFO_HTTP_CODE) === 200) {\r\n return $result;\r\n }\r\n throw new Exception(\"Http error \" . curl_getinfo($ch, CURLINFO_HTTP_CODE));\r\n }" ]
[ "0.69420767", "0.6838541", "0.65502965", "0.65036976", "0.6436954", "0.6436954", "0.6436954", "0.6377215", "0.6288522", "0.624634", "0.6210952", "0.61824673", "0.6167694", "0.6166799", "0.6125974", "0.6121691", "0.610579", "0.60864675", "0.60834455", "0.6054344", "0.6043544", "0.6038415", "0.6038415", "0.60254145", "0.60101455", "0.5989713", "0.59709007", "0.59670454", "0.5965377", "0.5961966" ]
0.71458775
1
DELETE Request REST CALL
function call_rest_delete($url,$data='') { $result = $this->curl->simple_delete($url , $data , array(CURLOPT_SSL_VERIFYPEER => false, CURLOPT_SSL_VERIFYHOST=> false)); return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function del(string $uri, array $params): ResponseInterface;", "public function delete(Request $request): Response;", "public function delete() {\n $this->client->deleteData($this->uri);\n }", "function delete_request()\r\n\t{\r\n\t\t// Retrieve the user id from the request URI\r\n\t\t$array = explode(\"/\", trim($_SERVER['REQUEST_URI'], \"/\"));\r\n\t\t$request_id = $array[1];\r\n\r\n\t\t$stmt = $this->db->prepare(\"DELETE FROM requests where id=?\");\r\n\t\t$stmt->bind_param(\"d\", $request_id);\r\n\t\t$stmt->execute();\r\n\t\t$stmt->close();\r\n\r\n\t\t$json_response = \"{\\\"status\\\":\\\"successful\\\"}\";\r\n\r\n\t\t$this->sendResponse(200, $json_response);\r\n\t}", "public function delete(int $id): JsonResponse;", "public function deleteAction() {\n $this->_helper->json(array('success' => 0, 'message' => 'this is read only service, DELETE operation is not allowed'));\n }", "public function delete(){\n $id = ($_GET['id'] !== null && (int)$_GET['id'] > 0) ? (int)$_GET['id'] : false;\n \n if(!$id){\n return http_response_code(400);\n }\n \n // Delete.\n $this->prepare(\"DELETE FROM `cars` WHERE `id` = '{$id}' LIMIT 1\");\n \n if($this->req->execute()){\n http_response_code(204);\n }\n else {\n return http_response_code(422);\n }\n }", "public function delete()\n {\n return $this->request->request($this->getUrl(), ['method' => 'delete',])['data'];\n }", "public function delete_delete(){\n \t\t$id = $this->uri->segment(3);\n \t\t// $r = $this->delete('id');\n \t\t// $this->response($id);\n\t $response = $this->PersonM->delete_person(\n\t $id\n\t );\n\t $this->response($response);\n \t}", "function delete($url, array $options = [])\n{\n return request('DELETE', $url, $options);\n}", "public function delete(): Response\n {\n $this->transport->setMethod('DELETE')->request($this->db);\n\n return $this->transport->getResponse();\n }", "public function delete(Request $request, Response $response, array $args = []): Response;", "public function delete(Request $request);", "public function asDeleteRequest()\n {\n $url = $this->asUrl();\n\n return parent::request('DELETE', $url, [], $this->fqb_access_token, $this->fqb_etag);\n }", "public function destroy($id)\n { \n\n $client = new Client();\n $request = $client->post('http://127.0.0.1:3000/services/delete',[\n\n 'form_params' => [\n 'id'=>$id\n \n \n\n ]\n\n ]);\n\n session()->flash('success',' Service Delete Successfully');\n return redirect()->route('admin.services');\n \n \n \n }", "public function delete(string $url, RequestOptionsInterface $requestOptions) : ResponseInterface;", "function delete($url, $parameters = array()) { \n $response = $this->oAuthRequest($url, 'DELETE', $parameters); \n if ($this->format === 'json' && $this->decode_json) { \n return json_decode($response, true); \n } \n return $response; \n }", "public function delete() {\n\t\t$input_data = $this->request->getJsonRawBody ();\n\t\t$id = isset ( $input_data->id ) ? $input_data->id : '';\n\t\tif (empty ( $id )) :\n\t\t\treturn $this->response->setJsonContent ( [ \n\t\t\t\t\t'status' => 'Error',\n\t\t\t\t\t'message' => 'Id is null' \n\t\t\t] );\n\t\t else :\n\t\t\t$collection = NidaraKidProfile::findFirstByid ( $id );\n\t\t\tif ($collection) :\n\t\t\t\tif ($collection->delete ()) :\n\t\t\t\t\treturn $this->response->setJsonContent ( [ \n\t\t\t\t\t\t\t'status' => 'OK',\n\t\t\t\t\t\t\t'Message' => 'Record has been deleted succefully ' \n\t\t\t\t\t] );\n\t\t\t\t else :\n\t\t\t\t\treturn $this->response->setJsonContent ( [ \n\t\t\t\t\t\t\t'status' => 'Error',\n\t\t\t\t\t\t\t'Message' => 'Data could not be deleted' \n\t\t\t\t\t] );\n\t\t\t\tendif;\n\t\t\t else :\n\t\t\t\treturn $this->response->setJsonContent ( [ \n\t\t\t\t\t\t'status' => 'Error',\n\t\t\t\t\t\t'Message' => 'ID doesn\\'t' \n\t\t\t\t] );\n\t\t\tendif;\n\t\tendif;\n\t}", "public function _delete($url = null, array $parameter =[]);", "public function delete()\n {\n //fetch endpoint information from schema file\n $endpoint = $this->getEndpoint(\"destroy\");\n\n if($this->id)\n {\n $response = $this->api->request(\"/api/\".str_ireplace('{id}',$this->id,$endpoint->href),$endpoint->method);\n\n switch($response['code']) {\n case \"200\":\n return $response;\n break;\n\n default:\n throw new SaleskingException(\"DELETE_ERROR\",\"Deleting failed, an error happend\",$response);\n break;\n }\n }\n else\n {\n throw new SaleskingException(\"DELETE_IDNOTSET\",\"could not delete object\");\n }\n }", "protected function specificRequestDelete($id){throw new EspressoAPI_MethodNotImplementedException();}", "public function DELETE_method($data)\n {\n $id = $data['del_id']??0;\n\n $backlogObject = $this->backlogObject;\n\n $backlog = $backlogObject->find($id);\n if (!$backlog)\n {\n JsonResponse(['error' => 'Resource Not Found'], 404);\n\n }\n\n $result = $backlogObject->destroy($id);\n\n if (!$result)\n {\n JsonResponse(['error' => 'The request could not be completed'], 400);\n }\n\n JsonResponse(['message' => 'Resource has been deleted'], 204);\n }", "function delete($url = \"\",$options = array()){\n\t\tif(is_array($url)){\n\t\t\t$options = $url;\n\t\t\t$url = \"\";\n\t\t}\n\t\t$options[\"request_method\"] = \"DELETE\";\n\t\treturn $this->fetchContent($url,$options);\n\t}", "public function destroy($id)\n{\n\n$this->client->request('DELETE', config('global.url').'bills/'.$id, [\n 'headers' => [\n 'token' => Auth::user()->token\n ]]);\nreturn redirect('/vouchers');\n}", "public function deleteAction(){\n\n\t\t$input = Input::all();\n\t\t$id = $input[\"id\"];\n\t\t$status = false;\n\n\t\ttry {\n\t\t\t$contact = ClientContact::find($id);\n\t\t\t$status = $contact->delete();\n\n\t\t\t$message = \"\";\n\n\t\t} catch(Exception $ex) {\n\t\t\t$message = \"I'm sorry, You cannot delete this client.\";\n\t\t}\n\n\t\t$responses = array(\n\t\t\t'idx'\t => $id,\t\n\t\t\t'message' => $message,\n\t\t\t'status' => $status,\n\t\t);\n\n\t\treturn Response::json( $responses );\n\n\t}", "function delete(string $url, string $auth = \"\", string $message = \"\"): SalsahResponse {\n return $this->makeJsonRequest(self::METHOD_DELETE, $auth, $url, [], $message);\n }", "public function delete($uri, $params = null);", "public function delete($data=array()){\n\t\t\treturn $this->requestor->delete(sprintf( $this->requests['delete']['url'] , $this->accountid ),$data);\n\t\t}", "public function deleteRequestAction()\n {\n \t$params = $this->getRequest()->getParams();\n \t \n \t$flag1 = false;\n \tif( @$params[\"type\"] == \"request\" )\n \t{\n \t\t$flag1 = true;\n \t}\n \t \n \t$result = \\Extended\\link_requests::unlinkUsersByLinkReqId( $params[\"cancel_request\"], $flag1 );\n \t \n \tswitch ( $result )\n \t{\n \t\tcase 0:\n \t\tcase 1:\n \t\tcase 2:\n \t\t\techo Zend_Json::encode( $result );\n \t\t\tbreak;\n \t\tcase 3:\n \t\t\tif (isset($params[\"profileID\"]))\n \t\t\t{\t\n\t \t\t\t$currentUser = Auth_UserAdapter::getIdentity()->getId();\n\t \t\t\t$TagsExist=\\Extended\\link_tags::getAssignedTags($currentUser, $params[\"profileID\"] );\n\t \t\t\t$tagsarr=array();\n\t \t\t\t$removeLinks=\\Extended\\link_tags::removeAllTags($currentUser,$params[\"profileID\"],$tagsarr);\n\t \t\t\t\\Extended\\socialise_photo_custom_privacy::deleteViewerfromCustomViewersList($currentUser, $params['profileID']);\n \t\t\t}\n \t\t\techo Zend_Json::encode( $result );\n \t\t\tbreak;\n \t\n \t\tdefault:\n \t\t\techo Zend_Json::encode( $result );\n \t\t\tbreak;\n \t}\n \tdie;\n }", "public function delete(Request $request,$id){\n\n return response()->json($this->destroy($id));\n }" ]
[ "0.76745677", "0.7563464", "0.7423163", "0.7354735", "0.7348258", "0.7334471", "0.73142326", "0.73036784", "0.7259579", "0.72346044", "0.72028357", "0.7156404", "0.71285206", "0.7121246", "0.71163183", "0.71091264", "0.71027344", "0.71007144", "0.7096575", "0.7090791", "0.7084561", "0.707309", "0.70719296", "0.70668304", "0.70438397", "0.7032444", "0.7025546", "0.7009037", "0.70020777", "0.7001422" ]
0.8011171
1
returns a collection that includes all mappings for the given sku. usually this is refined further.
private static function _get_mappings_collection_for_sku($sku) { return Mage::getModel('salsify_connect/imagemapping') ->getCollection() ->addFieldToFilter('sku', array('eq' => $sku)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function findAllBySku($sku)\n {\n\n // initialize the params\n $params = array(MemberNames::SKU => $sku);\n\n // load and return the URL rewrites for the passed SKU\n foreach ($this->getFinder(SqlStatementKeys::URL_REWRITES_BY_SKU)->find($params) as $result) {\n yield $result;\n }\n }", "private static function _get_mapping_by_sku_and_salsify_id($sku, $id) {\n $mappings = self::_get_mappings_collection_for_sku($sku);\n $mappings = $mappings->addFieldToFilter('salsify_id', array('eq' => $id));\n return self::_get_mapping_from_mappings($mappings);\n }", "public function getMappings($snuids);", "private static function _get_mapping_by_sku_and_checksum($sku, $checksum) {\n $mappings = self::_get_mappings_collection_for_sku($sku);\n $mappings = $mappings->addFieldToFilter('checksum', array('checksum' => $checksum));\n return self::_get_mapping_from_mappings($mappings);\n }", "protected function _getProcessedProductSkus()\n {\n $skus = array();\n $source = $this->getSource();\n\n $source->rewind();\n while ($source->valid()) {\n $current = $source->current();\n $key = $source->key();\n\n if (! empty($current[self::COL_SKU]) && $this->_validatedRows[$key]) {\n $skus[] = $current[self::COL_SKU];\n }\n\n $source->next();\n }\n return $skus;\n }", "private function getSkus($skus){\n\t\t$child_sku = DB::table('mother_child_skus')\n\t\t\t->select('child_sku')\n\t\t\t->whereIn('mother_sku',$skus)->get();\n\n\t\t// merge main and child skus\n\t\t$data = array();\n\t\tif(count($child_sku)>0){\n\t\t\tforeach ($child_sku as $value) {\n\t\t\t\t$data[] = $value->child_sku;\n\t\t\t}\n\t\t}\n\t\tif(!empty($skus)){\n\t\t\t$child_skus = array_merge($data, $skus);\n\t\t}else{\n\t\t\t$child_skus = $data;\n\t\t}\n\n\t\treturn array_unique($child_skus);\n\t}", "public function getMappings();", "public function getList($skus)\n {\n /** @var Mage_Catalog_Model_Resource_Product_Collection $products */\n $products = Mage::getResourceModel('catalog/product_collection');\n\n if (!is_array($skus) || !count($skus)) {\n return $products->addIdFilter();\n }\n\n $products->addAttributeToSelect(Mage::getSingleton('catalog/config')->getProductAttributes())\n ->addAttributeToFilter('sku', array('in' => $skus))\n ->setStore(Mage::app()->getStore())\n ->addMinimalPrice()\n ->addFinalPrice()\n ->addTaxPercents()\n ->addStoreFilter()\n ->addUrlRewrite();\n\n $orderExpression = new Zend_Db_Expr('FIELD(e.sku, \\'' . implode('\\',\\'', $skus) . '\\')');\n $products->getSelect()->order($orderExpression);\n\n $backendModel = $products->getResource()->getAttribute('media_gallery')->getBackend();\n\n foreach($products as $product){\n $backendModel->afterLoad($product);\n }\n\n return $products;\n }", "public function getList($sku, $customerGroupId);", "public function get_mappings() {\n return $this->mappings;\n }", "function explodeSkusByWildcard($skus)\n {\n $return = array();\n \n foreach($skus as $sku)\n {\n $sku = str_replace('*','%', $sku);\n $result = $this->getReadAdapter()->select()\n ->from($this->getProductTable())\n ->where('sku LIKE ?', $sku)\n ->query();\n \n foreach( $result->fetchAll() as $matchedSku )\n {\n array_push($return, $matchedSku['sku']);\n }\n }\n return $return;\n }", "public function getSkuIds()\n {\n return $this->skuIds;\n }", "protected function getSourceItems($sku)\n {\n $searchCriteriaBuilder = $this->searchCriteriaBuilderFactory->create();\n $searchCriteriaBuilder->addFilter(SourceItemInterface::SKU, $sku);\n\n $searchCriteria = $searchCriteriaBuilder->create();\n\n $this->sourceItemRepository = $this->objectManager->create(\n SourceItemRepositoryInterface::class\n );\n $sourceItems = $this->sourceItemRepository->getList($searchCriteria)->getItems();\n\n $sourceItemData = [];\n if ($sourceItems) {\n foreach ($sourceItems as $sourceItem) {\n $sourceItemData[] = [\n SourceItemInterface::SKU => $sourceItem->getSku(),\n SourceItemInterface::SOURCE_CODE => $sourceItem->getSourceCode(),\n SourceItemInterface::QUANTITY => $sourceItem->getQuantity(),\n SourceItemInterface::STATUS => $sourceItem->getStatus()\n ];\n }\n }\n return $sourceItemData;\n }", "public function getVariantsMap();", "function getMappings()\n {\n return array();\n }", "public function searchSkus($sku, $limit = 10)\n {\n $sku = strtolower($sku);\n $search = $this->builder->getSearch();\n\n $query = new Query;\n $wildcard = new Wildcard('sku.lowercase', \"*{$sku}*\");\n $query->setQuery($wildcard);\n $query->setParam('size', $limit);\n $query->setHighlight([\n 'pre_tags' => ['', ''],\n 'post_tags' => ['', ''],\n 'fields' => [\n 'sku.lowercase' => [\n 'type' => 'unified',\n ],\n ],\n ]);\n\n $results = collect($search->search($query)->getResults());\n\n $products = collect();\n\n $results->each(function ($result) use ($products) {\n $skus = collect($result->getHighlights()['sku.lowercase']);\n $skus->each(function ($sku) use ($products, $result) {\n $products->push([\n 'name' => $result->name,\n 'breadcrumbs' => $result->breadcrumbs,\n 'sku' => $sku,\n ]);\n });\n });\n\n return $products;\n }", "function getSKUs() {\n global $credentials;\n $SKUs = array();\n\n // Open DB Connection\n $conn = new mysqli($credentials['ServerName'], $credentials['Username'], $credentials['Password'], $credentials['Database']);\n\n // Check connection\n if ($conn->connect_error) {\n die(\"Connection failed: \" . $conn->connect_error);\n }\n\n // Construct SQL Query\n $sql = \"SELECT sku FROM tbl_product WHERE hidden='0' AND sku IS NOT NULL ORDER BY brand ASC, name ASC\";\n\n // Query DB\n $result = $conn->query($sql);\n\n // Decipher response\n while ($row = $result->fetch_assoc()) {\n array_push($SKUs, $row['sku']);\n }\n\n // Free resources and close DB Connection\n $conn->close();\n\n return $SKUs;\n\n }", "protected function loadProductWebsitesBySku($sku)\n {\n return $this->getProductBunchProcessor()->loadProductWebsitesBySku($sku);\n }", "public function getMapping()\n {\n if (is_null($this->mapping)) {\n\t\t\t$mapping = array();\n\t\t\t$collection = Mage::getModel('quartic/maps')->getCollection();\n\t\t\tforeach ($collection as $element) {\n\t\t\t\t$attr = $element->getData('magento_attribute');\n\t\t\t\tif (!empty($attr)) {\n\t\t\t\t\t$mapping[$element->getData('quartic_attribute')] = $attr;\n\t\t\t\t}\n\t\t\t}\n $this->mapping = $mapping;\n }\n return $this->mapping;\n }", "public function getMappings() {\n\t\treturn $this->mappings;\n\t}", "public static function get_mapping_by_sku_and_image($sku, $image) {\n $url = $image->getUrl();\n $id = self::get_image_mapping_id_from_url($sku, $url);\n\n $mappings = self::_get_mappings_collection_for_sku($sku);\n $mappings = $mappings->addFieldToFilter('magento_id', array('eq' => $id));\n return self::_get_mapping_from_mappings($mappings);\n }", "public function getMappings()\n {\n return $this->mapping;\n }", "private function mapping()\n {\n return Cache::remember('everflow-country-mapping', 30, function () {\n return (new EverflowMetadata)->countries()->countries;\n });\n }", "public function getBundleArray($sku){\r\n $sku = str_replace(\" \", \"\", $sku);\r\n $conn = Mage::getSingleton('core/resource')->getConnection('core_read');\r\n $sql = \"SELECT `item_id`,`product_id`,`sku`, `created_at`,`product_type` \r\n FROM sales_flat_order_item \r\n WHERE (sku = '\".$sku.\"') AND (product_type='bundle') GROUP BY sku \";\r\n\r\n //Mage::log($sql);\r\n\r\n $i = 0;\r\n foreach($conn->fetchAll($sql) as $row){\r\n //retrieve id \r\n //Mage::log(\"CO : \".$i++);\r\n //Mage::log($row);\r\n // //Mage::log();\r\n /* $product['sku'] = $row['sku'];\r\n $product['id']= $row['id'];\r\n $product['children']= $this->getSingleBundleChildren($row['id']);*/\r\n\r\n $children = $this->getSingleBundleChildren($row['product_id']);\r\n\r\n //Mage::log(\"CHILDREN LIST START\");\r\n //Mage::log($children);\r\n \r\n return $children;\r\n }\r\n\r\n }", "public static function siteMap()\n {\n return [];\n }", "protected function userMapping() {\n $user_mapping = [];\n\n if ($user_mappings = $this->userMapping->get('user_mapping')) {\n foreach ($user_mappings as $field_name => $mapping) {\n if (empty($mapping['attribute'])) {\n continue;\n }\n\n $user_mapping[$field_name] = $mapping;\n }\n }\n\n return $user_mapping;\n }", "protected function getMapping() {\n return [];\n }", "public function scan(string $sku);", "public static function get_list_of_skins () {\n\t\t\t$list = array(\n\t\t\t\t'mega_main_blue' => array( \n\t\t\t\t\t'name' => 'MegaMain Blue (Default)',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f4f4f4',\n\t\t\t\t\t'primary_theme_color' => '#3498DB',\n\t\t\t\t\t'primary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t\t'secondary_theme_color' => '#2980B9',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t),\n\t\t\t\t'turquoise' => array( \n\t\t\t\t\t'name' => 'Turquoise',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f4f4f4',\n\t\t\t\t\t'primary_theme_color' => '#1ABC9C',\n\t\t\t\t\t'primary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t\t'secondary_theme_color' => '#16a085',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t),\n\t\t\t\t'emerland' => array( \n\t\t\t\t\t'name' => 'Emerland',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f4f4f4',\n\t\t\t\t\t'primary_theme_color' => '#2ecc71',\n\t\t\t\t\t'primary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t\t'secondary_theme_color' => '#27ae60',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t),\n\t\t\t\t'amethyst' => array( \n\t\t\t\t\t'name' => 'Amethyst',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f4f4f4',\n\t\t\t\t\t'primary_theme_color' => '#9b59b6',\n\t\t\t\t\t'primary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t\t'secondary_theme_color' => '#8e44ad',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t),\n\t\t\t\t'midnight' => array( \n\t\t\t\t\t'name' => 'Midnight',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f4f4f4',\n\t\t\t\t\t'primary_theme_color' => '#34495e',\n\t\t\t\t\t'primary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t\t'secondary_theme_color' => '#2c3e50',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t),\n\t\t\t\t'sunflower' => array( \n\t\t\t\t\t'name' => 'Sunflower',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f4f4f4',\n\t\t\t\t\t'primary_theme_color' => '#f1c40f',\n\t\t\t\t\t'primary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t\t'secondary_theme_color' => '#f39c12',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t),\n\t\t\t\t'carrot' => array( \n\t\t\t\t\t'name' => 'Carrot',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f4f4f4',\n\t\t\t\t\t'primary_theme_color' => '#e67e22',\n\t\t\t\t\t'primary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t\t'secondary_theme_color' => '#d35400',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t),\n\t\t\t\t'alizarin' => array( \n\t\t\t\t\t'name' => 'Alizarin',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f4f4f4',\n\t\t\t\t\t'primary_theme_color' => '#e74c3c',\n\t\t\t\t\t'primary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t\t'secondary_theme_color' => '#c0392b',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t),\n\t\t\t\t'avada_green' => array( \n\t\t\t\t\t'name' => 'Avada Green',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f6f6f6',\n\t\t\t\t\t'primary_theme_color' => '#A0CE4E',\n\t\t\t\t\t'primary_theme_contrast_color' => '#ffffff',\n\t\t\t\t\t'secondary_theme_color' => '#92BE43',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#ffffff',\n\t\t\t\t),\n\t\t\t\t'the7_aqua' => array( \n\t\t\t\t\t'name' => 'The 7 Aqua',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#ffffff',\n\t\t\t\t\t'primary_theme_color' => '#0ca2e0',\n\t\t\t\t\t'primary_theme_contrast_color' => '#ffffff',\n\t\t\t\t\t'secondary_theme_color' => '#27dde8',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#ffffff',\n\t\t\t\t),\n\t\t\t\t'salient_classic' => array( \n\t\t\t\t\t'name' => 'Salient Classic',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f4f4f4',\n\t\t\t\t\t'primary_theme_color' => '#27CFC3',\n\t\t\t\t\t'primary_theme_contrast_color' => '#ffffff',\n\t\t\t\t\t'secondary_theme_color' => '#27ccc0',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#ffffff',\n\t\t\t\t),\n\t\t\t\t'white' => array( \n\t\t\t\t\t'name' => 'White',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f4f4f4',\n\t\t\t\t\t'primary_theme_color' => '#ffffff',\n\t\t\t\t\t'primary_theme_contrast_color' => '#333333',\n\t\t\t\t\t'secondary_theme_color' => '#ffffff',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#646464',\n\t\t\t\t),\n/*\n\t\t\t\t'midnight' => array( \n\t\t\t\t\t'name' => 'Midnight',\n\t\t\t\t\t'title_font' => array( 'font_family' => 'Inherit', 'font_size' => '18', 'font_color' => '#333333', 'font_weight' => '400' ),\n\t\t\t\t\t'text_font' => array( 'font_family' => 'Inherit', 'font_size' => '13', 'font_color' => '#646464', 'font_weight' => '400' ),\n\t\t\t\t\t'wrapper_bg' => '#f4f4f4',\n\t\t\t\t\t'primary_theme_color' => '#34495e',\n\t\t\t\t\t'primary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t\t'secondary_theme_color' => '#2c3e50',\n\t\t\t\t\t'secondary_theme_contrast_color' => '#f8f8f8',\n\t\t\t\t),\n*/\n\t\t\t);\n\t\t\treturn $list;\n\t\t}", "public function setSKU($sKU)\n {\n $this->sKU = $sKU;\n return $this;\n }" ]
[ "0.62592924", "0.616411", "0.59877294", "0.59734446", "0.55615747", "0.55109394", "0.5418309", "0.5394946", "0.53517705", "0.52454674", "0.5232966", "0.522752", "0.5220705", "0.5146976", "0.5135735", "0.5111086", "0.510174", "0.5091052", "0.5035456", "0.4970617", "0.49570706", "0.4935411", "0.49073637", "0.49050772", "0.48638812", "0.48340675", "0.48086116", "0.47951946", "0.4751942", "0.4727581" ]
0.79670745
0
returns the ImageMapping model instance if it exists for the given sku and checksum.
private static function _get_mapping_by_sku_and_checksum($sku, $checksum) { $mappings = self::_get_mappings_collection_for_sku($sku); $mappings = $mappings->addFieldToFilter('checksum', array('checksum' => $checksum)); return self::_get_mapping_from_mappings($mappings); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function findBySku($sku)\n {\n /*\n * Create a new static instance\n */\n $instance = new static();\n\n /*\n * Try and find the SKU record\n */\n $sku = $instance\n ->sku()\n ->getRelated()\n ->with('item')\n ->where('code', $sku)\n ->first();\n\n /*\n * Check if the SKU was found, and if an item is\n * attached to the SKU we'll return it\n */\n if ($sku && $sku->item) {\n return $sku->item;\n }\n\n /*\n * Return false on failure\n */\n return false;\n }", "private static function _get_mappings_collection_for_sku($sku) {\n return Mage::getModel('salsify_connect/imagemapping')\n ->getCollection()\n ->addFieldToFilter('sku', array('eq' => $sku));\n }", "private function getExistingSku($sku)\n {\n if (version_compare($this->productMetadata->getVersion(), '2.2.0', '>=')) {\n $sku = strtolower($sku);\n }\n if (isset($this->_oldSku[$sku])) {\n $result = $this->_oldSku[$sku];\n } else {\n $result = false;\n }\n return $result;\n }", "public function get_product_by_sku($sku){\n\t\tglobal $wpdb;\n\n\t\t$product_id = $wpdb->get_var($wpdb->prepare(\"SELECT post_id FROM $wpdb->postmeta WHERE meta_key='_sku' AND meta_value='%s' LIMIT 1\", $sku));\n\n\t\tif($product_id) return new WC_Product($product_id);\n\n\t\treturn false;\n\n\t}", "public static function getBySku($sku)\n\t{\n\t\t$products = self::getAllByCriteria('sku = ? ', array(trim($sku)), false, 1, 1);\n\t\treturn (count($products) === 0 ? null : $products[0]);\n\t}", "public function find($uid) {\n\t\ttry {\n\t\t\t$model = $this->map->get($uid);\n\t\t} catch (tx_oelib_Exception_NotFound $exception) {\n\t\t\t$model = $this->createGhost($uid);\n\t\t}\n\n\t\treturn $model;\n\t}", "private function doesProductExist($sku)\n {\n if ($this->productRepository->get($sku)->getId()) {\n return true;\n }\n return false;\n }", "private static function get_product_by_sku( $sku ) {\n\n\t\tif ( ! $sku ) {\n\t\t\treturn null;\n\t\t}\n\n\t\t$product_id = wc_get_product_id_by_sku( $sku );\n\n\t\treturn wc_get_product( $product_id );\n\t}", "public static function get_mapping_by_sku_and_image($sku, $image) {\n $url = $image->getUrl();\n $id = self::get_image_mapping_id_from_url($sku, $url);\n\n $mappings = self::_get_mappings_collection_for_sku($sku);\n $mappings = $mappings->addFieldToFilter('magento_id', array('eq' => $id));\n return self::_get_mapping_from_mappings($mappings);\n }", "public static function findBySku2($sku = '')\n {\n return self::whereHas('sku', function ($query) use ($sku) {\n $query->where('code', $sku);\n })->first();\n }", "protected function findSku($description, $size) {\n\t $conditions = array('Description' => $description, 'Ref2' => $size );\n\t $item_master = ItemMaster::collection()->findOne($conditions, array('SKU' => true));\n\n\t if ( $item_master) {\n\t return $item_master['SKU'];\n\t } else {\n\t return false;\n\t }\n\t}", "public function searchConfigForUUID(String $uuid)\n\t{\n\t\tif($modelPath = config(\"alpacajs.models.\".$uuid, false)){\n\t\t\treturn new $modelPath;\n\t\t} else {\n\t\t\treturn false;\n\t\t}\n\t}", "public static function get_image_mapping_id_from_url($sku, $url) {\n // sku ends up being redundant here, but worth keeping around just in case\n // magento decides to change how it's randomly-generated file names change\n return $sku . '---' . substr($url, strrpos($url, '/') + 1);\n }", "public function loadProductValuesObjectBySKU($sku)\n {\n $existingPostQuery = array(\n 'numberposts' => 1,\n 'meta_key' => '_sku',\n 'post_type' => 'product',\n 'meta_query' => array(\n array(\n 'key' =>'_sku',\n 'value' => $sku,\n 'compare' => '='\n )\n )\n );\n \n $posts = get_posts($existingPostQuery);\n if (!$posts) {\n return false;\n }\n \n return new WooCommerceProductValuesObject($posts[0]);\n }", "public function slugExists( $slug )\r\n {\r\n $mapper = $this->getMapper();\r\n $mapper->load(array('metadata.slug'=>$slug));\r\n \r\n if ($mapper->id) {\r\n return $mapper;\r\n }\r\n \r\n return false;\r\n }", "private static function _get_mapping_by_sku_and_salsify_id($sku, $id) {\n $mappings = self::_get_mappings_collection_for_sku($sku);\n $mappings = $mappings->addFieldToFilter('salsify_id', array('eq' => $id));\n return self::_get_mapping_from_mappings($mappings);\n }", "protected function getProductBySKU($store, $sku)\n {\n $product = Mage::getModel('catalog/product');\n $productId = $product->getIdBySku($sku);\n if ($productId) $product->setStore($store)->setStoreId($store->getId())->load($productId);\n if ($product->getId()) return $product;\n else return null;\n }", "public function isValidSku($sku)\n {\n $return = true;\n try {\n $this->productRepository->get($sku);\n } catch (Exception $e) {\n $return = false;\n }\n return $return;\n }", "private function isSkuExist($sku)\n {\n if (version_compare($this->productMetadata->getVersion(), '2.2.0', '>=')) {\n $sku = strtolower($sku);\n }\n return isset($this->_oldSku[$sku]);\n }", "public function get($uid) {\n\t\tif ($uid <= 0) {\n\t\t\tthrow new InvalidArgumentException('$uid must be > 0.', 1331488761);\n\t\t}\n\n\t\tif (!isset($this->items[$uid])) {\n\t\t\tthrow new tx_oelib_Exception_NotFound(\n\t\t\t\t'This map currently does not contain a model with the UID ' .\n\t\t\t\t\t$uid . '.'\n\t\t\t);\n\t\t}\n\n\t\treturn $this->items[$uid];\n\t}", "public function findByUrl(string $url): Product\n {\n try {\n $product = $this->connection\n ->select()\n ->from($this->dummy->getTableName())\n ->where('url', '=', $url)\n ->getOneClass(Product::class);\n } catch (MultipleRowFoundException $e) {\n throw new MappingException($e->getMessage());\n } catch (RowNotFoundException $e) {\n throw new MappingException($e->getMessage());\n }\n\n return $product;\n }", "public function getSku();", "public function getSku();", "public function generateSku()\n {\n /*\n * Make sure sku generation is enabled and the item has a category, if not we'll return false.\n */\n if (!$this->skusEnabled() || !$this->hasCategory()) {\n return false;\n }\n\n /*\n * If the item already has an SKU, we'll return it\n */\n if ($this->hasSku()) {\n return $this->sku;\n }\n\n /*\n * Get the set SKU code length from the configuration file\n */\n $codeLength = Config::get('inventory' . InventoryServiceProvider::$packageConfigSeparator . 'sku_code_length');\n\n /*\n * Get the set SKU prefix length from the configuration file\n */\n $prefixLength = Config::get('inventory' . InventoryServiceProvider::$packageConfigSeparator . 'sku_prefix_length');\n\n /*\n * Get the set SKU separator\n */\n $skuSeparator = Config::get('inventory' . InventoryServiceProvider::$packageConfigSeparator . 'sku_separator');\n\n /*\n * Make sure we trim empty spaces in the separator if it's a string, otherwise we'll\n * set it to NULL\n */\n $skuSeparator = (is_string($skuSeparator) ? trim($skuSeparator) : null);\n\n /*\n * Trim the category name to remove blank spaces, then\n * grab the first 3 letters of the string, and uppercase them\n */\n $prefix = strtoupper(substr(trim($this->category->name), 0, intval($prefixLength)));\n\n /*\n * We'll make sure the prefix length is greater than zero before we try and\n * generate an SKU\n */\n if (strlen($prefix) > 0) {\n /*\n * Create the numerical code by the items ID\n * to accompany the prefix and pad left zeros\n */\n $code = str_pad($this->getKey(), $codeLength, '0', STR_PAD_LEFT);\n\n /*\n * Process the generation\n */\n return $this->processSkuGeneration($this->getKey(), $prefix . $skuSeparator . $code);\n }\n\n /*\n * Always return false on generation failure\n */\n return false;\n }", "public function skus()\n {\n return $this->hasOne(Sku::class);\n }", "public function isProductMapped($asin)\n {\n $mappedColl = $this->productMap->getCollection()\n ->addFieldToFilter('amazon_pro_id', ['eq' =>$asin]);\n if ($mappedColl->getSize()) {\n return false;\n } else {\n return true;\n }\n }", "public function getProductFromMagento($strSku)\r\n {\r\n return $this->getMagentoProductsInfo($strSku);\r\n }", "protected function getSkuToPkMappingUtil()\n {\n return $this->skuToPkMappingUtil;\n }", "public function getItemByUid($uid) {\n\t\t\n\t\tforeach ( $this->items as $item ) {\n\t\t\tif ($uid == $item->getUid()) {\n\t\t\t\treturn $item;\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn false;\n\t}", "public function fetchItemByHash($hash)\r\n {\r\n if (empty($this->items)) {\r\n return false;\r\n }\r\n \r\n foreach ($this->items as $item)\r\n {\r\n if ($item['hash'] == $hash) {\r\n return $item;\r\n }\r\n }\r\n \r\n return false;\r\n }" ]
[ "0.6457777", "0.57961804", "0.5636999", "0.56273645", "0.53957176", "0.5357912", "0.53179485", "0.52063817", "0.51800615", "0.51646316", "0.50024617", "0.49773857", "0.49713063", "0.48829454", "0.48634845", "0.48205084", "0.4805457", "0.47128457", "0.47110704", "0.46905893", "0.46535018", "0.46418405", "0.46418405", "0.4621104", "0.4590991", "0.45764518", "0.45654845", "0.45484588", "0.45447138", "0.45298845" ]
0.6054171
1
takes a sku and the image get getMediaGalleryImages and returns the mapping for the image if it exists.
public static function get_mapping_by_sku_and_image($sku, $image) { $url = $image->getUrl(); $id = self::get_image_mapping_id_from_url($sku, $url); $mappings = self::_get_mappings_collection_for_sku($sku); $mappings = $mappings->addFieldToFilter('magento_id', array('eq' => $id)); return self::_get_mapping_from_mappings($mappings); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private static function _get_mappings_collection_for_sku($sku) {\n return Mage::getModel('salsify_connect/imagemapping')\n ->getCollection()\n ->addFieldToFilter('sku', array('eq' => $sku));\n }", "public function getGalleryImagesJson()\n {\n $imagesItems = [];\n $product = $this->getProduct();\n $magic360Slide = null;\n\n if (!$this->standaloneMode) {\n $images = $this->getGalleryImagesCollection($product);\n if ($images->count()) {\n $magic360Icon = $this->getMagic360IconPath();\n if ($magic360Icon) {\n $magic360Icon = $this->magic360ImageHelper\n ->init(null, 'product_page_image_small', ['width' => null, 'height' => null])\n ->setImageFile($magic360Icon)\n ->getUrl();\n } else {\n $magic360Icon = $this->_imageHelper->getDefaultPlaceholderUrl('thumbnail');\n }\n $id = $product->getId();\n $magic360Slide = [\n 'magic360' => 'Magic360-product-'.$id,\n 'thumb' => $magic360Icon,\n 'img' => $magic360Icon,\n 'html' => '<div class=\"fotorama__select\">'.$this->renderedGalleryHtml[$id].'</div>',\n 'caption' => '',\n 'position' => $this->spinPosition,\n 'isMain' => true,\n 'type' => 'magic360',\n 'videoUrl' => null,\n 'fit' => 'none',\n ];\n }\n }\n\n $productImages = $this->getGalleryImages() ?: [];\n $productMainImage = $product->getImage();\n $productName = $product->getName();\n $isMain = !($magic360Slide);\n $position = 0;\n foreach ($productImages as $image) {\n if ($position == $this->spinPosition) {\n if ($magic360Slide) {\n $imagesItems[$position] = $magic360Slide;\n $magic360Slide = null;\n $position++;\n }\n }\n $imagesItems[$position] = [\n 'thumb' => $image->getData('small_image_url'),\n 'img' => $image->getData('medium_image_url'),\n 'full' => $image->getData('large_image_url'),\n 'caption' => ($image->getLabel() ?: $productName),\n 'position' => $position,\n 'isMain' => ($isMain && ($image->getFile() == $productMainImage)),\n 'type' => str_replace('external-', '', $image->getMediaType()),\n 'videoUrl' => $image->getVideoUrl(),\n ];\n $position++;\n }\n\n if ($magic360Slide) {\n $imagesItems[$position] = $magic360Slide;\n }\n\n if (empty($imagesItems)) {\n $imagesItems[] = [\n 'thumb' => $this->_imageHelper->getDefaultPlaceholderUrl('thumbnail'),\n 'img' => $this->_imageHelper->getDefaultPlaceholderUrl('image'),\n 'full' => $this->_imageHelper->getDefaultPlaceholderUrl('image'),\n 'caption' => '',\n 'position' => 0,\n 'isMain' => true,\n 'type' => 'image',\n 'videoUrl' => null,\n ];\n }\n\n return json_encode($imagesItems);\n }", "public function getGalleryImagesCollection($product = null)\n {\n static $images = [];\n if (is_null($product)) {\n $product = $this->getProduct();\n }\n $id = $product->getId();\n if (!isset($images[$id])) {\n $images[$id] = $this->collectionFactory->create();\n $galleryModel = $this->modelGalleryFactory->create();\n $collection = $galleryModel->getCollection();\n $collection->addFieldToFilter('product_id', $id);\n if ($collection->count()) {\n $_images = $collection->getData();\n $compare = function ($a, $b) {\n if ($a['position'] == $b['position']) {\n return 0;\n }\n return (int)$a['position'] > (int)$b['position'] ? 1 : -1;\n };\n usort($_images, $compare);\n\n $makeSquareImages = $this->toolObj->params->checkValue('square-images', 'Yes');\n\n foreach ($_images as &$image) {\n if (!$this->magic360ImageHelper->fileExists($image['file'])) {\n continue;\n }\n unset($image['product_id']);\n $image['large_image_url'] = $this->magic360ImageHelper\n ->init($product, 'product_page_image_large', ['width' => null, 'height' => null])\n ->setImageFile($image['file'])\n ->getUrl();\n\n $originalSizeArray = $this->magic360ImageHelper->getImageSizeArray();\n\n if ($makeSquareImages) {\n $bigImageSize = ($originalSizeArray[0] > $originalSizeArray[1]) ? $originalSizeArray[0] : $originalSizeArray[1];\n $image['large_image_url'] = $this->magic360ImageHelper\n ->init($product, 'product_page_image_large')\n ->setImageFile($image['file'])\n ->keepFrame(true)\n ->resize($bigImageSize)\n ->getUrl();\n }\n\n list($w, $h) = $this->magicToolboxHelper->magicToolboxGetSizes('thumb', $originalSizeArray);\n $this->magic360ImageHelper\n ->init($product, 'product_page_image_medium', ['width' => $w, 'height' => $h])\n ->setImageFile($image['file']);\n if ($makeSquareImages) {\n $this->magic360ImageHelper->keepFrame(true);\n }\n $image['medium_image_url'] = $this->magic360ImageHelper->getUrl();\n\n $images[$id]->addItem(new \\Magento\\Framework\\DataObject($image));\n }\n }\n }\n return $images[$id];\n }", "function get_metabox_image_gallery($key){\n $image = 0;\n $images = rwmb_meta( $key, array( 'size' => 'thumbnail' ) );\n return $images;\n }", "function processImages($product, $data)\n {\n //IMAGES\n //$path = 'C:\\\\Magento\\\\enterprise-1.12.0.2\\\\temp_iw_images\\\\';\n $path = 'images'.DS;\n\n //Check for pre-existing images and remove them \n $mediaGalleryData = $product->getData('media_gallery');\n\n if ($mediaGalleryData['images'])\n {\n //Get the images\n\n echo \"Found pre-existing images: \".$product->getsku().\"\\n\";\n $attributes = $product->getTypeInstance ()->getSetAttributes ();\n $gallery = $attributes ['media_gallery'];\n foreach ( $mediaGalleryData ['images'] as $image ) {\n //If image exists\n if ($gallery->getBackend ()->getImage ( $product, $image ['file'] )) \n {\n $gallery->getBackend ()->removeImage ( $product, $image ['file'] );\n }\n }\n $product->save ();\n\n foreach ($gallery['images'] as &$image) {\n $image['removed'] = 1;\n }\n $product->setData('media_gallery', $gallery);\n }\n\n $imageNameCollection = explode(\"|\", $data[13]);\n\n echo \"Adding image(s) to Sku: \".$product->getsku().\"\\n\";\n foreach($imageNameCollection as $imageString)\n {\n $imageArray = explode(\"~\", $imageString);\n $img = @file_get_contents('http://eimages.interweave.com/products/450/'.$imageArray[0]);\n\n if ($img) \n {\t\n if (file_exists($path.$imageArray[0])) unlink($path.$imageArray[0]);\n file_put_contents($path.$imageArray[0], $img);\n } \n else \n {\n echo ' -> Not Found'.PHP_EOL;\n Mage::log(\"SKU:\".$product->getSku(), null, \"ProductImageImport-NotFound.log\");\n }\n\n if (file_exists($path.$imageArray[0]) && $imageArray[0] != \"\") \n {\n $exclude = false;\n if(strtoupper($imageArray[1]) != \"TRUE\")\n {\n $exclude = true;\n }\n\n echo \"Adding image \".$path.$imageArray[0].\" to \".$product->getSku().\"\\n\";\n if(!$exclude)\n {\n $product->addImageToMediaGallery($path.$imageArray[0], array('thumbnail','small_image','image'), TRUE, FALSE);\n }\n else\n {\n $product->addImageToMediaGallery(realpath($path.$imageArray[0]), null, TRUE, FALSE);\n }\n } \n else \n {\n echo \"Image Not Imported for \".$product->getSku().\"\\n\";\n Mage::log(\"SKU:\".$product->getSku(),null, \"ProductImageImport-Failed.log\");\n } \n }\n }", "private function get_item_images() {\n\t\t$restrict_sitemap_featured_img = isset( $this->options['restrict_sitemap_featured_img'] ) ? $this->options['restrict_sitemap_featured_img'] : false;\n\t\tif ( ! $restrict_sitemap_featured_img && preg_match_all( '/<img [^>]+>/', $this->item->post_content, $matches ) ) {\n\t\t\t$this->get_images_from_content( $matches );\n\t\t}\n\n\t\t// Also check if the featured image value is set.\n\t\t$post_thumbnail_id = get_post_thumbnail_id( $this->item->ID );\n\t\tif ( '' !== $post_thumbnail_id ) {\n\t\t\t$this->get_item_featured_image( $post_thumbnail_id );\n\t\t}\n\t}", "function smfeed_get_product_image($prod_id, $prod_image, $base_image_dir, $sef, $show_image, $base_dir, $link_rewrite){\n\t\n\tif ($show_image == \"v2\") {\n\t\treturn $base_dir . $prod_image . \"/\" . $link_rewrite . \".jpg\";\n\t}\n\telseif ($show_image == \"v3\") {\n\t\t$tmp = str_split($prod_image);\n\t\t$image_folder = join(\"/\", $tmp);\n\t\treturn $base_image_dir . $image_folder . \"/\" . $prod_image . \".jpg\";\n\t}\n\telseif ($sef == \"v2\") {\n\t\treturn $base_dir . $prod_id . \"-\" . $prod_image . \"/\" . $link_rewrite . \".jpg\";\n\t}\n\telse {\n\t\treturn $base_image_dir . $prod_id . \"-\" . $prod_image . \".jpg\";\n\t}\n\t\n}", "public static function get_image_mapping_id_from_url($sku, $url) {\n // sku ends up being redundant here, but worth keeping around just in case\n // magento decides to change how it's randomly-generated file names change\n return $sku . '---' . substr($url, strrpos($url, '/') + 1);\n }", "protected function getOptionImages()\n {\n $images = [];\n foreach ($this->getAllowProducts() as $product) {\n $productImages = $this->helper->getGalleryImages($product) ?: [];\n foreach ($productImages as $image) {\n $images[$product->getId()][] =\n [\n 'thumb' => $image->getData('small_image_url'),\n 'img' => $image->getData('medium_image_url'),\n 'full' => $image->getData('large_image_url'),\n 'zoom' => $image->getData('zoom_image_url'),\n 'caption' => $image->getLabel(),\n 'position' => $image->getPosition(),\n 'isMain' => $image->getFile() == $product->getImage(),\n 'media_type' => $image->getMediaType(),\n 'videoUrl' => $image->getVideoUrl(),\n ];\n }\n }\n\n return $images;\n }", "function get_url_image_session($img = '', $size = 'medium', $jk = 'Laki-laki') {\n if (is_pengajar() OR is_admin()) {\n return get_url_image_pengajar($img, $size, $jk);\n } elseif (is_siswa()) {\n return get_url_image_siswa($img, $size, $jk);\n }\n}", "function getMapImage(){\n\t\t$out\t= null;\n\t\t\n\t\t/**\n\t\t * Check of image type.\n\t\t * @var Integer hods the typ of image ([1] Graphics Interchange, [2] Joint Photographic Experts Group, [3] Portable Network Graphics)\n\t\t */\n\t\t$type\t= exif_imagetype( $this->config->getConfig( 'MAP_PATH' ) );\n\n\t\t/**\n\t\t * Loding the image with the applicable method.\n\t\t */\n\t\tswitch ($type) { \n\t\t\tcase 1 : \n\t\t\t\t$out = imageCreateFromGif( $this->config->getConfig( 'MAP_PATH' ) ); \n\t\t\tbreak; \n\t\t\tcase 2 : \n\t\t\t\t$out = imageCreateFromJpeg( $this->config->getConfig( 'MAP_PATH' ) ); \n\t\t\tbreak; \n\t\t\tcase 3 : \n\t\t\t\t$out = imageCreateFromPng( $this->config->getConfig( 'MAP_PATH' ) ); \n\t\t\tbreak; \n\t\t} \n\n\t\treturn $out;\n\t}", "private function getImageMap(Micro $application)\n {\n /**\n * Find the languages available\n */\n $languages = $application->config->get('languages');\n $keys = array_keys($languages->toArray());\n $languageMap = $application->config->get('languages_map')->toArray();\n $images = array_combine($keys, $keys);\n $images = array_merge($images, $languageMap);\n\n\n return $images;\n }", "public function getAvailableImages($show_hidden = false) {\n $this->load->helper('directory');\n $map = directory_map('./content/plugins/gallery/image/', FALSE, $show_hidden);\n return $map;\n }", "function get_sticker_image($data,$hq){\n\t $image = array('pre'=>\"\",'prew'=>0,'preh'=>0);\n\t\tif(isset($data['images'])){\n\t\t\tforeach($data['images'] as $pk => $pv){\n\t\t\t\tif($pv['width'] == '64' || $pv['height'] == '64'){\n\t\t\t\t\t$image['pre'] = $pv['url']; $image['prew'] = $pv['width']; $image['preh'] = $pv['height']; }\n\t\t\t\tif($pv['width'] == '128' || $pv['height'] == '128'){\n\t\t\t\t\t$image['pre'] = $pv['url']; $image['prew'] = $pv['width']; $image['preh'] = $pv['height']; }\n\t\t\t\tif($pv['width'] == '512' || $pv['height'] == '512' && $hq == true){\n\t\t\t\t\t$image['pre'] = $pv['url']; $image['prew'] = $pv['width']; $image['preh'] = $pv['height']; }\n\t\t\t}\n\t\t} else {\n\t\t\tif(isset($data['photo_512']) && $hq == true){ $image['pre'] = $data['photo_512']; $image['prew'] = 512; $image['preh'] = 512; }\n\t elseif(isset($data['photo_256'])){ $image['pre'] = $data['photo_256']; $image['prew'] = 256; $image['preh'] = 256;}\n\t elseif(isset($data['photo_128'])){ $image['pre'] = $data['photo_128']; $image['prew'] = 128; $image['preh'] = 128;}\n\t elseif(isset($data['photo_64'])){ $image['pre'] = $data['photo_64']; $image['prew'] = 64; $image['preh'] = 64;}\n\t\t}\n\t\t\n\t\treturn $image;\n\t}", "public function getImagesForSeo();", "protected function _getProductImages()\n {\n $product = $this->getProduct();\n $galleryData = $product->getData('media_gallery');\n\n if (!isset($galleryData['images']) || !is_array($galleryData['images'])) {\n return array();\n }\n\n $result = array();\n foreach ($galleryData['images'] as $image) {\n $image['url'] = Mage::getSingleton('catalog/product_media_config')\n ->getMediaUrl($image['file']);\n $result[] = $image;\n }\n return $result;\n }", "private function get_fallback_images(){\n\t\t\t$fallback_images = get_field( 'video_stills', $this->ID );\n\t\t\t$images_array = array(); \n\t\t\tif($fallback_images && count($fallback_images) > 0){\n\t\t\t\tforeach( $fallback_images as $image ){\n\t\t\t\t\tarray_push( $images_array, new Image( false, $image['id'] ) );\n\t\t\t\t}\n\t\t\t}\n\t\t\treturn $images_array; \n\t\t}", "private function _addImages($product_id,$defaultimage,$defaultimage_ext='',$storeId)\r\n\t{\r\n\t\t$allow_extension = explode(\",\",trim(Mage::helper('marketplace')->storeImageExtension()));\r\n\t\t$mediDir = Mage::getBaseDir('media');\r\n\t\t$imagesdir = $mediDir . '/marketplace/' . $product_id . '/';\r\n\t\tif(!file_exists($imagesdir)){return false;}\r\n\t\tforeach (new DirectoryIterator($imagesdir) as $fileInfo){\r\n \t\tif($fileInfo->isDot() || $fileInfo->isDir()) continue;\r\n \t\tif($fileInfo->isFile()){\r\n \t\t\t$file_extension = pathinfo($fileInfo->getPathname(), PATHINFO_EXTENSION);\r\n\t\t\t\tif(in_array($file_extension,$allow_extension)){\r\n\t\t\t\t\t$fileinfo=explode('@',$fileInfo->getPathname());\r\n\t\t\t\t\t$objprod=Mage::getModel('catalog/product')->load($product_id);\r\n\t\t\t\t\t$objprod->addImageToMediaGallery($fileInfo->getPathname(), array ('image','small_image','thumbnail'), true, false);\r\n\t\t\t\t\t$objprod->save();\t\t\t\t\t\r\n\t\t\t\t}\r\n \t\t}\r\n\t\t}\r\n\t\t/**\r\n\t * Retrive media gallery images\r\n\t *\r\n\t * @return Varien_Data_Collection\r\n\t */\r\n\t\t$newimage = '';\r\n\t\t$_product = Mage::getModel('catalog/product')->load($product_id)->getMediaGalleryImages();\r\n\t\tif (strpos($defaultimage, '.') !== FALSE){\r\n\t\t\t$defimage = explode('.'.$defaultimage_ext,$defaultimage);\r\n\t\t\tforeach ($_product as $value) {\r\n\t\t\t\tif (strpos($value->getFile(), $defimage[0]) !== FALSE){\r\n\t\t\t\t\t$newimage = $value->getFile();\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}else{\r\n\t\t\tforeach ($_product as $value) {\r\n\t\t\t\tif($value->getValueId()==$defaultimage){\r\n\t\t\t\t\t$newimage = $value->getFile();\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t\tif($newimage){\r\n\t\t\t$objprod=Mage::getModel('catalog/product')->setStoreId($storeId)->load($product_id);\r\n\t\t\t$objprod->setSmallImage($newimage);\r\n\t\t\t$objprod->setImage($newimage);\r\n\t\t\t$objprod->setThumbnail($newimage);\r\n\t\t\t$objprod->save();\r\n\t\t}\r\n\t}", "public function renderMediaImages() {\n global $s_lang;\n $arImages = $this->adData[\"images\"];\n foreach ($arImages as $imageIndex => $arImage) {\n $arImages[$imageIndex] = array_merge($arImages[$imageIndex], array_flatten(unserialize($arImage[\"SER_META\"]), true, \"_\", \"META_\"));\n if ($arImage['FK'] == 0) {\n $arImages[$imageIndex]['BASE64'] = base64_encode( file_get_contents($arImage['TMP_THUMB']) );\n }\n }\n $tpl_images = new Template(\"tpl/\".$s_lang.\"/\".$this->tplImages);\n $tpl_images->addlist(\"liste\", $arImages, \"tpl/\".$s_lang.\"/\".$this->tplImagesRow);\n return $tpl_images->process(true);\n }", "function picasaimages($user, $albumId, $catid, $pagination, &$errorMsg) {\n\t\t// Medium - can be taken as original (if Picasat thumbs are too small or as thumbnail)\n\t\t// Small - is taken as thumbnail\n\t\t\n\t\t// In getSize we decide if the mediumT will be 0 or 1\n\t\t// mediumT = 1 - thumbnail, mediumT = 0 - original\n\t\t$mediumT = 0;\n\t\tphocagalleryimport('phocagallery.picasa.picasa');\n\t\t$size = PhocaGalleryPicasa::getSize($mediumT);\n\t\t\n\t\t$Ot\t\t\t\t= '$t';\n\t\t$OgeorssWhere\t= 'georss$where';\n\t\t$OgmlPoint \t\t= 'gml$Point';\n\t\t$OgmlPos \t\t= 'gml$pos';\n\t\t$OmediaGroup\t= 'media$group';\n\t\t$OmediaContent\t= 'media$content';\n\t\t$OmediaThumbnail= 'media$thumbnail';\n\t\t$OgphotoId \t\t= 'gphoto$id';\n\t\t$OgphotoName \t= 'gphoto$name';\n\t\t$Ot\t\t\t\t= '$t';\n\t\t\n\t\t// LARGE AND SMALL( AND MEDIUM) - will be the same everywhere so we take them in one\n\t\t$albumAddressLSM\t= 'http://picasaweb.google.com/data/feed/api/user/'.htmlentities($user).'/albumid/'.$albumId.'?alt=json&kind=photo'.$size['lsm'].$pagination;\n\t\t$dataAlbumLSM \t\t= PhocaGalleryPicasa::loadDataByAddress($albumAddressLSM, 'album', $errorMsg);\n\t\n\t\tif(!$dataAlbumLSM) {\n\t\t\t//$errorMsg = JText::_('PHOCAGALLERY_PICASA_NOT_LOADED_IMAGE');\n\t\t\treturn false;\n\t\t}\n\t\t$dataAlbumLSM \t= json_decode($dataAlbumLSM);\n\t\t\n\t\t$dataImg = array();\n\t\t\n\t\n\t\t// LARGE AND SMALL (AND MEDIUM)\n\t\tif (isset($dataAlbumLSM->feed->entry) && count($dataAlbumLSM->feed->entry) > 0) {\n\t\t\t$i = 0;\n\t\t\tforeach ($dataAlbumLSM->feed->entry as $key => $value) {\n\t\t\t\t\n\t\t\t\t$row->date = gmdate('Y-m-d H:i:s');\n\t\t\t\t$dataImg[$i]['extid']\t\t\t= $value->{$OgphotoId}->{$Ot};\n\t\t\t\t$dataImg[$i]['title']\t\t\t= $value->title->{$Ot};\n\t\t\t\t$dataImg[$i]['description']\t= $value->summary->{$Ot};\n\t\t\t\t$dataImg[$i]['extl']\t\t\t= $value->content->src;\n\t\t\t\t$dataImg[$i]['exto']\t\t\t= str_replace('/s'.$size['ls'].'/', '/', $value->content->src);\n\t\t\t\t$dataImg[$i]['exts']\t\t\t= $value->{$OmediaGroup}->{$OmediaThumbnail}[0]->url;\n\t\t\t\tif ($mediumT == 1) {\n\t\t\t\t\t$dataImg[$i]['extm']\t\t= $value->{$OmediaGroup}->{$OmediaThumbnail}[1]->url;\n\t\t\t\t}\n\t\t\t\t$dataImg[$i]['date']\t\t\t= substr(str_replace('T', ' ',$value->updated->{$Ot}), 0, 19);\n\t\t\t\t/*if (isset($value->{$OgeorssWhere}->{$OgmlPoint}->{$OgmlPos}->{$Ot})) {\n\t\t\t\t\t$dataImg[$i]['latitude']\t= substr($value->{$OgeorssWhere}->{$OgmlPoint}->{$OgmlPos}->{$Ot}, 0, 10);\n\t\t\t\t\t$dataImg[$i]['longitude']\t= substr($value->{$OgeorssWhere}->{$OgmlPoint}->{$OgmlPos}->{$Ot}, 11, 10);\n\t\t\t\t\t$dataImg[$i]['zoom']\t\t= 10;\n\t\t\t\t\t//$data['geotitle']\t= $data['title'];\n\t\t\t\t}*/\n\t\t\t\t\n\t\t\t\tif (isset($value->{$OgeorssWhere}->{$OgmlPoint}->{$OgmlPos}->{$Ot})) {\n\t\t\t\t\t//$dataImg[$i]['latitude'] = substr($value->{$OgeorssWhere}->{$OgmlPoint}->{$OgmlPos}->{$Ot}, 0, 10);\n\t\t\t\t\t//$dataImg[$i]['longitude'] = substr($value->{$OgeorssWhere}->{$OgmlPoint}->{$OgmlPos}->{$Ot}, 11, 10);\n\t\t\t\t\t$geoArray = explode (' ', $value->{$OgeorssWhere}->{$OgmlPoint}->{$OgmlPos}->{$Ot});\n\t\t\t\t\tif (isset($geoArray[0])) {\n\t\t\t\t\t\t$dataImg[$i]['latitude'] = $geoArray[0];\n\t\t\t\t\t}\n\t\t\t\t\tif (isset($geoArray[1])) {\n\t\t\t\t\t\t$dataImg[$i]['longitude'] = $geoArray[1];\n\t\t\t\t\t}\n\t\t\t\t\t$dataImg[$i]['zoom'] = 10;\n\t\t\t\t\t//$data['geotitle'] = $data['title'];\n\t\t\t\t} \n\t\t\t\t\n\t\t\t\t\n\t\t\t\t// Large\n\t\t\t\t$dataImg[$i]['extw'][0]\t\t\t\t= $value->{$OmediaGroup}->{$OmediaContent}[0]->width;\n\t\t\t\t$dataImg[$i]['exth'][0]\t\t\t\t= $value->{$OmediaGroup}->{$OmediaContent}[0]->height;\n\t\t\t\t\n\t\t\t\tif ($mediumT == 1) {\n\t\t\t\t\t// Medium\n\t\t\t\t\t$dataImg[$i]['extw'][1]\t\t\t\t= $value->{$OmediaGroup}->{$OmediaThumbnail}[1]->width;\n\t\t\t\t\t$dataImg[$i]['exth'][1]\t\t\t\t= $value->{$OmediaGroup}->{$OmediaThumbnail}[1]->height;\n\t\t\t\t}\n\t\t\t\t// Small\n\t\t\t\t$dataImg[$i]['extw'][2]\t\t\t\t= $value->{$OmediaGroup}->{$OmediaThumbnail}[0]->width;\n\t\t\t\t$dataImg[$i]['exth'][2]\t\t\t\t= $value->{$OmediaGroup}->{$OmediaThumbnail}[0]->height;\n\t\t\t\t\n\t\t\t\t// Complete the width and height here as all data large, small, medium are available\n\t\t\t\t// ksort is not needed here if $mediumT == 1 (medium is taken as thumbnail)\n\t\t\t\tif ($mediumT == 1) {\n\t\t\t\t\t$dataImg[$i]['extw']\t= implode( ',', $dataImg[$i]['extw']);\n\t\t\t\t\t$dataImg[$i]['exth']\t= implode( ',', $dataImg[$i]['exth']);\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t$dataImg[$i]['published']\t= 1;\n\t\t\t\t$dataImg[$i]['approved']\t= 1;\n\t\t\t\t$dataImg[$i]['catid']\t\t= $catid;\n\t\t\t\t$i++;\n\t\t\t}\n\t\t}\n\n\t\t// Only in case the medium image cannot be taken from Picasa thumbnails\n\t\t// MEDIUM\n\t\tif ($mediumT == 0) {\n\t\t\t$albumAddressM\t= 'http://picasaweb.google.com/data/feed/api/user/'.htmlentities($user).'/albumid/'.$albumId.'?alt=json&kind=photo'.$size['m'].$pagination;\n\t\t\t$dataAlbumM \t\t= PhocaGalleryPicasa::loadDataByAddress($albumAddressM, 'album', $errorMsg);\n\t\t\tif($dataAlbumM == '') {\n\t\t\t\t$errorMsg = JText::_('PHOCAGALLERY_PICASA_NOT_LOADED_IMAGE');\n\t\t\t\treturn false;\n\t\t\t}\n\t\t\t$dataAlbumM \t= json_decode($dataAlbumM);\n\t\t\tif (isset($dataAlbumM->feed->entry) && count($dataAlbumM->feed->entry) > 0) {\n\t\t\t\t$i = 0;\n\t\t\t\tforeach ($dataAlbumM->feed->entry as $key => $value) {\n\n\t\t\t\t\t\n\t\t\t\t\t$dataImg[$i]['extm']\t\t\t\t= $value->content->src;\n\t\t\t\t\t// Medium\n\t\t\t\t\t$dataImg[$i]['extw'][1]\t\t\t\t= $value->{$OmediaGroup}->{$OmediaContent}[0]->width;\n\t\t\t\t\t$dataImg[$i]['exth'][1]\t\t\t\t= $value->{$OmediaGroup}->{$OmediaContent}[0]->height;\n\t\t\t\t\t\n\t\t\t\t\t// Complete the width and height here as NOT all data large, small, medium are available\n\t\t\t\t\t// ksort is needed here if $mediumT == 0 (medium is NOT taken as thumbnail)\n\t\t\t\t\tksort($dataImg[$i]['extw']);\n\t\t\t\t\tksort($dataImg[$i]['exth']);\n\t\t\t\t\t$dataImg[$i]['extw']\t= implode( ',', $dataImg[$i]['extw']);\n\t\t\t\t\t$dataImg[$i]['exth']\t= implode( ',', $dataImg[$i]['exth']);\n\t\t\t\t\t\n\t\t\t\t\t$i++;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\n\t\tif(count($dataImg) > 0) {\n\t\t\n\t\t\tif($this->storeimage($dataImg, $catid)) {\n\t\t\t\treturn true;\n\t\t\t} else {\n\t\t\t\t$errorMsg = JText::_('PHOCAGALLERY_PICASA_IMAGE_SAVE_ERROR');\n\t\t\t\treturn false;\n\t\t\t}\n\t\t} else {\n\t\t\treturn false;\n\t\t\t$errorMsg = JText::_('PHOCAGALLERY_PICASA_NOT_LOADED_IMAGE');\n\t\t}\n\t}", "protected function _LoadImageLibrary()\n {\n // need to pass the parameters (modulespotname) back to the view\n $oListTable = new TCMSListManagerMediaSelector();\n /** @var $oListTable TCMSListManagerMediaSelector */\n if ($this->global->UserDataExists('sRestriction')) {\n $oListTable->sRestriction = $this->global->GetUserData('sRestriction');\n }\n\n // the image list must show only items that match the default value for the current position...\n // so, load the field def, get the image id @ the position, and use it to lookup the correct image size\n\n $imagefieldname = $this->global->GetUserData('imagefieldname');\n $tableId = $this->global->GetUserData('tableid');\n $position = $this->global->GetUserData('position');\n $id = $this->global->GetUserData('id');\n if (!empty($tableId)) {\n $this->_LoadData($tableId, $id, $imagefieldname);\n }\n\n $defaults = explode(',', $this->oFieldDefinition->sqlData['field_default_value']);\n $oImage = new TCMSImage();\n /** @var $oImage TCMSImage */\n $oImage->Load($defaults[$position]);\n\n $oListTable->Init($oImage);\n $list = $oListTable->GetList();\n $this->data['sTable'] = $list;\n\n return $list;\n }", "function get_url_image_siswa($img = '', $size = 'medium', $jk = 'Laki-laki') {\n if (is_null($img) OR empty($img)) {\n if ($jk == 'Laki-laki') {\n $img = 'default_siswa.png';\n } else {\n $img = 'default_siswi.png';\n }\n return get_url_image($img);\n } else {\n return get_url_image($img, $size);\n }\n}", "function getImageURL( $img_id, $image_list){ \n return $image_list[$img_id][\"image\"];\n}", "function _get_media_thumb_igitem($item)\n{\n $media_thumb = null;\n\n $media_type = empty($item->getMediaType()) ? null : $item->getMediaType();\n\n if ($media_type == 1 || $media_type == 2) {\n // Photo (1) OR Video (2)\n $media_thumb = $item->getImageVersions2()->getCandidates()[0]->getUrl();\n } else if ($media_type == 8) {\n // ALbum\n $media_thumb = $item->getCarouselMedia()[0]->getImageVersions2()->getCandidates()[0]->getUrl();\n } \n\n return $media_thumb;\n}", "private static function _get_mapping_by_sku_and_salsify_id($sku, $id) {\n $mappings = self::_get_mappings_collection_for_sku($sku);\n $mappings = $mappings->addFieldToFilter('salsify_id', array('eq' => $id));\n return self::_get_mapping_from_mappings($mappings);\n }", "protected function _retrieve()\n {\n // $this->_critical('Method not support');\n $imageData = array();\n $imageId = (int)$this->getRequest()->getParam('image');\n $galleryData = $this->_getProduct()->getData(self::GALLERY_ATTRIBUTE_CODE);\n\n if (!isset($galleryData['images']) || !is_array($galleryData['images'])) {\n $this->_critical(self::RESOURCE_NOT_FOUND);\n }\n foreach ($galleryData['images'] as $image) {\n if ($image['value_id'] == $imageId && !$image['disabled']) {\n $imageData = $this->_formatImageData($image);\n break;\n }\n }\n if (empty($imageData)) {\n $this->_critical(self::RESOURCE_NOT_FOUND);\n }\n return $imageData;\n }", "private function get_image_for_album( $album_id ) {\n global $wpdb;\n $preview_image = '';\n $gallery_row = $wpdb->get_row($wpdb->prepare(\"SELECT t1.preview_image,t1.random_preview_image FROM \" . $wpdb->prefix . \"bwg_gallery as t1 INNER JOIN \" . $wpdb->prefix . \"bwg_album_gallery as t2 on t1.id=t2.alb_gal_id WHERE t2.is_album=0 AND t2.album_id='%d' AND (t1.preview_image<>'' OR t1.random_preview_image<>'') ORDER BY t2.`order`\", $album_id));\n if ( $gallery_row ) {\n $preview_image = (($gallery_row->preview_image) ? $gallery_row->preview_image : $gallery_row->random_preview_image);\n }\n if ( !$preview_image ) {\n $album_row = $wpdb->get_row($wpdb->prepare(\"SELECT t1.preview_image,t1.random_preview_image FROM \" . $wpdb->prefix . \"bwg_album as t1 INNER JOIN \" . $wpdb->prefix . \"bwg_album_gallery as t2 on t1.id=t2.alb_gal_id WHERE t2.is_album=1 AND t2.album_id='%d' AND (t1.preview_image<>'' OR t1.random_preview_image<>'') ORDER BY t2.`order`\", $album_id));\n if ( $album_row ) {\n $preview_image = (($album_row->preview_image) ? $album_row->preview_image : $album_row->random_preview_image);\n }\n }\n\n return $preview_image;\n }", "public function correspondingImageAction(){\r\n\t\t$album_id = $this->_getParam('album_id', false);\r\n\t\t$this->view->paginator = $paginator = Engine_Api::_()->getDbtable('photos', 'sesalbum')->getPhotoSelect(array('album_id'=>$album_id,'limit_data'=>100));\r\n\t}", "abstract protected function media_sources();", "abstract function getimage($thumbnail);" ]
[ "0.66231143", "0.58666104", "0.583483", "0.57911944", "0.5712819", "0.5689636", "0.5679059", "0.5652388", "0.56440234", "0.5620643", "0.5612296", "0.5609447", "0.5586389", "0.558211", "0.5571149", "0.5570956", "0.5565989", "0.5555647", "0.5494812", "0.54925036", "0.5479035", "0.5429067", "0.54206544", "0.54162043", "0.5398049", "0.5385482", "0.5384493", "0.5346528", "0.5340977", "0.5327666" ]
0.6300508
1
display all pokemon in array
public function displayEntries() { foreach($this->pokemonInfo as $pokeInfo) { echo ($pokeInfo['pokeName']. "<br />"); echo ($pokeInfo['pokeURL']. "<br />"); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function getAllPokemon() {\n return Pokemon::all();\n }", "function displayPokemon(array $pokemons): string\n{\n $result = '';\n foreach ($pokemons as $pokemon) {\n if (\n array_key_exists('img_source', $pokemon) &&\n array_key_exists('pokedex_no', $pokemon) &&\n array_key_exists('name', $pokemon) &&\n array_key_exists('type', $pokemon)\n ) {\n $result .= '<tr class=\"rowBox\">';\n $result .= '<td><img class=\"pictureOfPokemon\" src=' . $pokemon['img_source'] . ' alt=\"Picture of \"' . $pokemon['name'] . '</td>';\n $result .= '<td>' . $pokemon['pokedex_no'] . '</td>';\n $result .= '<td>' . $pokemon['name'] . '</td>';\n $result .= '<td>' . $pokemon['type'] . '</td>';\n $result .= '</tr>';\n }\n }\n return $result;\n}", "public function index() {\n\t\treturn $this->pokemon->get();\n\t}", "public function getAll()\n {\n /*$queryBuilder = $this->db->createQueryBuilder();\n $queryBuilder\n ->select('d.*')\n ->from('pokemons', 'd');\n $statement = $queryBuilder->execute();\n $pokemonData = $statement->fetchAll();\n foreach ($pokemonData as $pokemonData) {\n $pokemonEntityList[$pokemonData['id']] = new pokemon($pokemonData['id'], $pokemonData['lib'], $pokemonData['marque'], $pokemonData['os'], $this->userRepository->getById($pokemonData['userid']));\n }\n return $pokemonEntityList;*/\n /**\n * Returns an pokemons object.\n *\n * @param $id\n * The id of the pokemon to return.\n *\n * @return array A collection of pokemons, keyed by pokemon id.\n */\n }", "public function show(Pokemon $pokemon)\n {\n //\n }", "public function show( Pokemon $pokemon ) {\n\t\treturn $pokemon;\n\t}", "public function getPokemon()\n {\n return Pokemon::get(['dex_id', 'name', 'tier', 'min_cp', 'max_cp', 'boosted_min_cp', 'boosted_max_cp']);\n }", "public function getPokemonData()\n {\n return $this->pokemon_data;\n }", "public function getPokemonData()\n {\n return $this->pokemon_data;\n }", "function imprimeArray($arrayPessoa){\n echo 'Lista atualizada:<br><br>';\n\n for($i=0; $i<count($arrayPessoa); $i++){\n $arrayPessoa[$i]->printPessoa();\n echo '<br>'; \n }\n echo '-------------------------------------------------<br>';\n }", "public function index()\n {\n $pokemons = Http::get('https://app.pokemon-api.xyz/pokemon/all')->collect();\n return view('pages.pokemon.index', compact('pokemons'));\n }", "function pokemon_defense($arrayname, $limit_number){\n foreach($arrayname as $arr){\n if ($arr[\"defense\"]>=$limit_number){\n echo(arr[\"species\"]);\n }\n }\n }", "public function testBasicExample()\n {\n $pokedex = json_decode(file_get_contents(resource_path('/lang/en/pokedex.json')), true);\n // regex = :(-?\\d+(\\.\\d+)?),\n\n $new_list = [];\n foreach ($pokedex['pokemon'] as $key => $value) {\n $new_list[$value['id']] = $value;\n break;\n }\n\n var_dump($new_list) ;\n }", "function kampfsystem($his_pokemon_id,$his_level) {\n\t$your_pokemon = mysql_fetch_array(mysql_query(\"select * from pokemons where userid='$_SESSION[user_id]' and sort='1'\"));\n\t$abfrage2 = mysql_query(\"select * from pokedex where id='$your_pokemon[dexid]'\") or die(mysql_error());\n\twhile($ausgabe=mysql_fetch_array($abfrage2)){\n\t\t$your_pokemon[\"name\"] = $ausgabe[\"name\"];\n\t\t$your_pokemon[\"typ\"] = $ausgabe[\"typ\"];\n\t\t$your_pokemon[\"intelligence_plus\"] = $ausgabe[\"intelligence\"];\n\t\t$your_pokemon[\"strength_plus\"] = $ausgabe[\"strength\"];\n\t\t$your_pokemon[\"beauty_plus\"] = $ausgabe[\"beauty\"];\n\t\t$your_pokemon[\"endurance_plus\"] = $ausgabe[\"endurance\"];\n\t\t$your_pokemon[\"evolution\"] = $ausgabe[\"evolution\"];\n\t}\n\t\n\t/******************Seine Daten werden gesammelt********************/\n\t$his_pokemon = array();\n\t$his_pokemon[\"id\"] = $his_pokemon_id;\n\t$his_pokemon[\"level\"] = $his_level;\n\t\t\t\n\t// Seine Daten werden aus der Datenbank geholt\n\t$abfrage = mysql_query(\"select * from pokedex where id='$his_pokemon[id]'\") or die(mysql_error());\n\twhile($ausgabe=mysql_fetch_array($abfrage)){\n\t\t$his_pokemon[\"dexid\"] = $ausgabe[\"id\"];\n\t\t$his_pokemon[\"name\"] = $ausgabe[\"name\"];\n\t\t$his_pokemon[\"typ\"] = $ausgabe[\"typ\"];\n\t\t$his_pokemon[\"intelligence_plus\"] = $ausgabe[\"intelligence\"];\n\t\t$his_pokemon[\"strength_plus\"] = $ausgabe[\"strength\"];\n\t\t$his_pokemon[\"beauty_plus\"] = $ausgabe[\"beauty\"];\n\t\t$his_pokemon[\"endurance_plus\"] = $ausgabe[\"endurance\"];\n\t}\n\t\t\t\n\t// Das Pokemon wird gesteigert, so wie einer Reifekammer Uahahahahah.\n\t$his_pokemon[\"strength\"] = $his_pokemon[\"strength_plus\"] * $his_pokemon[\"level\"];\n\t$his_pokemon[\"intelligence\"] = $his_pokemon[\"intelligence_plus\"] * $his_pokemon[\"level\"];\n\t$his_pokemon[\"beauty\"] = $his_pokemon[\"beauty_plus\"] * $his_pokemon[\"level\"];\n\t$his_pokemon[\"endurance\"] = $his_pokemon[\"endurance_plus\"] * $his_pokemon[\"level\"];\n\t\t\t\n\t// Dein Zusatz wird gefunden\n\t$abfrage = mysql_query(\"select * from typs where id='$your_pokemon[typ]'\") or die(mysql_error());\n\twhile($ausgabe=mysql_fetch_array($abfrage)){\n\t\t$your_pokemon[\"typ_plus\"] = $ausgabe[$his_pokemon[\"typ\"]+1];\n\t}\n\t\t\t\n\t// sein Zusatz wird gefunden\n\t$abfrage = mysql_query(\"select * from typs where id='$his_pokemon[typ]'\") or die(mysql_error());\n\twhile($ausgabe=mysql_fetch_array($abfrage)){\n\t\t$his_pokemon[\"typ_plus\"] = $ausgabe[$your_pokemon[\"typ\"]+1];\n\t}\n\t\t\t\n\t/******************Der Kampf und die Auswertung********************/\n\t// Deine Punkte\n\techo \"<p>\" . $your_pokemon[\"level\"] . \" mal \" . $your_pokemon[\"strength\"] . \" mal \" . $your_pokemon[\"love\"] . \" mal \" . $your_pokemon[\"typ_plus\"] . \" durch zwei</p>\";\n\t$your_points = ($your_pokemon[\"level\"] * $your_pokemon[\"strength\"] * ($your_pokemon[\"love\"] / 2) * $your_pokemon[\"typ_plus\"]);\n\t\n\t//Seine Punkte\n\t$his_points = ($his_pokemon[\"level\"] * $his_pokemon[\"strength\"] * ($his_pokemon[\"level\"] * 1.5) * $his_pokemon[\"typ_plus\"]);\n\t\n\techo \"<p>Das gegnerische \" . $his_pokemon[\"name\"] . \" hat \" . $his_points . \" Angriffspunkte.</p>\";\n\techo \"<p>Dein \" . $your_pokemon[\"name\"] . \" hat \" . $your_points . \" Angriffspunkte.</p>\";\n\t\n\t//Pokeball eingesetzt?\n\tif (isset($_GET[\"pokeball\"])){\n\t\techo \"<p>Ein Pokeball wird eingesetzt</p>\";\n\t\t$your = mysql_fetch_array(mysql_query(\"select energie from users where id='$_SESSION[user_id]'\"));\n\t\tif($_GET[\"pokeball\"] == 5 && $your[\"energie\"] >= 50){\n\t\t\t$your[\"energie\"] -= 50;\n\t\t\tmysql_query(\"update users set energie='$your[energie]' where id='$_SESSION[user_id]'\") or die(mysql_error());\n\t\t} else {\n\t\t\t$abfrage = mysql_query(\"select * from items where dexid='$_GET[pokeball]' AND user='$_SESSION[user_id]'\");\n\t\t\twhile($ausgabe = mysql_fetch_array($abfrage)){\n\t\t\t\tif($ausgabe[\"number\"] > 1){\n\t\t\t\t\t$item[\"number\"] = $ausgabe[\"number\"] - 1;\n\t\t\t\t\tmysql_query(\"update items set number='$item[number]' where id='$ausgabe[id]'\") or die(mysql_error());\n\t\t\t\t} else {\n\t\t\t\t\tmysql_query(\"DELETE FROM items WHERE id='$ausgabe[id]'\") or die(mysql_error());\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\t\n\t//Ist er st�rker als du?\n\tif ($your_points > $his_points){\n\t\techo \"<p>Dein \" . $your_pokemon[\"name\"] . \" hat das gegnerische \" . $his_pokemon[\"name\"] . \" besiegt.</p>\";\n\t\techo \"<p>Dein \" . $your_pokemon[\"name\"] . \" hat \" . (($his_pokemon[\"level\"] - $your_pokemon[\"level\"]) + 4) . \" Erfahrungspunkte von \" . $your_pokemon[\"exp\"] . \" erhalten</p>\";\n\t\t$your_pokemon[\"exp\"] += ($his_pokemon[\"level\"] - $your_pokemon[\"level\"]) + 4;\n\t\t$erf_exp = exp_raten($your_pokemon[\"intelligence\"], $your_pokemon[\"level\"]);\n\t\tif($your_pokemon[\"exp\"] > $erf_exp){\n\t\t\t//echo\"<p>Dein \" . $your_pokemon[name] . \" ist einen Level Aufgestiegen!</p>\";\n\t\t\t$your_pokemon[\"intelligence\"] += $your_pokemon[\"intelligence_plus\"];\n\t\t\t$your_pokemon[\"strength\"] += $your_pokemon[\"strength_plus\"];\n\t\t\t$your_pokemon[\"beauty\"] += $your_pokemon[\"beauty_plus\"];\n\t\t\t$your_pokemon[\"endurance\"] += $your_pokemon[\"endurance_plus\"];\n\t\t\t//Hat das Pokemon sich verwandelt? erste Verwandlung level 15 zweite level 30\n\t\t\tif ($your_pokemon[\"level\"] == 15 && $your_pokemon[\"evolution\"] != 000){\n\t\t\t\t$your_pokemon[\"dexid\"] = $your_pokemon[\"evolution\"];\n\t\t\t}\n\t\t\tif ($your_pokemon[\"level\"] == 30 && $your_pokemon[\"evolution\"] != 000){\n\t\t\t\t$your_pokemon[\"dexid\"] = $your_pokemon[\"evolution\"];\n\t\t\t}\n\t\t\tmysql_query(\"update pokemons set dexid='$your_pokemon[dexid]', intelligence='$your_pokemon[intelligence]', strength='$your_pokemon[strength]', beauty='$your_pokemon[beauty]', endurance='$your_pokemon[endurance]' where id='$your_pokemon[id]'\") or die(mysql_error());\n\t\t\t$your_pokemon[\"exp\"] -= $erf_exp;\n\t\t\t$your_pokemon[\"level\"] += 1;\n\t\t}\n\t\t$level_possible = floor((((pow($your_pokemon[\"level\"] + 3, 3) *3) / $your_pokemon[\"level\"]) / $your_pokemon[\"strength\"])*2);\n\t\techo \"<p>Level_possible ist \" . $level_possible . \"</p>\";\n\t\tif($your_pokemon[\"love\"] <= $level_possible){\n\t\t\t$your_pokemon[\"love\"] += (5 - ($your_pokemon[\"level\"] - $his_pokemon[\"level\"]));\n\t\t\techo \"<p>\" . $your_pokemon[\"name\"] . \"'s Liebe zu dir ist um \" . (5 - ($your_pokemon[\"level\"] - $his_pokemon[\"level\"])) . \" gestiegen</p>\";\n\t\t}\n\t\t\n\t\t//Pokemon Fangen\n\t\tif(isset($_GET[\"pokeball\"])){\n\t\t\techo \"<p>Der Pokeball hat die Id \" . $_GET[\"pokeball\"];\n\t\t\t$pokeball = mysql_fetch_array(mysql_query(\"select * from itemdex where id='$_GET[pokeball]'\")) or die(mysql_error());\n\t\t\techo \" und einen Fangwert von \" . $pokeball[\"zahl\"];\n\t\t\t$new_zahl = $pokeball[\"zahl\"] * 3;\n\t\t\techo \", also ein Maxlevel von \" . $new_zahl . \"</p>\";\n\t\t\t$rand_points = mt_rand($pokeball[\"zahl\"], $new_zahl);\n\t\t\techo \"<p>Der Ball erziehlt \" . $rand_points . \" Punkte und braucht aber \" . $his_pokemon[\"level\"] . \"</p>\";\n\t\t\tif ($rand_points >= $his_pokemon[\"level\"]){\n\t\t\t\tmysql_query(\"insert into pokemons\n\t\t\t\t(userid,dexid, level, intelligence, strength, beauty, endurance)\n\t\t\t\tVALUES ('$_SESSION[user_id]','$his_pokemon[dexid]','$his_pokemon[level]','$his_pokemon[intelligence]','$his_pokemon[strength]','$his_pokemon[beauty]','$his_pokemon[endurance]')\") or die(mysql_error());\n\t\t\t}\n\t\t}\n\t} else{\n\t\t//echo \"<P>Das gegnerische \" . $his_pokemon[name] . \" hat dein \" . $your_pokemon[name] . \" besiegt.</p>\";\n\t\t$your_pokemon[\"love\"] -= (($his_pokemon[\"level\"] - $your_pokemon[\"level\"]) + 1) * 4;\n\t}\n\tmysql_query(\"update pokemons set exp='$your_pokemon[exp]', level='$your_pokemon[level]',love='$your_pokemon[love]' where id='$your_pokemon[id]'\");\n}", "function featuredPoem()\n {\n $array = $this->model->getFeaturedPoem();\n $result = array();\n foreach($array as $name => $value) {\n $result[] = $value;\n }\n return $result; \n }", "function getPokemons(PDO $db): array\n{\n $query = $db->prepare('SELECT `id`, `pokedex_no`, `name`, `type`, `img_source` FROM `kanto_pokedex`;');\n\n $query->execute();\n\n return $query->fetchAll();\n}", "public function index()\n {\n $pokemon_data = array(\"name\" => \"Pokemon info\", \"description\" => \"\");\n $data = array('controller_name' => 'PokemonController', \"pokemon\" => $pokemon_data);\n\n return $this->render('pokemon/pokemon_index.html.twig', $data);\n }", "public function getPokemon(String $url) {\n \n }", "function tampil_pegawaiperpus(){\n\t\t\tglobal $con;\n\n\t\t\t$query=mysqli_query($con, \"select pb.*, pg.*\n\t\t\t\t\t\t\t\t\t\tfrom tb_pegawaiperpus pb, tb_pegawai pg\n\t\t\t\t\t\t\t\t\t\twhere pb.id_pegawai=pg.id_pegawai\");\n\t\t\twhile($row=mysqli_fetch_array($query))\n\t\t\t\t$data[] = $row;\n\n\t\t\t\treturn $data;\n\t\t}", "public static function showAll($array) {\n echo \"<pre>\";\n print_r($array);\n }", "public function getPokemonData($pokemon_name)\n {\n $url_pokemon_api = \"https://pokeapi.co/api/v2/pokemon/\".$pokemon_name;\n \n $client = HttpClient::create();\n $response = $client->request('GET', $url_pokemon_api);\n\n $status_code = $response->getStatusCode();\n $output = array(\"pokemon_information\" => array());\n\n if ($status_code === 200) {\n $content = $response->getContent();\n $content = $response->toArray();\n $output = array(\"pokemon_information\" => $content);\n }\n\n return $output;\n }", "public function index()\n\t{\n\t\t$pets = DB::table('pets')->get();\n\n\t\t$new_array = Array();\n\t\tforeach ($pets as $pt)\n\t\t{\n\t\t\t$imageID = DB::table('pettypes')->where('typeID', $pt->typeID)->first()->imageID;\n\t\t\t$happy = DB::table('images')->where('imageID', $imageID)->first()->happy;\n\t\t\t$pt = (object) array_merge((array)$pt, array( 'happy' => $happy ));\n\t\t\tarray_push($new_array, $pt);\n\t\t}\n \n \treturn Response::json($new_array);\n\t}", "public function get_petugas_by_unit($id) {\n\t\t$id = intval($id);\n\t\t$r = array();\n\t\t$run = $this->db->query(\"SELECT * FROM `petugas` WHERE `ID_UNIT` = '$id' ORDER BY `NAMA_PETUGAS`\");\n\t\tfor ($i = 0; $i < count($run); $i++) {\n\t\t\t$r[] = array(\n\t\t\t\t'id' => $run[$i]->ID_PETUGAS,\n\t\t\t\t'nama' => $run[$i]->NAMA_PETUGAS\n\t\t\t);\n\t\t}\n\t\treturn $r;\n\t}", "public function showAllPizza()\n {\n $statement = $this->pdo->prepare(\"SELECT p.id , p.name_pizza, p.price, p.image, p.isActived, c.name_category, p.description \n FROM `pizzas` AS p \n INNER JOIN `category` AS c ON c.id = p.category_id \");\n $statement->execute();\n return $statement->fetchAll();\n }", "function retrievePokemon ( $limit = 100, $offset = 200 ) {\n // Retrieve response string from API endpoint.\n $responseString = file_get_contents( \"https://pokeapi.co/api/v2/pokemon?limit={$limit}&offset={$offset}\" );\n //var_dump( $responseString ); // AWESOME! We're getting a result!\n // Convert response JSON string into a PHP array / object.\n if ( $responseString !== FALSE ) {\n // Convert the JSON string into a valid PHP object using json_decode().\n if ( ( $responseObj = json_decode( $responseString ) ) !== NULL ) {\n // var_dump( $responseObj );\n // Collect the array of results from the response object's \"results\" property.\n $results = $responseObj->results;\n // var_dump( $results );\n return $results;\n } else { // Could not convert string to object (json_decode().)\n echo 'Could not interpret API response.';\n }\n } else { // Unable to get a response at all from our API endpoint.\n echo 'Unable to connect / retrieve data from API.';\n }\n return FALSE;\n}", "function printArray($cards) {\n $tmp;\n echo '<div class = \"suit\">';\n for($tmp = 0; $tmp<13;$tmp++) {\n echo '<div class = \"card\" style=\"background-image: url('. $cards[$tmp][\"bgImage\"].')\";> </div>';\n }\n echo '</div>';\n \n \n echo '<div class = \"suit\">';\n for($tmp = 13; $tmp<26;$tmp++) {\n echo '<div class = \"card\" style=\"background-image: url('. $cards[$tmp][\"bgImage\"].')\";> </div>';\n }\n echo '</div>';\n \n echo '<div class = \"suit\">';\n for($tmp = 26; $tmp<39;$tmp++) {\n echo '<div class = \"card\" style=\"background-image: url('. $cards[$tmp][\"bgImage\"].')\";> </div>';\n }\n echo '</div>';\n \n echo '<div class = \"suit\">';\n for($tmp = 39; $tmp<52;$tmp++) {\n echo '<div class = \"card\" style=\"background-image: url('. $cards[$tmp][\"bgImage\"].')\";> </div>';\n }\n echo '</div>';\n }", "function randomPoem()\n {\n $array = $this->model->getRandomPoem();\n $result = array();\n foreach($array as $name => $value) {\n $result[] = $value;\n }\n return $result;\n }", "public function run()\n {\n $pizzas = [\n \t\t[\n \t\t\t'name' => 'Pepperoni',\n \t\t\t'description' => 'Delicious classic italian pizza with a little chops of peperoni and deligtfull tomato souce.',\n \t\t\t'img_url' => 'https://order.dominos.com.au/ManagedAssets/AU/product/P371/AU_P371_en_hero_3876.png?v471011272',\n \t\t\t'price' => 12.25,\n \t\t],\n \t\t[\n \t\t\t'name' => 'Reef, Steak & Bacon (5.76kg)',\n \t\t\t'description' => 'Juicy prawns, seasoned steak & crispy rasher bacon, topped with creamy hollandaise sauce & spring onions.',\n \t\t\t'img_url' => 'https://order.dominos.com.au/ManagedAssets/AU/product/P362/AU_P362_en_hero_3970.png?v-1691201190',\n \t\t\t'price' => 40.00,\n \t\t],\n \t\t[\n \t\t\t'name' => 'Supreme',\n \t\t\t'description' => 'Crispy rasher bacon, pepperoni & Italian sausage, topped with fresh mushrooms, capsicum, crumbled beef & juicy pineapple, finished with vibrant spring onions & oregano.',\n \t\t\t'img_url' => 'https://order.dominos.com.au/ManagedAssets/AU/product/P018/AU_P018_en_hero_3876.png?v1832410378',\n \t\t\t'price' => 22.40,\n \t\t],\n \t\t[\n \t\t\t'name' => 'Margherita',\n \t\t\t'description' => 'Diced tomatoes & stretchy mozzarella, topped with oregano.',\n \t\t\t'img_url' => 'https://order.dominos.com.au/ManagedAssets/AU/product/P301/AU_P301_en_hero_3876.png?v-1734249772',\n \t\t\t'price' => 10.50,\n \t\t],\n \t\t[\n \t\t\t'name' => 'Simply Cheese',\n \t\t\t'description' => 'Simply topped with lots of melted mozzarella goodness.',\n \t\t\t'img_url' => 'https://order.dominos.com.au/ManagedAssets/AU/product/P015/AU_P015_en_hero_3876.png?v-61415899',\n \t\t\t'price' => 10.50,\n \t\t],\n \t\t[\n \t\t\t'name' => 'Ham & Cheese',\n \t\t\t'description' => 'Strips of smoky leg ham & creamy mozzarella',\n \t\t\t'img_url' => 'https://order.dominos.com.au/ManagedAssets/AU/product/P099/AU_P099_en_hero_3876.png?v-465723440',\n \t\t\t'price' => 12.25,\n \t\t],\n \t\t[\n \t\t\t'name' => 'Fire Breather',\n \t\t\t'description' => \"Crumbled pork & fennel sausage, Domino's pepperoni, seasoned ground beef, fiery jalapenos, tomato & sliced red onion with a spicy hit of chilli flakes.\",\n \t\t\t'img_url' => 'https://order.dominos.com.au/ManagedAssets/AU/product/P067/AU_P067_en_hero_3876.png?v-1208460108',\n \t\t\t'price' => 25.00,\n \t\t],\n \t\t[\n \t\t\t'name' => 'Loaded Burger',\n \t\t\t'description' => 'Seasoned ground beef, American cheddar cheese, diced tomato & red onion, all finished with special burger sauce & spring onions.',\n \t\t\t'img_url' => 'https://order.dominos.com.au/ManagedAssets/AU/product/P380/AU_P380_en_hero_3876.png?v17997532',\n \t\t\t'price' => 28.32,\n \t\t],\n \t];\n\n \tforeach ($pizzas as $p) {\n \tProduct::create($p);\n \t}\n }", "public function run()\n {\n $players = [\n ['first_name' => 'MS' , 'last_name' => 'Dhoni' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'1','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Suresh' , 'last_name' => 'Raina' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'2','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Faf Du' , 'last_name' => 'Plessis' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'3','country'=>'','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'M' , 'last_name' => 'Vijay' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'4','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Ravindra' , 'last_name' => 'Jadeja' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'5','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Sam' , 'last_name' => 'Billings' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'6','country'=>'','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mitchell' , 'last_name' => 'Santner' , 'image_uri' => 'default-avatar.png','jersey_number'=>'7','country'=>'','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'David' , 'last_name' => 'Willey' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'8','country'=>'','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Dwayne' , 'last_name' => 'Bravo' , 'image_uri' => 'default-avatar.png','jersey_number'=>'9','country'=>'','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Shane' , 'last_name' => 'Watson' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'10','country'=>'','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Lungi' , 'last_name' => 'Ngidi' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'11','country'=>'','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n \n ['first_name' => 'Shreyas' , 'last_name' => 'Iyer' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'12','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Rishabh' , 'last_name' => 'Pant' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'13','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Prithvi' , 'last_name' => 'Shaw' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'14','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Amit' , 'last_name' => 'Mishra' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'15','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Rahul' , 'last_name' => 'Tewatiya' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'16','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Colin' , 'last_name' => 'Munro' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'17','country'=>'','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Shikhar' , 'last_name' => 'Dhawan' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'18','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Chris' , 'last_name' => 'Gayle' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'19','country'=>'','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Andrew' , 'last_name' => 'Tye' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'20','country'=>'','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'David' , 'last_name' => 'Miller' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'21','country'=>'','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Ravichandran' , 'last_name' => 'Ashwin' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'22','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n \n ['first_name' => 'Mandeep' , 'last_name' => 'Singh' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'23','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Karun' , 'last_name' => 'Nayer' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'24','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Harbhajan' , 'last_name' => 'Singh' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'25','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Deepak' , 'last_name' => 'Chahar' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'26','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Shardual' , 'last_name' => 'Thakur' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'27','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Monu' , 'last_name' => 'Kumar' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'28','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Hanuman' , 'last_name' => 'Bihari' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'29','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Colin' , 'last_name' => 'Ingram' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'30','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Aveshy' , 'last_name' => 'Khan' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'31','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Harshal' , 'last_name' => 'Patel' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'32','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Keemo' , 'last_name' => 'Paul' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'33','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n \n \n ['first_name' => 'Manjot' , 'last_name' => 'Kalra' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'34','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Ankush' , 'last_name' => '' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'35','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Nathu' , 'last_name' => 'Singh' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'36','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Bandaru' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'37','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Chris' , 'last_name' => 'Moris' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'38','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Trent' , 'last_name' => 'Bolt' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'39','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Sam' , 'last_name' => 'Curran' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'40','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mohammed' , 'last_name' => 'Sami' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'41','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Nicolas' , 'last_name' => 'Pooran' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'42','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Dinesh' , 'last_name' => 'Karthik' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'43','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Robin' , 'last_name' => 'Uthappa' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'44','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n \n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'45','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'46','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'47','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'48','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'49','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'50','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'51','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'52','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'53','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'54','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'55','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n \n \n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'56','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'57','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'58','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'59','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'60','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'61','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'62','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'63','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'64','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'65','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'66','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n \n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'67','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'68','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'69','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'70','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'71','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'72','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'73','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'74','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'75','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'76','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'77','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n \n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'78','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'79','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'80','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'81','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'82','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'83','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'84','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'85','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'86','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'87','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ['first_name' => 'Mayank' , 'last_name' => 'Agarwal' , 'image_uri' => 'default-avatar.png' ,'jersey_number'=>'88','country'=>'India','matches'=>100,'runs'=>12000,'highest_scores'=>120,'fifties'=>30,'hundreds'=>10],\n ];\n \n DB::statement('SET FOREIGN_KEY_CHECKS = 0'); \n DB::table('players')->truncate();\n DB::table('players')->insert($players);\n DB::statement('SET FOREIGN_KEY_CHECKS = 1'); \n }", "public function index()\n {\n return Petugas::all();\n }" ]
[ "0.7025985", "0.68884885", "0.6736679", "0.64962083", "0.62552947", "0.6164121", "0.605792", "0.586167", "0.586167", "0.57704324", "0.57446265", "0.5725087", "0.571985", "0.5708821", "0.5689956", "0.56563497", "0.55661625", "0.5493849", "0.5474781", "0.5464859", "0.5447705", "0.54398954", "0.542722", "0.53982556", "0.5350909", "0.5338999", "0.53159255", "0.52988887", "0.52926916", "0.5278865" ]
0.6988269
1
this will return the ID of the pokemon given the pokemon's name allowing us to use the ID returns pokemon's ID given name
public function findPokeID($pokeName) { foreach($this->pokemonInfo as $pokeInfo) { if($pokeInfo['pokeName'] == $pokeName) { // get url contents GET ID from url $pokeURLCont = file_get_contents($pokeInfo['pokeURL']); $pokeURL = json_decode($pokeURLCont, true); return $pokeURL['id']; break; } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function get_pokemon_id_by_name($pokemon_name)\n{\n // Init id and write name to search to log.\n $pokemon_id = 0;\n $pokemon_form = 'normal';\n debug_log($pokemon_name,'P:');\n\n // Explode pokemon name in case we have a form too.\n $delimiter = '';\n if(strpos($pokemon_name, ' ') !== false) {\n $delimiter = ' ';\n } else if (strpos($pokemon_name, '-') !== false) {\n $delimiter = '-';\n } else if (strpos($pokemon_name, ',') !== false) {\n $delimiter = ',';\n }\n \n // Explode if delimiter was found.\n $poke_name = $pokemon_name;\n if($delimiter != '') {\n $pokemon_name_form = explode($delimiter,$pokemon_name,2);\n $poke_name = trim($pokemon_name_form[0]);\n $poke_name = strtolower($poke_name);\n $poke_form = trim($pokemon_name_form[1]);\n $poke_form = strtolower($poke_form);\n }\n\n // Set language\n $language = USERLANGUAGE;\n\n // Make sure file exists, otherwise use English language as fallback.\n if(!is_file(TRANSLATION_PATH . '/pokemon_' . strtolower($language) . '.json')) {\n $language = 'EN';\n }\n\n // Get translation file\n $str = file_get_contents(TRANSLATION_PATH . '/pokemon_' . strtolower($language) . '.json');\n $json = json_decode($str, true);\n\n // Search pokemon name in json\n $key = array_search(ucfirst($poke_name), $json);\n if($key !== FALSE) {\n // Index starts at 0, so key + 1 for the correct id!\n $pokemon_id = $key + 1;\n }\n\n // Get form.\n // Works like this: Search form in language file via language, e.g. 'DE' and local form translation, e.g. 'Alola' for 'DE'.\n // Once we found the key name, e.g. 'pokemon_form_attack', get the form name 'attack' from it via str_replace'ing the prefix 'pokemon_form'.\n if($pokemon_id != 0 && isset($poke_form) && !empty($poke_form) && $poke_form != 'normal') {\n\n // Get forms translation file\n $str_form = file_get_contents(TRANSLATION_PATH . '/pokemon_forms.json');\n $json_form = json_decode($str_form, true);\n\n // Search pokemon form in json\n foreach($json_form as $key_form => $jform) {\n // Stop search if we found it.\n if ($jform[$language] === ucfirst($poke_form)) {\n $pokemon_form = str_replace('pokemon_form_','',$key_form);\n break;\n }\n }\n }\n\n // Write to log.\n debug_log($pokemon_id,'P:');\n debug_log($pokemon_form,'P:');\n\n // Set pokemon form.\n $pokemon_id = $pokemon_id . '-' . $pokemon_form;\n\n // Return pokemon_id\n return $pokemon_id;\n}", "public function getPokemonId()\n {\n return $this->pokemon_id;\n }", "public function getNameId()\r\n {\r\n $data = $this->select()\r\n ->from($this->_name, array('poi_id', 'name'));\r\n return $this->fetchAll($data);\r\n }", "private function getIdPariwisata($name){\n\t\t$this->db->where('nama', $name);\n\t\treturn $this->db->get(\"pariwisata\")->row();\n\t}", "function GetPersoNameId($connection,$id){\n $query= $connection->query(\"SELECT * FROM personality WHERE id ='$id' \") ;\n while ($row = $query->fetch()) {\n $name = $row['pname'] ;\n return(\"$name\");\n }\n}", "public function findPokeSpeciesURL($pokeName) {\n\t\t\tforeach($this->pokemonInfo as $pokeInfo) {\n\t\t\t\tif($pokeInfo['pokeName'] == $pokeName) {\n\t\t\t\t\t// get url contents GET ID from url\n\t\t\t\t\t$pokeURLCont = file_get_contents($pokeInfo['pokeURL']);\n\t\t\t\t\t$pokeURL = json_decode($pokeURLCont, true);\n\t\t\t\t\t\n\t\t\t\t\treturn $pokeURL;\t\t\t\t\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}", "function getDuckID($duck, $pdo)\n{\n\t//now get correct duck_id\n\t$sql = 'SELECT duck_id FROM ducks ';\n\t$sql .= \"WHERE duck_name = '{$duck}'; \";\n\n\tdebug_message('$sql = ' .$sql);\n\n\t$stmt = NULL;\n\ttry {\n\t$stmt = $pdo->query($sql); \n\tdebug_message('Query successful');\n\t} catch (\\PDOException $e) {\n\tdebug_message('ERROR: Query failed:');\n\tdebug_message('PSQL Error Message: ' . $e);\n\t}\n\t$duck_id = NULL;\n\tforeach($stmt as $row)\n\t{\n\t $duck_id = $row['duck_id'];\n\t}\n\n\treturn $duck_id;\n}", "function getPlayerName($id, $players){\n\n \n for($i = 0; $i < count($players); $i++){\n\n if($players[$i]['id'] == $id){\n return $players[$i]['name'];\n }\n }\n\n return 'Not Found';\n}", "function getHeroName($id){\n $query = \"SELECT\n h.local_name\n FROM\n \" . $this->table_name . \" h\n WHERE\n h.id = ?\n LIMIT\n 0,1\";\n \n // prepare query statement\n $stmt = $this->conn->prepare( $query );\n \n // bind id of product to be updated\n $stmt->bindParam(1, $id);\n \n \n // execute query\n $stmt->execute();\n \n // get retrieved row\n $row = $stmt->fetch(PDO::FETCH_ASSOC);\n \n // set values to object properties\n return $row['local_name'];\n \n \n }", "public function getIdName();", "function getNameId($name)\n{\n global $tabNames;\n \n $name = getKeyName( $name );\n \n if (isset($tabNames[$name]))\n return $tabNames[$name]['id'];\n else\n {\n if (isset($tabNames[\"STR_\".$name]))\n return $tabNames[\"STR_\".$name]['id'];\n else\n return \"???\";\n }\n}", "function getIdNombreParkings() {\n $sql = \"SELECT id,nombre FROM parkings\";\n\n //Preparo la consulta que ejecutaremos en el servidor\n $consulta_parkings = $this->conexionBBDD->prepare($sql,array());\n\n //Ejecuto la consulta\n $consulta_parkings->execute(array());\n\n //Devuelvo el resultado\n return $consulta_parkings->fetchAll(PDO::FETCH_OBJ);\n }", "public function getSummonerId($name) {\n $name = strtolower($name);\n $summoner = $this->getSummonerByName($name);\n if (self::DECODE_ENABLED) {\n return $summoner['id'];\n }\n else {\n $summoner = json_decode($summoner, true);\n return $summoner['id'];\n }\n }", "public function getIdByName($name){\n foreach ($this->reprocessingValues as $id => $ore) {\n if (strtolower($ore->name) == strtolower($name)) {\n return $id;\n }\n }\n return null;\n }", "public function propietario($id)\r\n\t{\r\n \r\n\t\treturn $id;\r\n }", "function actor_name_to_id($name){\n $name = str_replace(\"'\",\"''\",$name);\n $db = dbConnect(DB_CONNECTION);\n $name = strtolower($name);\n //echo \"name is $name\\n\";\n $q = \"select id from actor where lower(name) = '\".$name.\"'\";\n //echo \"$q\\n\";\n $r = dbQuery($db, $q);\n $t = dbNext($r);\n $id = $t[0];\n \n return $id;\n}", "function GetIdFromName($name)\n {\n $query = pdo_query(\"SELECT id FROM \".qid(\"user\").\" WHERE firstname='\".$name.\"' OR lastname='\".$name.\"'\");\n if(!$query)\n {\n add_last_sql_error(\"User:GetIdFromName\");\n return false;\n }\n\n if(pdo_num_rows($query)==0)\n {\n return false;\n }\n\n $query_array = pdo_fetch_array($query);\n return $query_array['id'];\n }", "public function setPokemonId($var)\n {\n GPBUtil::checkUint64($var);\n $this->pokemon_id = $var;\n }", "function getIdName()\n {\n }", "function warquest_db_planet_id($name) {\r\n\r\n\t$query = 'select planet_id from planet where name=\"'.$name.'\"';\r\n\t$result = warquest_db_query($query);\t\r\n\t$data = warquest_db_fetch_object($result);\r\n\t\r\n\t$value = 0;\r\n\tif ( isset($data->planet_id) ) {\r\n\t\t$value = $data->planet_id;\r\n\t}\n\t\r\n\treturn $value;\t\r\n}", "public function getPokemon()\n {\n return Pokemon::get(['dex_id', 'name', 'tier', 'min_cp', 'max_cp', 'boosted_min_cp', 'boosted_max_cp']);\n }", "function get_pokemon_info($pokemon_id_form)\n{\n // Split pokedex_id and form\n $dex_id_form = explode('-',$pokemon_id_form);\n $pokedex_id = $dex_id_form[0];\n $pokemon_form = $dex_id_form[1];\n\n /** Example:\n * Raid boss: Mewtwo (#ID)\n * Weather: Icons\n * CP: CP values (Boosted CP values)\n */\n $info = '';\n $info .= getTranslation('raid_boss') . ': <b>' . get_local_pokemon_name($pokemon_id_form) . ' (#' . $pokedex_id . ')</b>' . CR . CR;\n $poke_raid_level = get_raid_level($pokemon_id_form);\n $poke_cp = get_formatted_pokemon_cp($pokemon_id_form);\n $poke_weather = get_pokemon_weather($pokemon_id_form);\n $info .= getTranslation('pokedex_raid_level') . ': ' . getTranslation($poke_raid_level . 'stars') . CR;\n $info .= (empty($poke_cp)) ? (getTranslation('pokedex_cp') . CR) : $poke_cp . CR;\n $info .= getTranslation('pokedex_weather') . ': ' . get_weather_icons($poke_weather) . CR . CR;\n\n return $info;\n}", "public function findIdByName($name);", "static function getIdByName($name) {\n return self::getIdByField('name', $name);\n }", "function getName()\n {\n\n $sql = \"SELECT nama_pesilat FROM \" . $this->table_name . \" WHERE id_pesilat = ? limit 0,1\";\n\n $prep_state = $this->db_conn->prepare($sql);\n $prep_state->bindParam(1, $this->id); // und somit der Platzhalter der SQL Anweisung :id durch die angegebene Variable $id ersetzt.\n $prep_state->execute();\n\n $row = $prep_state->fetch(PDO::FETCH_ASSOC);\n\n $this->nama_pesilat = $row['nama_pesilat'];\n }", "function get_local_pokemon_name($pokemon_id_form, $override_language = false, $type = ''){\n\n // Split pokedex_id and form\n $dex_id_form = explode('-',$pokemon_id_form);\n $pokedex_id = $dex_id_form[0];\n $pokemon_form = $dex_id_form[1];\n\n debug_log('Pokemon_form: ' . $pokemon_form);\n\n // Get translation type\n if($override_language == true && $type != '' && ($type == 'raid' || $type == 'quest')) {\n $getTypeTranslation = 'get' . ucfirst($type) . 'Translation';\n } else {\n $getTypeTranslation = 'getTranslation';\n }\n // Init pokemon name and define fake pokedex ids used for raid eggs\n $pokemon_name = '';\n $eggs = $GLOBALS['eggs'];\n\n // Get eggs from normal translation.\n if(in_array($pokedex_id, $eggs)) {\n $pokemon_name = $getTypeTranslation('egg_' . substr($pokedex_id, -1));\n } else if ($pokemon_form != 'normal') { \n $pokemon_name = $getTypeTranslation('pokemon_id_' . $pokedex_id) . SP . $getTypeTranslation('pokemon_form_' . $pokemon_form);\n } else { \n $pokemon_name = $getTypeTranslation('pokemon_id_' . $pokedex_id);\n }\n\n // Fallback 1: Valid pokedex id or just a raid egg?\n if($pokedex_id === \"NULL\" || $pokedex_id == 0) {\n $pokemon_name = $getTypeTranslation('egg_0');\n\n // Fallback 2: Get original pokemon name from database\n } else if(empty($pokemon_name) && $type == 'raid') {\n $rs = my_query(\n \"\n SELECT pokemon_name\n FROM pokemon\n WHERE pokedex_id = {$pokedex_id}\n AND pokemon_form = '{$pokemon_form}'\n \"\n );\n\n while ($pokemon = $rs->fetch_assoc()) {\n $pokemon_name = $pokemon['pokemon_name'];\n }\n }\n\n return $pokemon_name;\n}", "function get_id_by_name($name)\n\t{\n\t\t$this->db->select('id');\n\t\t$this->db->from('castings_categories');\n\t\t$this->db->where('name',$name);\n\t\t$query = $this->db->get()->first_row('array');\n\t\treturn $query['id'];\n \t\n\t}", "function GetKPIId($connection,$id){\n $query= $connection->query(\"SELECT * FROM kpi WHERE kpi_id ='$id' \") ;\n while ($row = $query->fetch()) {\n $name = $row['kpi_name'] ;\n return(\"$name\") ;\n }\n}", "public function get_wisher_id_by_name($name)\n {\n $query = \"\";\n $stid = null;\n $row = array();\n\n $query = \"\n SELECT id ID\n FROM wishers\n WHERE name = :user_bv\n \";\n $stid = $this->con->prepare($query);\n $stid->bindParam(\":user_bv\", $name, PDO::PARAM_STR);\n $stid->execute();\n\n //Because name is a unique value I only expect one row\n $row = $stid->fetch(PDO::FETCH_ASSOC);\n\n if ($row) {\n return (int) $row['ID'];\n } else {\n return 0;\n }\n }", "public static function findIdByName($name){\n if (Catalog::where('name', '=', $name)->exists()) {\n return Catalog::where('name', '=', $name)->first()->id;\n }\n else return 0; // Not found\n }" ]
[ "0.7703807", "0.7364125", "0.6345437", "0.6232336", "0.62307084", "0.6126737", "0.6125936", "0.6084194", "0.60194916", "0.59303355", "0.58740103", "0.5865662", "0.5862426", "0.58622974", "0.5795386", "0.5771789", "0.5764401", "0.57618535", "0.5749036", "0.5739168", "0.5715573", "0.5701555", "0.5690864", "0.56775475", "0.5670235", "0.5665044", "0.5659526", "0.56425434", "0.55991274", "0.5550223" ]
0.7557647
1
given pokemon name will return the link the pokemon species link
public function findPokeSpeciesURL($pokeName) { foreach($this->pokemonInfo as $pokeInfo) { if($pokeInfo['pokeName'] == $pokeName) { // get url contents GET ID from url $pokeURLCont = file_get_contents($pokeInfo['pokeURL']); $pokeURL = json_decode($pokeURLCont, true); return $pokeURL; break; } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getPokemon(String $url) {\n \n }", "public function show( Pokemon $pokemon ) {\n\t\treturn $pokemon;\n\t}", "public function LinkName() {\n\treturn $this->ShopLink($this->NameString());\n }", "public function pokemonEndpoint($name)\n {\n $output = $this->getPokemonData($name);\n return $this->json($output);\n }", "function link($name, $url) {\n\t\t\t$url = $this->url_for($url);\n\t\t\techo \"<a href=\\\"\" . RELATIVE_ROOT . \"$url\\\">$name</a>\";\n\t\t}", "public function show(Pokemon $pokemon)\n {\n //\n }", "function do_html_URL($url, $name) {\n echo \"<br /><a href='$url' > $name </a><br />\\n\";\n}", "public function getPageURIByName($name){\n\t $page = $this->siteXML->xpath('//page');\n\t foreach($page as $item){\n\t if ($item->name == $name){\n\t return $item->link;\n\t }\n\t }\n\t}", "public static function createLink($name) {\n\t\t// It's a post form, so it will be send by javascript in a new window.\n\t\t$url = 'http://meta.genealogy.net/search/index';\n\n\t\t$params = [\n\t\t'lastname' => $name['surname'],\n\t\t'placename' => ''\n\t];\n\n\t\tfor ($i = 1; $i <= 19; $i++) {\n\t\t\t$params['partner' . $i] = 'on';\n\t\t}\n\n\t\treturn \"javascript: postresearchform('\" . $url . \"',\" . json_encode($params) . \")\";\n\t}", "static public function get_name_link() {\r\n\t\t\t$options = self::get_options();\r\n\t\t \treturn $options['name_link'];\r\n\t\t}", "function link_game() {\r\n $menu = \"<li><a href=\\\"/release/tank.html\\\">Chơi game</a></li>\";\r\n return $menu;\r\n }", "function do_html_URL($url, $name)\n{\n?>\n <br><a href=\"<?php echo $url;?>\"><?php echo $name;?></a><br>\n<?php\n}", "private static function getImgUrl($name) {\n\t\t//checks if names in db are different than they are in url\n\t\tif ($name === 'Nene Hilario') {\n\t\t\t$name = 'Nene';\n\t\t} else if ($name === 'John Lucas') {\n\t\t\t$name = 'John III Lucas';\n\t\t} else if ($name === 'Wes Johnson') {\n\t\t\t$name = 'Wesley Johnson';\n\t\t} else if ($name === 'Luc Richard Mbah a Moute') {\n\t\t\t$name = 'Luc Mbah a Moute';\n\t\t} else if ($name === 'J.J. Barea') {\n\t\t\t$name = 'Jose Barea';\n\t\t}\n\t\t//replace funky parts in names like single quotes, periods; explode name\n\t\t$properName = str_replace('.', '', $name);\n\t\t$properName = str_replace('\\'', '', $properName);\n\t\t$playerImgNames = explode(' ', strtolower($properName));\n\n\t\t//test size to see how many underscores and names to report\n\t\tif ($playerImgNames[3]) {\n\t\t\t$playerImgName = \"http://i.cdn.turner.com/nba/nba/.element/img/2.0/sect/statscube/players/large/\"\n\t\t\t\t\t. $playerImgNames[0] . \"_\" . $playerImgNames[1] . \"_\" . $playerImgNames[2] . \"_\"\n\t\t\t\t\t. $playerImgNames[3] . \".png\";\n\t\t} else if ($playerImgNames[2]) {\n\t\t\t$playerImgName = \"http://i.cdn.turner.com/nba/nba/.element/img/2.0/sect/statscube/players/large/\"\n\t\t\t\t\t. $playerImgNames[0] . \"_\" . $playerImgNames[1] . \"_\" . $playerImgNames[2] . \".png\";\n\t\t} else if ($playerImgNames[1]) {\n\t\t\t$playerImgName = \"http://i.cdn.turner.com/nba/nba/.element/img/2.0/sect/statscube/players/large/\"\n\t\t\t\t\t. $playerImgNames[0] . \"_\" . $playerImgNames[1] . \".png\";\n\t\t} else {\n\t\t\t$playerImgName = \"http://i.cdn.turner.com/nba/nba/.element/img/2.0/sect/statscube/players/large/\"\n\t\t\t\t\t. $playerImgNames[0] . \".png\";\n\t\t}\n\n\t\treturn $playerImgName;\n\t}", "function do_html_url($url, $name)\n\t{\n?>\n <br /><a href=\"<?php echo $url; ?>\"><?php echo $name; ?></a><br />\n<?php\n\t}", "public function getUrlAttribute()\n {\n return url('world/pets?name='.$this->name);\n }", "function do_html_URL($url, $name) {\r\n?>\r\n <a href=\"<?php echo htmlspecialchars($url); ?>\"><?php echo htmlspecialchars($name); ?></a><br />\r\n<?php\r\n}", "public function findPokeID($pokeName) {\n\t\t\tforeach($this->pokemonInfo as $pokeInfo) {\n\t\t\t\tif($pokeInfo['pokeName'] == $pokeName) {\n\t\t\t\t\t// get url contents GET ID from url\n\t\t\t\t\t$pokeURLCont = file_get_contents($pokeInfo['pokeURL']);\n\t\t\t\t\t$pokeURL = json_decode($pokeURLCont, true);\n\t\t\t\t\t\n\t\t\t\t\treturn $pokeURL['id'];\t\t\t\t\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}", "function printLinkEntry( $name ) {\n\t\t?>\n\t\t\t<tr bgcolor=\"<?php echo ac(); ?>\">\n\t\t\t\t<td align='center'>\n\t\t\t\t\t<a href='links_list.php?n=<?php echo $name; ?>'\n\t\t\t\t\t\tstyle='text-decoration:none'>\n\t\t\t\t\t\t<?php echo getGameName( $name ); ?>\n\t\t\t\t\t</a>\n\t\t\t\t</td>\n\t\t\t</tr>\n\t\t<?php\n\t}", "function do_html_URL($url, $name)\r\n\t{\r\n\t // output URL as link and br\r\n?>\r\n <br /><a href=\"<?php echo $url;?>\"><?php echo $name;?></a><br />\r\n<?php\r\n\t}", "function z_get_href_by_name($name)\n\t{\n\t\treturn $this->call(\"$this->prefix.GetHRefByName?name=\".urlencode($name));\n\t}", "function make_link($linkName) {\n \n \n\n echo '<div id=\"admin_menu_box\">\n <div class=\"admin_menu_item\">\n <a href=\"' . $linkname . '\">Volunteer Hours</a>\n <div>Enter volunteer hours worked</div>\n </div>';\n\n\n\n}", "function wpn_fakelink($var)\n {\n return strtolower(url_title(convert_accented_characters($var)));\n }", "function link_to_magnolia($url, $title=null, $imgtitle='Add to ma.gnolia')\n{\n $title = urlencode($title);\n $url = urlencode($url);\n\n return link_to(image_tag('magnolia.gif','title='.$imgtitle), 'http://ma.gnolia.com/bookmarklet/add?url='.$url.'&title='.$title);\n}", "function displayPokemon(array $pokemons): string\n{\n $result = '';\n foreach ($pokemons as $pokemon) {\n if (\n array_key_exists('img_source', $pokemon) &&\n array_key_exists('pokedex_no', $pokemon) &&\n array_key_exists('name', $pokemon) &&\n array_key_exists('type', $pokemon)\n ) {\n $result .= '<tr class=\"rowBox\">';\n $result .= '<td><img class=\"pictureOfPokemon\" src=' . $pokemon['img_source'] . ' alt=\"Picture of \"' . $pokemon['name'] . '</td>';\n $result .= '<td>' . $pokemon['pokedex_no'] . '</td>';\n $result .= '<td>' . $pokemon['name'] . '</td>';\n $result .= '<td>' . $pokemon['type'] . '</td>';\n $result .= '</tr>';\n }\n }\n return $result;\n}", "function makeGoLink($filename, $title=\"Go!\"){\n $html .= \n '<a href=\"'.$_SERVER['APPLICATION_PREPEND'].$filename.'\" '.\n 'title=\"'.$title.'\">'.\n '<img src=\"'.APP_IMAGES_DIR.'bullet_go_arrow.gif\" alt=\"Go!\" />'.\n '</a>';\n return $html;\n }", "function get_local_pokemon_name($pokemon_id_form, $override_language = false, $type = ''){\n\n // Split pokedex_id and form\n $dex_id_form = explode('-',$pokemon_id_form);\n $pokedex_id = $dex_id_form[0];\n $pokemon_form = $dex_id_form[1];\n\n debug_log('Pokemon_form: ' . $pokemon_form);\n\n // Get translation type\n if($override_language == true && $type != '' && ($type == 'raid' || $type == 'quest')) {\n $getTypeTranslation = 'get' . ucfirst($type) . 'Translation';\n } else {\n $getTypeTranslation = 'getTranslation';\n }\n // Init pokemon name and define fake pokedex ids used for raid eggs\n $pokemon_name = '';\n $eggs = $GLOBALS['eggs'];\n\n // Get eggs from normal translation.\n if(in_array($pokedex_id, $eggs)) {\n $pokemon_name = $getTypeTranslation('egg_' . substr($pokedex_id, -1));\n } else if ($pokemon_form != 'normal') { \n $pokemon_name = $getTypeTranslation('pokemon_id_' . $pokedex_id) . SP . $getTypeTranslation('pokemon_form_' . $pokemon_form);\n } else { \n $pokemon_name = $getTypeTranslation('pokemon_id_' . $pokedex_id);\n }\n\n // Fallback 1: Valid pokedex id or just a raid egg?\n if($pokedex_id === \"NULL\" || $pokedex_id == 0) {\n $pokemon_name = $getTypeTranslation('egg_0');\n\n // Fallback 2: Get original pokemon name from database\n } else if(empty($pokemon_name) && $type == 'raid') {\n $rs = my_query(\n \"\n SELECT pokemon_name\n FROM pokemon\n WHERE pokedex_id = {$pokedex_id}\n AND pokemon_form = '{$pokemon_form}'\n \"\n );\n\n while ($pokemon = $rs->fetch_assoc()) {\n $pokemon_name = $pokemon['pokemon_name'];\n }\n }\n\n return $pokemon_name;\n}", "function get_pokemon_id_by_name($pokemon_name)\n{\n // Init id and write name to search to log.\n $pokemon_id = 0;\n $pokemon_form = 'normal';\n debug_log($pokemon_name,'P:');\n\n // Explode pokemon name in case we have a form too.\n $delimiter = '';\n if(strpos($pokemon_name, ' ') !== false) {\n $delimiter = ' ';\n } else if (strpos($pokemon_name, '-') !== false) {\n $delimiter = '-';\n } else if (strpos($pokemon_name, ',') !== false) {\n $delimiter = ',';\n }\n \n // Explode if delimiter was found.\n $poke_name = $pokemon_name;\n if($delimiter != '') {\n $pokemon_name_form = explode($delimiter,$pokemon_name,2);\n $poke_name = trim($pokemon_name_form[0]);\n $poke_name = strtolower($poke_name);\n $poke_form = trim($pokemon_name_form[1]);\n $poke_form = strtolower($poke_form);\n }\n\n // Set language\n $language = USERLANGUAGE;\n\n // Make sure file exists, otherwise use English language as fallback.\n if(!is_file(TRANSLATION_PATH . '/pokemon_' . strtolower($language) . '.json')) {\n $language = 'EN';\n }\n\n // Get translation file\n $str = file_get_contents(TRANSLATION_PATH . '/pokemon_' . strtolower($language) . '.json');\n $json = json_decode($str, true);\n\n // Search pokemon name in json\n $key = array_search(ucfirst($poke_name), $json);\n if($key !== FALSE) {\n // Index starts at 0, so key + 1 for the correct id!\n $pokemon_id = $key + 1;\n }\n\n // Get form.\n // Works like this: Search form in language file via language, e.g. 'DE' and local form translation, e.g. 'Alola' for 'DE'.\n // Once we found the key name, e.g. 'pokemon_form_attack', get the form name 'attack' from it via str_replace'ing the prefix 'pokemon_form'.\n if($pokemon_id != 0 && isset($poke_form) && !empty($poke_form) && $poke_form != 'normal') {\n\n // Get forms translation file\n $str_form = file_get_contents(TRANSLATION_PATH . '/pokemon_forms.json');\n $json_form = json_decode($str_form, true);\n\n // Search pokemon form in json\n foreach($json_form as $key_form => $jform) {\n // Stop search if we found it.\n if ($jform[$language] === ucfirst($poke_form)) {\n $pokemon_form = str_replace('pokemon_form_','',$key_form);\n break;\n }\n }\n }\n\n // Write to log.\n debug_log($pokemon_id,'P:');\n debug_log($pokemon_form,'P:');\n\n // Set pokemon form.\n $pokemon_id = $pokemon_id . '-' . $pokemon_form;\n\n // Return pokemon_id\n return $pokemon_id;\n}", "function getNomUrl($withpicto=0, $option='', $notooltip=0, $maxlen=24, $morecss='')\n\t{\n\t\tglobal $langs, $conf, $db;\n global $dolibarr_main_authentication, $dolibarr_main_demo;\n global $menumanager;\n\n\n $result = '';\n $companylink = '';\n\n $label = '<u>' . $langs->trans(\"MyModule\") . '</u>';\n $label.= '<div width=\"100%\">';\n $label.= '<b>' . $langs->trans('Ref') . ':</b> ' . $this->ref;\n\n $link = '<a href=\"'.DOL_URL_ROOT.'/root/card.php?id='.$this->id.'\"';\n $link.= ($notooltip?'':' title=\"'.dol_escape_htmltag($label, 1).'\" class=\"classfortooltip'.($morecss?' '.$morecss:'').'\"');\n $link.= '>';\n\t\t$linkend='</a>';\n\n if ($withpicto)\n {\n $result.=($link.img_object(($notooltip?'':$label), 'label', ($notooltip?'':'class=\"classfortooltip\"')).$linkend);\n if ($withpicto != 2) $result.=' ';\n\t\t}\n\t\t$result.= $link . $this->ref . $linkend;\n\t\treturn $result;\n\t}", "function macs_print_person_link( $person_id ) {\r\n $name = get_the_title( $person_id );\r\n\t$url = esc_url( rwmb_meta( 'staffDirURL', array(), $person_id ) );\r\n\t$location = implode(', ', wp_get_post_terms( $person_id, \r\n\t\t\t\t\t\t\t\t\t\t\t\t'location', \r\n\t\t\t\t\t\t\t\t\t\t\t\tarray('fields' => 'names' ) \r\n\t\t\t\t\t\t\t\t\t\t\t\t) );\r\n\techo sprintf( '<a href=\"%s\">%s</a> (%s)', $url, $name, $location);\r\n\r\n}", "function tpl_pagelink($id,$name=NULL){\n print html_wikilink($id,$name);\n}" ]
[ "0.6102511", "0.6012067", "0.5917388", "0.5880729", "0.5812908", "0.57600844", "0.57199955", "0.57173634", "0.5679309", "0.5669746", "0.5650476", "0.56229913", "0.5619584", "0.55934423", "0.5562211", "0.5527941", "0.55171585", "0.5508368", "0.547296", "0.54345953", "0.542634", "0.54121596", "0.5388085", "0.5377429", "0.5367839", "0.53556323", "0.5342338", "0.5332512", "0.5327171", "0.5311452" ]
0.77899635
0
Mark Key As Used
public function markKeyAsUsed($key) { $update_data = array( 'status' => 0 ); $this->db->where('beta_key', (string) $key); $this->db->update('beta_keys', $update_data); return; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function set_use_key() {\n\t\t$this->use_key = true;\n\t}", "public function setKey(string $key): void;", "function deactivate_key($camp_id,$keyword){\r\n\t\t\t\tupdate_post_meta($camp_id, '_'.md5($keyword), time('now') + 60*60 );\r\n\t\t\t}", "function setKey($key) {\r\n $this->_key = $key;\r\n }", "public function setKey($key);", "public function setKey($key);", "static function setKey($value) {\n self::$key = $value;\n }", "public function set_key( $key ) {\r\n\t\t$this->key = $key;\r\n\t}", "private function set_use_key( $args ) {\n\t\tif ( isset( $args['use_key'] ) ) {\n\t\t\t$this->use_key = (bool) $args['use_key'];\n\t\t}\n\t}", "public function setKey($key)\r\n\t{\r\n\t\t$this->key = $key;\r\n\t}", "function set_key($key)\n\t{\n\t\t// 32 byte key though this is predictable, need a better method\n\t\t$key = md5($key);\n\t\t$length = strlen($key);\n\t\tif ($length > 0)\n\t\t{\n\t\t\t$this->key = $key;\n\t\t\t$this->key_length = $length;\n\t\t}\n\t}", "public function setKey($key) {\n\t\t$this->key = $key;\n\t}", "public function setKey($key) {\n $this->key = $key;\n }", "private function updateKey()\n {\n $this->key = strstr($this->selector, '.', true) ?: $this->selector;\n\n $this->updateSelector();\n\n $this->extractIndexFromKey();\n }", "public function setKey($key)\n {\n $this->_key = $key;\n }", "public function set_key() {\n\n\t\t// set spam key using home_url() and new nonce as salt\n\t\t$string = home_url() . wp_create_nonce( 'spam-killer' );\n\t\t$this->spam_key = md5( $string );\n\n\t}", "public function markReserved() {\n\t\t\t$this->is_reserved = 1;\n\t\t}", "public function setKey($key)\n {\n $this->key = $key;\n }", "public function setKey($key)\n {\n $this->key = $key;\n }", "public function setKey(string $key): void\n {\n $this->key = $key;\n }", "function set_key($data) {\n $this->clave = $data;\n }", "public function setKey( string $key ): void {\n\t\t\t$this->key = $key;\n\n\t\t}", "public function mark(string $key): int;", "public function markNotReserved() {\n\t\t\t$this->is_reserved = 0;\n\t\t}", "public function lock($key): void\n {\n }", "public function withKey($key);", "protected function markVoucherAsUsed()\n {\n $this->voucher->method = $this->method;\n $this->voucher->used_on = new Carbon();\n $this->voucher->used_by = $this->subscription->id;\n $this->voucher->saveOrFail();\n }", "private function setKey($key)\n {\n $this->key = (string)$key;\n }", "static public function setKey( $key )\n\t{\n\t\tself::set( null, $key, true );\n\t}", "public function setKeyUsage(?KeyUsages $value): void {\n $this->getBackingStore()->set('keyUsage', $value);\n }" ]
[ "0.73845166", "0.66026217", "0.6483443", "0.6413818", "0.63706607", "0.63706607", "0.6257613", "0.6239997", "0.6213352", "0.6201911", "0.6192292", "0.618622", "0.6141888", "0.61298484", "0.61213154", "0.6112752", "0.610971", "0.6044955", "0.6044955", "0.60401756", "0.5996898", "0.59878546", "0.59294695", "0.59231967", "0.5917536", "0.589669", "0.5885987", "0.58741874", "0.586146", "0.5848636" ]
0.7406096
0
/ Admin Methods Admin Get All Beta Keys
public function adminGetAllBetaKeys($count = 50) { $this->db->order_by('insert_ts', 'DESC'); $this->db->limit($count); $query = $this->db->get('beta_keys'); return $query->result(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getApiKeys();", "public function listUserKeys() {\n return AlgoliaUtils_request($this->curlHandle, $this->hostsArray, \"GET\", \"/1/keys\");\n }", "public function listUserKeys() {\n return AlgoliaUtils_request($this->curlHandle, $this->hostsArray, \"GET\", \"/1/indexes/\" . $this->urlIndexName . \"/keys\");\n }", "public function getAllKeys(): array;", "public function getApiKeys()\n\t{\n\t\treturn $this->apiKeys;\n\t}", "public function keys();", "public function keys();", "public function keys();", "public function keys();", "public function keys();", "public function keys();", "public function keys();", "public function keys();", "public function keys();", "public function keys();", "public function keys();", "public function keys();", "public function keys();", "public function keys();", "public function getEncryptedSettingKeys(): array;", "public function getAllYubikeys(){\n\t\t$qb = new QueryBuilder();\n\t\t$qb->select('*')\n\t\t\t->from(Tbl::get('TBL_KEYS', 'YubikeyUserAuthorization'));\n\t\t\n\t\t$this->query->exec($qb->getSQL());\n\t\t\n\t\t$yubikeys = array();\n\t\tif($this->query->countRecords()){\n\t\t\twhile(($row = $this->query->fetchRecord()) != false){\t\t\t\t\n\t\t\t\tarray_push($yubikeys, $this->getFilledYubikey($row));\n\t\t\t}\n\t\t}\n\t\treturn $yubikeys;\n\t}", "public function getKeys();", "public function getKeys();", "public function getKeys();", "public function testAllApiKeys()\n {\n TestUtil::setupCassette('users/allApiKeys.yml');\n\n $apiKeys = self::$client->user->allApiKeys();\n\n $this->assertContainsOnlyInstancesOf(ApiKey::class, $apiKeys['keys']);\n foreach ($apiKeys['children'] as $child) {\n $this->assertContainsOnlyInstancesOf(ApiKey::class, $child['keys']);\n }\n }", "public function getKeys(): array {\n return [\n 'client_key'=>$this->client_key,\n 'secret_key'=>$this->secret_key\n ];\n }", "public static function getAllKeys()\n {\n return array(BunchKeys::PREFIX, BunchKeys::FILENAME, BunchKeys::COUNTER);\n }", "public function getKeys(): array;", "public static function getAvailableKeysList()\n {\n return self::$availableNameList;\n }", "public function get_keys(){\n\t\treturn Array();\n\t}" ]
[ "0.7158595", "0.690452", "0.6813817", "0.6742954", "0.66701406", "0.629916", "0.629916", "0.629916", "0.629916", "0.629916", "0.629916", "0.629916", "0.629916", "0.629916", "0.629916", "0.629916", "0.629916", "0.629916", "0.629916", "0.6279949", "0.6265089", "0.62586015", "0.62586015", "0.62586015", "0.6173345", "0.6162962", "0.6134793", "0.613072", "0.61236465", "0.61123955" ]
0.7116889
1
Admin Create Beta Key From Post
public function adminCreateBetaKeyFromPost() { $insert_beta_key_data = array( 'name' => $this->input->post('name'), 'beta_key' => random_string('alnum', 16), 'email' => $this->input->post('email'), 'status' => 1 ); $insert = $this->db->insert('beta_keys', $insert_beta_key_data); // IF created, return row if ($insert): $this->db->where('id', $this->db->insert_id()); $query = $this->db->get('beta_keys'); return $query->row(); endif; return false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function regenerate_post()\n {\n\t\t$old_key = $this->post('key');\n\t\t$key_details = self::_get_key($old_key);\n\n\t\t// The key wasnt found\n\t\tif ( ! $key_details)\n\t\t{\n\t\t\t// NOOOOOOOOO!\n\t\t\t$this->response(array('status' => 0, 'error' => 'Invalid API Key.'), 400);\n\t\t}\n\n\t\t// Build a new key\n\t\t$new_key = self::_generate_key();\n\n\t\t// Insert the new key\n\t\tif (self::_insert_key($new_key, array('level' => $key_details->level, 'ignore_limits' => $key_details->ignore_limits)))\n\t\t{\n\t\t\t// Suspend old key\n\t\t\tself::_update_key($old_key, array('level' => 0));\n\n\t\t\t$this->response(array('status' => 1, 'key' => $new_key), 201); // 201 = Created\n\t\t}\n\n\t\telse\n\t\t{\n\t\t\t$this->response(array('status' => 0, 'error' => 'Could not save the key.'), 500); // 500 = Internal Server Error\n\t\t}\n }", "public function add_language_key_post () {\n\t\t$this->load->model(\"key_model\");\n\n\t\tif ( ! $this->get('file_id') ) { \n self::error($this->config->item(\"api_bad_request_code\"));\n return; \n }\n\n $File = new File();\n\n if ( ! $File->Load($this->get(\"file_id\")) ) {\n \tself::error($this->config->item(\"api_not_found_code\"));\n \treturn;\n }\n\n $project_id = $this->file_model->get_project_id($File->id);\n\n $modes = $this->user_roles_model->get_user_project_modes( $this->user->id, $project_id);\n\n if ( count(array_intersect($modes,array(\"manage\",\"edit\",\"create\",\"delete\"))) == 0 ) {\n \t\tself::error(403);\n \t\t}\n\n $this->load->library(\"key\");\n\n $Key = new Key();\n\n $data = $this->post();\n $data[\"file\"] = $File->id;\n\n if ( isset($data[\"approve_first\"]) ) {\n \t$approve_first = ($data[\"approve_first\"] == \"true\") ? true : false;\n \t} else {\n \t\t$approve_first = false;\n \t}\n\n \tunset($data[\"approve_first\"]);\n\n \t$data[\"tokens\"] = array_unique($data[\"tokens\"]);\n\n if ( ! $Key->Import($data) ) {\n \tself::error($this->config->item(\"api_bad_request_code\"));\n\t\t\treturn;\n }\n\n $Key->approve_first = $approve_first;\n\n \t\t$project_id = $this->key_model->get_project_id($this->get('id'));\n\n $modes = $this->user_roles_model->get_user_project_modes( $this->user->id, $token->project->id);\n\n if ( count(array_intersect($modes,array(\"manage\",\"edit\",\"create\",\"delete\"))) == 0 ) {\n \t\tself::error(403);\n \t\t}\n\n \tif ( ! $Key->Save() ) {\n \tself::error($this->config->item(\"api_error_while_saving_code\"));\n\t\t\treturn;\n }\n\n $this->response($Key->Export(),$this->config->item(\"api_created_code\"));\n\t}", "public function index_post()\n {\n $data = $this->input->request_headers();\n\n $dbkeys=$this->ProductCategoryModel->getSelectData(\"key\",\"keys\",null);\n foreach ($dbkeys as $key => $value) {\n $keyValue = $value->key;\n }\n\n if($keyValue == $data['admin'])\n {\n $input = $this->input->post();\n $this->db->insert('product',$input);\n \n $this->response(['Product created successfully.'], REST_Controller::HTTP_OK);\n }\n else\n {\n $this->response(\"Wrong Credentials\", REST_Controller::HTTP_OK);\n }\n }", "function add_new_ak() {\n\t\t\tglobal $wpdb;\n\t\t\t$tbl = $wpdb->prefix . $this->admin_options_name . '_access_keys';\n\t\t\t$name = $wpdb->escape( stripslashes( $_POST['wpjf3_mr_ak_name'] ) );\n\t\t\t$email = $wpdb->escape( stripslashes( $_POST['wpjf3_mr_ak_email'] ) );\n\t\t\t$access_key = $wpdb->escape( $this->alphastring(20) );\n\t\t\t$sql = \"insert into $tbl ( name, email, access_key, created_at ) values ( '$name', '$email', '$access_key', NOW() )\";\n\t\t\t$rs = $wpdb->query( $sql );\n\t\t\tif( $rs ){\n\t\t\t\t// email user\n\t\t\t\t$subject = 'Access Key Link for ' . get_bloginfo();\n\t\t\t\t$full_msg = 'The following link will provide you temporary access to ' . get_bloginfo() .':'.\"\\n\\n\";\n\t\t\t\t$full_msg .= get_bloginfo('url') . '?wpjf3_mr_temp_access_key=' . $access_key;\n\t\t\t\t$mail_sent = wp_mail( $email, $subject, $full_msg );\n\t\t\t\techo ( $mail_sent ) ? '<!-- SEND_SUCCESS -->' : '<!-- SEND_FAILURE -->';\n\t\t\t\t// send table data\n\t\t\t\t$this->print_access_keys();\n\t\t\t}else{\n\t\t\t\techo 'Unable to add Access Key because of a database error. Please reload the page.';\n\t\t\t}\n\t\t\tdie();\n\t\t}", "public function update_post()\n\t{\n\t\t$key = $this->post('key');\n\t\t$new_level = $this->post('level');\n\t\t$api_status = $this->post('api_status');\n\t\t$site_url = $this->post('site_url');\n\t\t$site_name = $this->post('site_name');\n\n\t\t// Does this key even exist?\n\t\tif ( ! self::_key_exists($key))\n\t\t{\n\t\t\t// NOOOOOOOOO!\n\t\t\t$this->response(array('error' => 'Invalid API Key.'), 400);\n\t\t}\n\n\t\t// Update the key level\n\t\tif (self::_update_key($key, array('key' => $key, 'level' => $new_level, 'api_status' => $api_status, 'site_url' => $site_url, 'site_name' => $site_name )))\n\t\t{\n\t\t\t$this->response(array('status' => 1, 'success' => 'API Key was updated.'), 200); // 200 = OK\n\t\t}\n\n\t\telse\n\t\t{\n\t\t\t$this->response(array('status' => 0, 'error' => 'Could not update the key level.'), 500); // 500 = Internal Server Error\n\t\t}\n\t}", "function createPost();", "public function level_post()\n {\n\t\t$key = $this->post('key');\n\t\t$new_level = $this->post('level');\n\n\t\t// Does this key even exist?\n\t\tif ( ! self::_key_exists($key))\n\t\t{\n\t\t\t// NOOOOOOOOO!\n\t\t\t$this->response(array('error' => 'Invalid API Key.'), 400);\n\t\t}\n\n\t\t// Update the key level\n\t\tif (self::_update_key($key, array('level' => $new_level)))\n\t\t{\n\t\t\t$this->response(array('status' => 1, 'success' => 'API Key was updated.'), 200); // 200 = OK\n\t\t}\n\n\t\telse\n\t\t{\n\t\t\t$this->response(array('status' => 0, 'error' => 'Could not update the key level.'), 500); // 500 = Internal Server Error\n\t\t}\n }", "function item_post()\n {\n $key = $this->get('id');\n $record = array_merge(array('id' => $key), $_POST);\n $this->supplies->add($record);\n $this->response(array('ok'), 200);\n }", "function eve_api_user_add_api_form_submit($form, &$form_state) {\n $account = $form_state['user'];\n $uid = (int) $account->uid;\n $key_id = (int) $form_state['values']['keyID'];\n $v_code = (string) $form_state['values']['vCode'];\n $form_state['redirect'] = 'user/' . $uid . '/eve_api';\n\n $character = eve_api_create_key($account, $key_id, $v_code);\n\n $queue = DrupalQueue::get('eve_api_cron_api_user_sync');\n $queue->createItem(array(\n 'uid' => $uid,\n 'runs' => 1,\n ));\n\n if ($character === FALSE && !isset($character['not_found'])) {\n drupal_set_message(t('There was an error with the API.'), 'error');\n }\n else {\n drupal_set_message(t('API Key successfully added!'));\n }\n}", "function jam_cms_generate_preview_key($post_id, $expiry_time = '+ 2 hours'){\n $preview_keys = get_option('jam-cms-preview-keys');\n\n if(!$preview_keys){\n $preview_keys = [];\n }\n\n $now = time();\n\n // Every time we run this function, it automatically cleans up expired preview keys first\n $cleaned_preview_keys = [];\n \n foreach($preview_keys as $value){\n if($value['expiry_date'] > $now){\n array_push($cleaned_preview_keys, $value);\n }\n }\n\n // Generate new preview key\n $new_key = [\n 'id' => wp_generate_uuid4(),\n 'post_id' => $post_id,\n 'expiry_date' => strtotime($expiry_time)\n ];\n\n array_push($cleaned_preview_keys, $new_key);\n\n update_option('jam-cms-preview-keys', $cleaned_preview_keys);\n\n return $new_key;\n}", "public function save_key() {\n\n\t\t\tif ( ! isset( $_REQUEST['nonce'] ) ) {\n\t\t\t\tdie();\n\t\t\t}\n\n\t\t\tif ( ! wp_verify_nonce( esc_attr( $_REQUEST['nonce'] ), 'monstroid-dashboard' ) ) {\n\t\t\t\tdie();\n\t\t\t}\n\n\t\t\tif ( ! current_user_can( 'manage_options' ) ) {\n\t\t\t\tdie();\n\t\t\t}\n\n\t\t\t$key = isset( $_REQUEST['key'] ) ? esc_attr( $_REQUEST['key'] ) : '';\n\n\t\t\tif ( ! $key ) {\n\t\t\t\twp_send_json_error( array(\n\t\t\t\t\t'message' => __( 'Please, enter valid key', 'monstroid-dashboard' )\n\t\t\t\t) );\n\t\t\t}\n\n\t\t\t$request_uri = add_query_arg(\n\t\t\t\tarray(\n\t\t\t\t\t'edd_action' => 'activate_license',\n\t\t\t\t\t'item_name' => urlencode( monstroid_dashboard_updater()->monstroid_id ),\n\t\t\t\t\t'license' => $key\n\t\t\t\t),\n\t\t\t\tmonstroid_dashboard_updater()->api\n\t\t\t);\n\n\t\t\tglobal $wp_version;\n\t\t\t$key_request = wp_remote_get(\n\t\t\t\t$request_uri,\n\t\t\t\tarray( 'user-agent' => 'WordPress/' . $wp_version . '; ' . get_bloginfo( 'url' ) )\n\t\t\t);\n\n\t\t\t// Can't send request\n\t\t\tif ( is_wp_error( $key_request ) || ! isset($key_request['response']) ) {\n\t\t\t\twp_send_json_error( array(\n\t\t\t\t\t'message' => __( 'Can not send activation request. ' . $key_request->get_error_message(), 'monstroid-dashboard' )\n\t\t\t\t) );\n\t\t\t}\n\n\t\t\tif ( 200 != $key_request['response']['code'] ) {\n\t\t\t\twp_send_json_error( array(\n\t\t\t\t\t'message' => __( 'Activation request error. ' . $key_request['response']['code'] . ' - ' . $key_request['response']['message'] . '. Please, try again later', 'monstroid-dashboard' )\n\t\t\t\t) );\n\t\t\t}\n\n\t\t\t$response = json_decode( $key_request['body'] );\n\n\t\t\t// Request generate unexpected result\n\t\t\tif ( ! is_object( $response ) || !isset( $response->success ) ) {\n\t\t\t\twp_send_json_error( array(\n\t\t\t\t\t'message' => __( 'Bad request.', 'monstroid-dashboard' )\n\t\t\t\t) );\n\t\t\t}\n\n\t\t\t// Requested license key is missing\n\t\t\tif ( ! $response->success && 'missing' == $response->error ) {\n\t\t\t\twp_send_json_error( array(\n\t\t\t\t\t'message' => __( 'Wrong license key. Make sure activation key is correct.', 'monstroid-dashboard' )\n\t\t\t\t) );\n\t\t\t}\n\n\t\t\t// Hosts limit reached\n\t\t\tif ( ! $response->success && 'limit_reached' == $response->error ) {\n\t\t\t\twp_send_json_error( array(\n\t\t\t\t\t'message' => __( 'Sorry, the license key you are trying to use exceeded the maximum amount of activations was applied for 3 domains', 'monstroid-dashboard' )\n\t\t\t\t) );\n\t\t\t}\n\t\t\tif ( ! $response->success && 'no_activations_left' == $response->error ) {\n\t\t\t\twp_send_json_error( array(\n\t\t\t\t\t'message' => __( 'Sorry, the license key you are trying to use exceeded the maximum amount of activations was applied for 3 domains', 'monstroid-dashboard' )\n\t\t\t\t) );\n\t\t\t}\n\n\t\t\t// Unknown error\n\t\t\tif ( ! $response->success && $response->error ) {\n\t\t\t\twp_send_json_error( array(\n\t\t\t\t\t'message' => $response->error\n\t\t\t\t) );\n\t\t\t}\n\n\t\t\t// Can not get the,e information from TM\n\t\t\tif ( empty( $response->tm_data->status ) || 'request failed' == $response->tm_data->status ) {\n\t\t\t\twp_send_json_error( array(\n\t\t\t\t\t'message' => __( 'License key is invalid or evaluation expired. Please, contact Support Live Chat: <a href=\"http://chat.template-help.com/\">http://chat.template-help.com/</a>', 'monstroid-dashboard' )\n\t\t\t\t) );\n\t\t\t}\n\n\t\t\t// Theme currently in queue\n\t\t\tif ( 'queue' == $response->tm_data->status ) {\n\t\t\t\twp_send_json_error( array(\n\t\t\t\t\t'message' => __( 'Theme is not available yet. Please try again in 10 minutes.', 'monstroid-dashboard' )\n\t\t\t\t) );\n\t\t\t}\n\n\t\t\t// Theme currently removed from cloud\n\t\t\tif ( 'failed' == $response->tm_data->status ) {\n\t\t\t\twp_send_json_error( array(\n\t\t\t\t\t'message' => __( 'Theme is not available. Please contact support team for help.', 'monstroid-dashboard' )\n\t\t\t\t) );\n\t\t\t}\n\n\t\t\tupdate_option( 'monstroid_key', $key );\n\n\t\t\tset_transient( 'cherry_theme_name', monstroid_dashboard_updater()->monstroid_id, WEEK_IN_SECONDS );\n\t\t\tset_transient( 'cherry_key', $key, WEEK_IN_SECONDS );\n\n\t\t\t$_SESSION['cherry_data'] = array(\n\t\t\t\t'theme' => $response->tm_data->theme,\n\t\t\t\t'sample' => $response->tm_data->sample_data,\n\t\t\t);\n\n\t\t\twp_send_json_success( array(\n\t\t\t\t'message' => __( 'Key succesfully activated and saved', 'monstroid-dashboard' )\n\t\t\t) );\n\n\t\t}", "public function create() {\n\n\t\t// if no values are posted -> displaying the form\n\t\tif (!isset($_POST['key_name']) &&\n\t\t\t!isset($_POST['key_type']) &&\n\t\t\t!isset($_POST['key_locks']) &&\n\t\t\t!isset($_POST['key_supplier']) &&\n\t\t\t!isset($_POST['key_copies'])) {\n\n\t\t\t$this->displayForm();\n\t\t}\n\n\t\t// if some (but not all) values are posted -> error message\n\t\telseif (empty($_POST['key_name']) ||\n\t\t\tempty($_POST['key_type']) ||\n\t\t\tempty($_POST['key_locks']) ||\n\t\t\tempty($_POST['key_supplier']) ||\n\t\t\tempty($_POST['key_copies'])) {\n\n\t\t\t$m_type = \"danger\";\n\t\t\t$m_message = \"Toutes les valeurs nécessaires n'ont pas été trouvées. Merci de compléter tous les champs.\";\n\t\t\t$message['type'] = $m_type;\n\t\t\t$message['message'] = $m_message;\n\n\t\t\t$this->displayForm(array($message));\n\t\t}\n\n\t\t// if we have all values, we can create the key\n\t\telse {\n\n\t\t\t// id generation\n\t\t\t$id = 'k_' . strtolower(str_replace(' ', '_', addslashes($_POST['key_name'])));\n\n\t\t\t// if the key is total, we add all locks.\n\t\t\tif ( addslashes($_POST['key_type']) == 'total') {\n\t\t\t\t$locks = $this->_lockService->getLocks();\n\t\t\t\t$_POST['key_locks'] = $locks;\n\t\t\t}\n\n\t\t\t// unicity check\n\t\t\t$exist = $this->checkUnicity($id);\n\n\t\t\tif (!$exist) {\n\n\t\t\t\t$keyToSave = array(\n\t\t\t\t\t'key_id' => $id,\n\t\t\t\t\t'key_name' => addslashes($_POST['key_name']),\n\t\t\t\t\t'key_type' => addslashes($_POST['key_type']),\n\t\t\t\t\t'key_locks' => $_POST['key_locks'],\n\t\t\t\t\t'key_supplier' => addslashes($_POST['key_supplier']),\n\t\t\t\t\t'key_copies' => addslashes($_POST['key_copies'])\n\t\t\t\t);\n\n\t\t\t\t$this->saveKey($keyToSave);\n\n\t\t\t\t$m_type = \"success\";\n\t\t\t\t$m_message = \"La clé a bien été créée.\";\n\t\t\t\t$message['type'] = $m_type;\n\t\t\t\t$message['message'] = $m_message;\n\n\t\t\t\t$this->displayForm(array($message));\n\n\t\t\t}\n\t\t\telse {\n\t\t\t\t$m_type = \"danger\";\n\t\t\t\t$m_message = \"Une clé avec le même nom existe déjà.\";\n\t\t\t\t$message['type'] = $m_type;\n\t\t\t\t$message['message'] = $m_message;\n\n\t\t\t\t$this->displayForm(array($message));\n\t\t\t}\n\t\t}\n\t}", "public function suspend_post()\n {\n\t\t$key = $this->post('key');\n\n\t\t// Does this key even exist?\n\t\tif ( ! self::_key_exists($key))\n\t\t{\n\t\t\t// NOOOOOOOOO!\n\t\t\t$this->response(array('error' => 'Invalid API Key.'), 400);\n\t\t}\n\n\t\t// Update the key level\n\t\tif (self::_update_key($key, array('level' => 0)))\n\t\t{\n\t\t\t$this->response(array('status' => 1, 'success' => 'Key was suspended.'), 200); // 200 = OK\n\t\t}\n\n\t\telse\n\t\t{\n\t\t\t$this->response(array('status' => 0, 'error' => 'Could not suspend the user.'), 500); // 500 = Internal Server Error\n\t\t}\n }", "public function create($post)\n {\n\n }", "public function post_new_val(){\n\t\t$submit_posts \t\t\t\t\t= $this->input->post();\n\t\t$submit_posts['PASSWORD']\t\t= md5($submit_posts['PASSWORD']);\n\t\t$submit_posts['ACCESS_LEVEL']\t= '990';\n\t\t$submit_posts['USER_DATEADDED']\t= date('Y-m-d');\n\t\t\n\t\treturn $this->_set_new_val($submit_posts);\n\t}", "public function create_token( $post_id, $post, $update ) {\n\n if( get_post_type( $post_id ) !== 'product' ) return;\n\n $_pf = new WC_Product_Factory();\n $product = $_pf->get_product($post_id);\n if( $product->get_type() !== 'auction' ) return;\n\n remove_action( 'save_post', array( $this, 'create_token' ) );\n\n $args = array(\n 'post_title' => 'Token for product #'.$post->ID.' : '.$post->post_title,\n 'post_parent' => $post->ID,\n 'meta_input' => array(\n 'wauc_product_id' => $post->ID,\n '_regular_price' => isset( $_POST['wauc_auction_deposit'] ) && !empty( $_POST['wauc_auction_deposit'] ) ? $_POST['wauc_auction_deposit'] : 0,\n '_price' => isset( $_POST['wauc_auction_deposit'] ) && !empty( $_POST['wauc_auction_deposit'] ) ? $_POST['wauc_auction_deposit'] : 0\n ),\n 'post_type' => 'product',\n 'post_status' => 'publish'\n );\n $token_id = get_post_meta( $post->ID, 'wauc_token_id', true );\n\n if( $token_id ) {\n $args['ID'] = $token_id;\n }\n\n $token_id = wp_insert_post( $args );\n update_post_meta( $post->ID, 'wauc_token_id', $token_id );\n }", "public function newPost()\n {\n $session = new PHPSession();\n\t\tif ($session->get('admin') == NULL || !$session->get('admin')) {\n return $this->redirect(parent::ERROR_403_PATH);\n }\n $uuid = Uuid::uuid4();\n $uuid = $uuid->toString();\n $session->set('token', $uuid);\n return $this->render('admin/newPost.html.twig');\n }", "public function setKey()\n {\n if (!$this->is_phpwsbb)\n return;\n $this->_key->setModule('phpwsbb');\n $this->_key->setItemName('topic');\n $this->_key->setItemId($this->id);\n $this->_key->setEditPermission('manage_forums');\n $this->_key->setUrl('index.php?module=phpwsbb&amp;view=topic&amp;id='.$this->id);\n $this->_key->setTitle($this->title);\n $this->_key->setSummary(strip_tags($this->summary));\n $result = $this->_key->save();\n if (PHPWS_Error::logIfError($result))\n exit('There has been an error. Please check your phpWebsite error logs.');\n $this->key_id = $this->_key->id;\n return $result;\n }", "public static function addKey(){\r\n $ra = (time())*(rand());\r\n @ $conn = new mysqli(MYSQL_HOST,MYSQL_USER,MYSQL_PASSWORD,MYSQL_DATABASE_NAME); //Conn to database\r\n $query = \"insert into ke values (NULL,sha1(\".$ra.\"))\";\r\n $result = $conn->query($query);\r\n $conn->close();//close database conn\r\n }", "function themedevmaterializecreatePost() {\n $current_user = wp_get_current_user();\n $currentuserid = $current_user->ID;\n\n // Get the details from the form which was posted\n $postTitle = $_POST['postTitle'];\n $contentOfPost = $_POST['themedevmaterialize_post_content'];\n $postExcerpt = $_POST['postExcerpt'];\n $postStatus = 'pending'; // Manually approve all posts\n\n // Create the post in WordPress\n $post_id = wp_insert_post( array(\n 'post_title' => $postTitle,\n 'post_content' => $contentOfPost,\n 'post_excerpt' => $postExcerpt,\n 'post_status' => $postStatus,\n 'post_author' => $currentuserid\n ) );\n\n echo '<p class=\"flow-text green-text\">Thank you for submitting your post! It will be reviewed within the next 48 hours.</p>';\n\n }", "public function index_put()\n\t{\n\t\t// Build a new key\n\t\t$key = self::_generate_key();\n\n\t\t// If no key level provided, give them a rubbish one\n\t\t$level = $this->put('level') ? $this->put('level') : 1;\n\t\t$ignore_limits = $this->put('ignore_limits') ? $this->put('ignore_limits') : 1;\n\t\t$api_status = $this->put('api_status') ? $this->put('api_status') : 'standby';\n\t\t$site_name = $this->put('site_name');\n\t\tif(!$site_name)\n\t\t{\n\t\t\t$this->response(array('status' => 0, 'error' => 'Could not save the key. (Site Name is empty)'), 500); // 500 = Internal Server Error\n\t\t}\n\n\t\t$site_url = $this->put('site_url');\n\t\tif(!$site_url)\n\t\t{\n\t\t\t$this->response(array('status' => 0, 'error' => 'Could not save the key. (Site URL is empty)'), 500); // 500 = Internal Server Error\n\t\t}\n\n\t\t$api_status_list = array('standby' => 1, 'postponed' => 1, 'accepted' => 1);\n\t\tif(!isset($api_status_list[$api_status]))\n\t\t{\n\t\t\t$api_status = 'standby';\n\t\t}\n\n\t\t// Insert the new key\n\t\tif (self::_insert_key($key, array('level' => $level, 'ignore_limits' => $ignore_limits, 'api_status' => $api_status, 'site_name' => $site_name, 'site_url' => $site_url)))\n\t\t{\n\t\t\t$this->response(array('status' => 1, 'key' => $key), 201); // 201 = Created\n\t\t}\n\n\t\telse\n\t\t{\n\t\t\t$this->response(array('status' => 0, 'error' => 'Could not save the key.'), 500); // 500 = Internal Server Error\n\t\t}\n }", "public function testCreatePost()\n {\n $this->post('/api/v1/admin/post/create')->seeStatusCode(200);\n }", "function hook_rbkc_api_user_pre_create($data, $queue_item) {\n\n}", "function config_creator_post() {\n $user = user_from_post(1);\n users_insert($user);\n config_set([\n 'name' => $_POST['name_website'],\n 'currency' => $_POST['currency_website']\n ]);\n return $user;\n}", "function index_post()\n {\n $key = $this->get('id');\n $record = array_merge(array('id' => $key), $_POST);\n if ($this->validateFormInput($record, false))\n {\n $this->Receiving->add($record);\n $this->response(array('New item created', $record), 200);\n } else\n {\n $this->response(array('Invalid input'), 404);\n }\n //$this->Receiving->add($record);\n //$this->response(array('ok'), 200);\n }", "public function createApiKeyAndToken(){\n $randomKeyGenerator = new \\Phalcon\\Security\\Random();\n $phalconSecurityLib = new \\Phalcon\\Security();\n $apiKey = $randomKeyGenerator->hex(10);\n $apiToken = $randomKeyGenerator->hex(5);\n $apiTokenHash = $phalconSecurityLib->hash($apiToken);\n\n $apiKeyModel = new \\Library\\System\\Api\\Models\\Api();\n $apiKeyModel->key = $apiKey;\n $apiKeyModel->token_hash = $apiTokenHash;\n $apiKeyModel->setToken($apiToken);\n $apiKeyModel->expires_at = time() + $this->getDI()->get('config')->application->jwtExpireTime;\n $apiKeyModel->status = \\Library\\System\\Api\\Models\\Api::APIKEY_STATUS_REQUIRED_TRUE;\n\n\n if (! $apiKeyModel->create()) {\n throw new \\Phalcon\\Mvc\\Model\\Exception($apiKeyModel->getMessages(\"\\n\"));\n }\n return $apiKeyModel;\n }", "function agent_post()\n { \n $agent = new agent();\n\n $agent->date_created = date('Y-m-d H:i:s');\n $agent->createdbypk = $this->get_user()->user_id;\n $agent->date_modified = date('Y-m-d H:i:s');\n $agent->modifiedbypk = $this->get_user()->user_id;\n $agent->hash = md5(microtime() . uniqid() . date('Y-m-d H:i:s'));\n\n $this->response($this->_agent_save($agent, 'post'));\n }", "function hook_rbkc_api_user_post_create($user, $queue_item) {\n\t\n}", "public function store()\n\t{\n $postId = null;\n $input = Input::get();\n if(Post::validator($input)){\n $postId = Post::create($input);\n }\n echo $postId;\n\t}", "public function generate_post(){\n $date = new DateTime();\n $username = $this->post('username');\n $password = $this->post('password');\n\n if ($this->user_model->valid_login($username, $password)) { // Validasi akun\n $payload['id'] = $dataadmin->id_user;\n $payload['username'] = $dataadmin->username;\n $payload['iat'] = $date->getTimestamp(); //waktu di buat\n $payload['exp'] = $date->getTimestamp() + 3600; //expired dalam waktu satu jam\n\n $output['success'] = true;\n $output['expiry'] = date('Y/m/d H:i', $payload['exp']);\n $output['access_token'] = JWT::encode($payload,$this->secretkey);\n return $this->response($output, REST_Controller::HTTP_OK);\n } else {\n $this->viewtokenfail($username);\n }\n }" ]
[ "0.6590085", "0.5845697", "0.5827185", "0.57954156", "0.56696993", "0.56429815", "0.56178784", "0.5609286", "0.5602676", "0.55189526", "0.54636174", "0.54609895", "0.54598385", "0.544261", "0.5389454", "0.53858674", "0.5346363", "0.533314", "0.53288794", "0.5324044", "0.5323622", "0.5309051", "0.5228131", "0.5224019", "0.52168566", "0.5215735", "0.52147454", "0.5213296", "0.52121377", "0.5201549" ]
0.80203766
0
Admin Revoke Beta Key
public function adminRevokeBetaKey($beta_key) { $this->db->where('beta_key', $beta_key); $delete = $this->db->delete('beta_keys'); // If deleted, return true if ($delete) return true; return false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function license_key_deactivation() {\n\n\t\t$wc_api_manager_key = new WC_Api_Manager_Key();\n\n\t\t$activation_status = get_option( 'wc_api_manager_activated' );\n\n\t\t$default_options = get_option( 'wc_api_manager' );\n\n\t\t$api_email = $default_options['activation_email'];\n\t\t$api_key = $default_options['api_key'];\n\n\t\t$args = array(\n\t\t\t'email' => $api_email,\n\t\t\t'licence_key' => $api_key,\n\t\t\t);\n\n\t\tif ( $activation_status == 'Activated' && $api_key != '' && $api_email != '' ) {\n\t\t\t$wc_api_manager_key->deactivate( $args ); // reset license key activation\n\t\t}\n\t}", "public function apikey_delete()\n {\n if (!$this->user_model->isAuth()) {\n redirect('user/login', 'refresh');\n }\n\n $this->load->model('user_admin_model');\n\n $this->user_admin_model\n ->deleteApiKey(\n $this->session->userdata('ID'),\n $this->input->get('id')\n );\n redirect('/user/apikey');\n }", "public function revoke_access() {\n // Nothing to do!\n }", "public function index_delete()\n {\n\t\t$key = $this->delete('key');\n\n\t\t// Does this key even exist?\n\t\tif ( ! self::_key_exists($key))\n\t\t{\n\t\t\t// NOOOOOOOOO!\n\t\t\t$this->response(array('status' => 0, 'error' => 'Invalid API Key.'), 400);\n\t\t}\n\n\t\t// Kill it\n\t\tself::_delete_key($key);\n\n\t\t// Tell em we killed it\n\t\t$this->response(array('status' => 1, 'success' => 'API Key was deleted.'), 200);\n }", "public function revoke_access() \n {\n if (!$this->user_model->isAuth()) {\n redirect('user/login', 'refresh');\n }\n\n $this->load->model('user_admin_model');\n\n $this->user_admin_model->deleteAccessToken(\n $this->session->userdata('ID'),\n $this->input->get('id')\n );\n redirect('/user/apikey');\n }", "function wpresponder_deactivate()\r\n{\r\n\twp_clear_scheduled_hook('wpr_cronjob');\r\n\t\r\n\t//remove the capability\r\n\tglobal $wp_roles;\r\n\t$wp_roles->remove_cap( 'administrator', 'manage_newsletters' );\r\n\r\n}", "abstract public function revoke();", "function delete_ak(){\n\t\t\tglobal $wpdb;\n\t\t\t$tbl = $wpdb->prefix . $this->admin_options_name . '_access_keys';\n\t\t\t$ak_id = $wpdb->escape( $_POST['wpjf3_mr_ak_id'] );\n\t\t\t$sql = \"delete from $tbl where id = '$ak_id'\";\n\t\t\t$rs = $wpdb->query( $sql );\n\t\t\tif( $rs ){\n\t\t\t\t$this->print_access_keys();\n\t\t\t}else{\n\t\t\t\techo 'Unable to delete Access Key because of a database error. Please reload the page.';\n\t\t\t}\n\t\t\tdie();\n\t\t}", "function bbp_deactivation()\n{\n}", "public function revoke();", "public function revoke();", "function deactivate_key($camp_id,$keyword){\r\n\t\t\t\tupdate_post_meta($camp_id, '_'.md5($keyword), time('now') + 60*60 );\r\n\t\t\t}", "public function deleteKey( $key ) {\n \n Capsule::table('activations')->where('activationkey', $key)->delete();\n }", "public function revokeTempSecret()\n {\n Cache::forget(\"user{$this->id}_temp_secret\");\n }", "public function revokeAllPrivileges()\n {\n\n }", "public function revokeRootPrivileges()\n {\n\n }", "public function pxp_deactivate()\n\t{\n\t\t// Remove caps and roles.\n\t\t//$this->remove_roles_on_plugin_deactivation();\n\t}", "static function removeAuthKey($params){\n $con = $params['dbconnection'];\n $queryd = \"DELETE FROM `authkeys` WHERE `auth_key`='{$params['Authorization']}'\";\n mysqli_query($con, $queryd);\n return \"removed\";\n }", "public function revokeAction()\n {\n // if session expire\n if ( !isset($_SESSION['_token']) ) {\n header(\"HTTP/1.1 401 Unauthorized\");\n exit;\n }\n\n // create google client\n $cl = $this->CreateClient();\n $cl->setAccessToken($_SESSION['_token']);\n\n $cl->revokeToken($_SESSION['_token']);\n\n unset ($_SESSION['_token']);\n header('Location: ' . '/');\n exit;\n }", "public function index_delete()\n {\n $key = $this->delete('key');\n\n // Does this key exist?\n if (!$this->_key_exists($key))\n {\n // It doesn't appear the key exists\n $this->response([\n 'status' => FALSE,\n 'message' => 'Invalid API key'\n ], REST_Controller::HTTP_BAD_REQUEST); // BAD_REQUEST (400) being the HTTP response code\n }\n\n // Destroy it\n $this->_delete_key($key);\n\n // Respond that the key was destroyed\n $this->response([\n 'status' => TRUE,\n 'message' => 'API key was deleted'\n ], REST_Controller::HTTP_NO_CONTENT); // NO_CONTENT (204) being the HTTP response code\n }", "function ssBase_ops_deactivation(){\n\t\tif($this->ssBaseOpOut[delete_options] == true){\n\t\t delete_option($this->AdminOptionsName);\n\t\t delete_option('ssMod_options');\n\t\t}\n\t}", "static public function removeAdminCaps()\n {\n $adminRole = get_role('administrator');\n foreach (static::ADMIN_CAPS as $cap => $grant) {\n $adminRole->remove_cap($cap);\n }\n }", "static function removeAuthKey($params) \n{\n\t$con =$params['dbconnection'];\t\n\t$queryd = \"DELETE FROM `authkeys` WHERE `auth_key`='{$params['Authorization']}'\";\n\tmysqli_query($con,$queryd) ;\n\treturn \"removed\";\n}", "public function revokeSitePrivileges()\n {\n\n }", "public function unlockAction() {\n\t\ttry{\n\t\t\t\n\t\t\t/*$refurl1=$_SERVER['HTTP_REFERER'];\n\t\t\t$refurl=explode(\"/\", $refurl1);\n\t\t\tif($refurl[4]!='usermanagement' && $refurl[5]!='user' && $refurl[6]!='list' ){\n\t\t\t\t\t$this->_redirect(\"/default/error/accessdenied\");\n\t\t\t}else{*/\n\t\t\t\n\t\t\t\t$params = $this->_getAllParams();\n\t\t\t\t$this->attributesgroups->unlock($params);\n\t\t\t\t$this->_redirect($_SERVER['HTTP_REFERER']);\n\t\t\t\t//}\n\t\t} catch(Exception $e) {\n\t\t\tApplication_Model_Logging::lwrite($e->getMessage());\n\t\t\tthrow new Exception($e->getMessage());\n\t\t}\n\t}", "function xarSecConfirmAuthKey($modName=NULL, $authIdVarName='authid', $catch=false)\n{\n return xarSec::confirmAuthKey($modName, $authIdVarName, $catch);\n}", "public function suspend_post()\n {\n\t\t$key = $this->post('key');\n\n\t\t// Does this key even exist?\n\t\tif ( ! self::_key_exists($key))\n\t\t{\n\t\t\t// NOOOOOOOOO!\n\t\t\t$this->response(array('error' => 'Invalid API Key.'), 400);\n\t\t}\n\n\t\t// Update the key level\n\t\tif (self::_update_key($key, array('level' => 0)))\n\t\t{\n\t\t\t$this->response(array('status' => 1, 'success' => 'Key was suspended.'), 200); // 200 = OK\n\t\t}\n\n\t\telse\n\t\t{\n\t\t\t$this->response(array('status' => 0, 'error' => 'Could not suspend the user.'), 500); // 500 = Internal Server Error\n\t\t}\n }", "function wfs_deactivate () {\n\tglobal $wp_wfs_configure_table, $wpdb;\n\t$wpdb->query(\"DROP TABLE {$wp_wfs_configure_table}\");\n\tdelete_option('webfonts_public_key');\n\tdelete_option('webfonts_private_key');\n\tdelete_option('webfonts_userid');\n\tdelete_option('webfonts_usertype');\n\t}", "function rules_action_user_unblock($account) {\n $account->status = 1;\n}", "public function unban();" ]
[ "0.6694244", "0.6615108", "0.61308426", "0.61168927", "0.6116382", "0.60938585", "0.60404557", "0.60354304", "0.59838015", "0.5967726", "0.5967726", "0.59650517", "0.5904798", "0.5868044", "0.58677894", "0.5685913", "0.5674649", "0.5671146", "0.5667833", "0.5663724", "0.56397", "0.56375396", "0.5624609", "0.5622854", "0.56079495", "0.5601762", "0.55927086", "0.55826414", "0.5555651", "0.5540999" ]
0.71830916
0
get the numbers of the tiles that intersect with the polygon
function getTileNumbers($polygon, $zoom){ global $database; # BBox des Polygons bestimmen $sql = " SELECT st_xmin(geom) minx, st_xmax(geom) maxx, st_ymin(geom) miny, st_ymax(geom) maxy FROM ( SELECT st_geomfromtext('".$polygon."') as geom ) as foo "; $ret = pg_query($database->dbConn, $sql); $rs=pg_fetch_assoc($ret); $minx=$rs['minx']; $miny=$rs['miny']; $maxx=$rs['maxx']; $maxy=$rs['maxy']; # Kachelnummern aus BBox bestimmen $upper_left = deg2num($maxy, $minx, $zoom); // links oben $lower_right = deg2num($miny, $maxx, $zoom); // rechts unten $lower_right[0]++; $lower_right[1]++; $x_count = $lower_right[0] - $upper_left[0]; // Kachelanzahl in x-Richting $y_count = $lower_right[1] - $upper_left[1]; // Kachelanzahl in y-Richting # BBox der Kacheln bestimmen $upper_left_tiles = num2deg($upper_left[0], $upper_left[1], $zoom); $lower_right_tiles = num2deg($lower_right[0], $lower_right[1], $zoom); # Kachel-BBox nach 900913 transformieren $sql = " SELECT st_x(min) AS minx, st_y(min) AS miny, st_x(max) AS maxx, st_y(max) AS maxy FROM ( SELECT st_transform(st_geomfromtext('POINT(".$upper_left_tiles[1]." ".$lower_right_tiles[0].")', 4326), 900913) AS min, st_transform(st_geomfromtext('POINT(".$lower_right_tiles[1]." ".$upper_left_tiles[0].")', 4326), 900913) AS max ) AS foo "; $ret = pg_query($database->dbConn, $sql); $rs=pg_fetch_assoc($ret); $minx=$rs['minx']; $miny=$rs['miny']; $maxx=$rs['maxx']; $maxy=$rs['maxy']; $tile_width = ($maxy - $miny) / $y_count; // Kachelbreite in 900913 # Grid-Tabelle erzeugen echo 'Erzeuge Grid-Tabelle ... '; $sql = " CREATE TABLE tile_grid_table as SELECT round((st_xmin(geom) - ".$minx.")/".$tile_width.") + ".$upper_left[0]." as x, round((".$maxy." - st_ymax(geom))/".$tile_width.") + ".$upper_left[1]." as y, geom FROM ( SELECT ST_SetSRID((ST_PixelAsPolygons(ST_AddBand(ST_MakeEmptyRaster( ".$x_count.", ".$y_count.", ".$minx.", ".$maxy.", ".$tile_width." ), '8BSI'::text, 1, 0), 1, false)).geom, 900913) as geom ) as foo; CREATE INDEX tile_grid_table_gist ON tile_grid_table USING gist (geom); "; #echo $sql; $ret = pg_query($database->dbConn, $sql); # Kachelnummern durch Verschneidung des Polygons mit Grid-Tabelle bestimmen $sql = " SELECT x, y, st_intersects(geom, st_transform(st_geomfromtext('".$polygon."', 4326), 900913)) as intersects FROM tile_grid_table "; $ret = pg_query($database->dbConn, $sql); while($rs=pg_fetch_assoc($ret)){ $tiles[] = $rs; } # Grid-Tabelle wieder löschen $sql = " DROP TABLE tile_grid_table; "; $ret = pg_query($database->dbConn, $sql); return $tiles; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function determine_in_polygon($no_of_polygons, $polygons_x, $polygons_y, $address_x, $address_y) {\n\t \t$j = $no_of_polygons - 1;\n\t \t$odd_nodes = 0;\n\t \tfor ($i = 0; $i < $no_of_polygons; $i++)\n\t \t{\n\t\t \tif ($polygons_y[$i] < $address_y && $polygons_y[$j] >= $address_y || $polygons_y[$j] < $address_y && $polygons_y[$i] >= $address_y)\n\t\t \t{\n\t\t\t \tif ($polygons_x[$i] + ($address_y - $polygons_y[$i]) / ($polygons_y[$j] - $polygons_y[$i]) * ($polygons_x[$j] - $polygons_x[$i]) < $address_x)\n\t\t\t \t{\n\t\t\t \t\t$odd_nodes = !$odd_nodes;\n\t\t\t \t}\n\t\t \t}\n\t\t \t$j = $i;\n\t \t}\n \t return $odd_nodes;\n \t}", "function calculateAreas($map) {\n $map_count = [];\n foreach ($map as $x => $rows) {\n foreach ($rows as $y => $col) {\n if (!isset($map_count[$map[$x][$y]['value']])) {\n $map_count[$map[$x][$y]['value']] = 0;\n }\n $map_count[$map[$x][$y]['value']]++;\n }\n }\n\n return $map_count;\n}", "private function getInvCount() {\n $inversion = 0;\n for ($i = 0; $i < $this->num-1; $i++) {\n for ($j = $i + 1; $j < $this->num;$j++) {\n if ($this->tiles[$i] > $this->tiles[$j] && $this->tiles[$j]!=0) {\n $inversion++;\n }\n }\n }\n return $inversion;\n }", "function neighbour_verification($array, $x, $y) {\n\n $test_match = 0;\n\n foreach($array as $value) {\n if ($value['x'] == $x + 1 and $value['y'] == $y) {$test_match++;}\n if ($value['x'] == $x - 1 and $value['y'] == $y) {$test_match++;}\n if ($value['x'] == $x and $value['y'] == $y + 1) {$test_match++;}\n if ($value['x'] == $x and $value['y'] == $y - 1) {$test_match++;}\n }\n\n echo \"checkin path box...\\n\";\n return $test_match;\n}", "function polyIsInsidePolygon($geoIn, $boundsIn, $geoOut, $boundsOut)\n{\n if ($boundsIn['minlat'] >= $boundsOut['minlat'] && $boundsIn['maxlat'] <= $boundsOut['maxlat'] && $boundsIn['minlon'] >= $boundsOut['minlon'] && $boundsIn['maxlon'] <= $boundsOut['maxlon']) {\n $insideCount = 0;\n foreach ($geoIn as $coord) {\n if (pointIsInsidePolygon($coord['lat'], $coord['lng'], $geoOut, $boundsOut)) {\n ++$insideCount;\n }\n }\n\n return $insideCount / count($geoIn) >= 0.95;\n } else {\n return false; // bounds outside\n }\n}", "function contains($point, $polygon)\n{\n if($polygon[0] != $polygon[count($polygon)-1])\n $polygon[count($polygon)] = $polygon[0];\n $j = 0;\n $oddNodes = false;\n $x = $point[1];\n $y = $point[0];\n $n = count($polygon);\n for ($i = 0; $i < $n; $i++)\n {\n $j++;\n if ($j == $n)\n {\n $j = 0;\n }\n if ((($polygon[$i][0] < $y) && ($polygon[$j][0] >= $y)) || (($polygon[$j][0] < $y) && ($polygon[$i][0] >=\n $y)))\n {\n if ($polygon[$i][1] + ($y - $polygon[$i][0]) / ($polygon[$j][0] - $polygon[$i][0]) * ($polygon[$j][1] -\n $polygon[$i][1]) < $x)\n {\n $oddNodes = !$oddNodes;\n }\n }\n }\n return $oddNodes;\n}", "function pointIsInsidePolygon($lat, $lng, $geos, $bounds)\n{\n if ($lat >= $bounds['minlat'] && $lat <= $bounds['maxlat'] && $lng >= $bounds['minlon'] && $lng <= $bounds['maxlon']) {\n $intersections = 0;\n $geos_count = count($geos);\n\n for ($i = 1; $i < $geos_count; ++$i) {\n $geo1 = $geos[$i - 1];\n $geo2 = $geos[$i];\n if ($geo1['lng'] == $lng && $geo1['lat'] == $lat) { // On one of the coords\n return true;\n }\n if ($geo1['lng'] == $geo2['lng'] and $geo1['lng'] == $lng and $lat > min($geo1['lat'], $geo2['lat']) and $lat < max($geo1['lat'], $geo2['lat'])) { // Check if point is on an horizontal polygon boundary\n return true;\n }\n if ($lng > min($geo1['lng'], $geo2['lng']) and $lng <= max($geo1['lng'], $geo2['lng']) and $lat <= max($geo1['lat'], $geo2['lat']) and $geo1['lng'] != $geo2['lng']) {\n $xinters = ($lng - $geo1['lng']) * ($geo2['lat'] - $geo1['lat']) / ($geo2['lng'] - $geo1['lng']) + $geo1['lat'];\n if ($xinters == $lat) { // Check if point is on the polygon boundary (other than horizontal)\n return true;\n }\n if ($geo1['lat'] == $geo2['lat'] || $lat <= $xinters) {\n ++$intersections;\n }\n }\n }\n // If the number of edges we passed through is odd, then it's in the polygon.\n return 0 != $intersections % 2;\n } else {\n return false; // outside bounds\n }\n}", "function outside_surface_area () {\n global $LavaVoxels ;\n\n $area = 0 ;\n\n foreach ($LavaVoxels as $k => $v) {\n list($x,$y,$z) = coords($k) ;\n\n # echo \"Considering: $k\\n\" ;\n \n $neighbors = facing_voxels($k) ;\n \n foreach ($neighbors as $n) {\n # echo \" neighbor: $n\" ;\n list($nx, $ny, $nz) = coords($n) ;\n\n if (is_water($nx, $ny, $nz)) {\n # echo \" is water\\n\";\n $area++ ;\n } else if (is_lava($nx, $ny, $nz)) {\n # echo \" is lava\\n\";\n } else {\n # echo \" is neither\\n\";\n }\n }\n }\n\n return $area ;\n}", "function surface_area () {\n global $LavaVoxels ;\n\n $area = 0 ;\n\n foreach ($LavaVoxels as $k => $v) {\n list($x,$y,$z) = coords($k) ;\n \n $area += 6 ;\n \n $neighbors = facing_voxels($k) ;\n \n foreach ($neighbors as $n) {\n if (array_key_exists($n,$LavaVoxels)) {\n $area -= 1 ;\n }\n }\n }\n\n return $area ;\n}", "function tsml_count_regions() {\n\treturn count(tsml_get_all_regions());\n}", "Function Count_planets_in_each_house($num_planets, $sort, $sort_pos, &$nopih, &$spot_filled)\r\n{\r\n// unset any variables not initialized elsewhere in the program\r\n// reset the number of planets in each house\r\n// make $spot_filled times 15 (instead of 12) just to be sure (to cover overflow)\r\n unset($spot_filled);\r\n\r\n for ($i = 1; $i <= 12; $i++)\r\n {\r\n $nopih[$i] = 0;\r\n }\r\n\r\n// run through all the planets and see how many planets are in each house\r\n for ($i = 0; $i <= $num_planets - 1; $i++)\r\n {\r\n // get sign planet is in, since the sign and the house are the same\r\n $p_num = $sort_pos[$i];\r\n $temp = floor($sort[$p_num] / 30) + 1;\r\n $nopih[$temp]++;\r\n }\r\n}", "Function Count_planets_in_each_house($num_planets, $sort, $sort_pos, &$nopih, &$spot_filled)\n{\n // unset any variables not initialized elsewhere in the program\n // reset the number of planets in each house\n // make $spot_filled times 15 (instead of 12) just to be sure (to cover overflow)\n unset($spot_filled);\n\n for ($i = 1; $i <= 12; $i++)\n {\n $nopih[$i] = 0;\n }\n\n // run through all the planets and see how many planets are in each house\n for ($i = 0; $i <= $num_planets - 1; $i++)\n {\n // get sign planet is in, since the sign and the house are the same\n $p_num = $sort_pos[$i];\n $temp = floor($sort[$p_num] / 30) + 1;\n $nopih[$temp]++;\n }\n}", "public function obtenerAreas();", "private function getAliveNeighborCount($x, $y) {\n $aliveCount = 0;\n for ($y2 = $y - 1; $y2 <= $y + 1; $y2++) {\n if ($y2 < 0 || $y2 >= $this->gridHelper->getHeight()) {\n // Out of range.\n continue;\n }\n for ($x2 = $x - 1; $x2 <= $x + 1; $x2++) {\n if ($x2 == $x && $y2 == $y) {\n // Current cell spot.\n continue;\n }\n if ($x2 < 0 || $x2 >= $this->gridHelper->getWidth()) {\n // Out of range.\n continue;\n }\n if ($this->gridHelper->grid[$y2][$x2]['isAlive']) {\n $aliveCount += 1;\n }\n }\n }\n return $aliveCount;\n }", "abstract public function getPointCount(): int;", "public function count()\n {\n return count($this->areas);\n }", "public function found()\n {\n\n return count($this->geoObjects);\n\n }", "public function getJunctionDepth()\n\t{\n\t\t$previousDifference = null;\n\t\t$previousGridPoint = null;\n\t\tforeach ($this->gridPoints as $i => $gridPoint)\n\t\t{\n\t\t\tif ($gridPoint->getMaterial() == 'SiO2') continue;\n\t\t\tif (is_null($previousGridPoint)) $previousGridPoint = $gridPoint;\n\t\t\t$difference = $previousGridPoint->getAcceptorConc() - $gridPoint->getDonorConc();\n\t\t\t\n\t\t\tif (!is_null($previousDifference))\n\t\t\t{\n\t\t\t\t//check to see if the signs are opposite\n\t\t\t\tif (\n\t\t\t\t\t($previousDifference > 0 && $difference < 0) \n\t\t\t\t\t|| ($previousDifference < 0 && $difference > 0)\n\t\t\t\t) {\n\t\t\t\t\t$x1 = $this->dx * ($i - 1);\n\t\t\t\t\t$x2 = $this->dx * ($i);\n\n\t\t\t\t\t//find intersection point!\n\t\t\t\t\t$p2 = $gridPoint->getAcceptorConc();\n\t\t\t\t\t$p1 = $previousGridPoint->getAcceptorConc();\n\t\t\t\t\t$n2 = $gridPoint->getDonorConc();\n\t\t\t\t\t$n1 = $previousGridPoint->getDonorConc();\n\n\t\t\t\t\t$mn = ($n1-$n2)/($x1-$x2);\n\t\t\t\t\t$mp = ($p1-$p2)/($x1-$x2);\n\n\t\t\t\t\t$bp = $p1 - $mp * $x1;\n\t\t\t\t\t$bn = $n1 - $mn * $x1;\n\n\t\t\t\t\t$xj = ($bp - $bn)/($mn - $mp);\n\t\t\t\t\treturn $xj ;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t$previousDifference = $difference;\n\t\t\t$previousGridPoint = $gridPoint;\n\t\t}\n\t\treturn 'unknown';\n\t}", "private function getAliveNeighborCount($x, $y)\n {\n $aliveNeighbour = 0;\n\n for ($y2 = $y - 1; $y2 <= $y + 1; $y2++) {\n if ($y2 < 0 || $y2 >= $this->getHeight()) {\n continue; // out of range\n }\n for ($x2 = $x - 1; $x2 <= $x + 1; $x2++) {\n if ($x2 == $x && $y2 == $y) {\n continue; // current position\n }\n if ($x2 < 0 || $x2 >= $this->getWidth()) {\n continue; // out of range\n }\n if ($this->cells[$y2][$x2]) {\n $aliveNeighbour += 1;\n }\n }\n }\n\n return $aliveNeighbour;\n }", "function connected_locs ($x, $y, $depth)\r\n {\r\n global $p_x;\r\n global $p_y;\r\n $mas = array (); // massiv perehodov\r\n // stolqko raz skolqko ukazano v depth\r\n for ($i = 0; $i < $depth; $i++)\r\n {\r\n if ($i == 0) { $mas = add_entrances ($mas, $p_x, $p_y, 1); continue; }\r\n // zanosim verhnij krug\r\n for ($x = $p_x - $i, $y = $p_y + $i; $x <= $p_x + $i; $x++) if ($i > 0 && isset ($mas[$x.'x'.$y])) $mas = add_entrances ($mas, $x, $y);\r\n // zanosim pravyj krug\r\n for ($x = $p_x + $i, $y = $p_y + $i; $y >= $p_y - $i; $y--) if ($i > 0 && isset ($mas[$x.'x'.$y])) $mas = add_entrances ($mas, $x, $y);\r\n // zanosim nihzhnij krug\r\n for ($x = $p_x - $i, $y = $p_y - $i; $x <= $p_x + $i; $x++) if ($i > 0 && isset ($mas[$x.'x'.$y])) $mas = add_entrances ($mas, $x, $y);\r\n // zanosim verhnij krug\r\n for ($x = $p_x - $i, $y = $p_y + $i; $y >= $p_y - $i; $y--) if ($i > 0 && isset ($mas[$x.'x'.$y])) $mas = add_entrances ($mas, $x, $y);\r\n }\r\n return $mas;\r\n }", "function checkIfIsZoneHell($pNbBuilding, $Building) {\n $altarRegionY = Utils::getSinglePostValueInt(REGIONY);\n if($Building->RegionY > $altarRegionY + 1 || $Building->RegionY < $altarRegionY - 1){\n return $pNbBuilding;\n }\n\n for($i = $Building->Y; $i < ($Building->Y + $Building->Height); $i++){\n for($j = 0; $j < 4; $j++){\n for($k = 0; $k < 4 - $j; $k++){\n $posY = Utils::getSinglePostValueInt(Y) - $k;\n\n $regionY = $altarRegionY;\n\n if($posY < -1) {\n $regionY = $altarRegionY - 1;\n $posY += 12;\n }\n\n if(\n (Utils::getSinglePostValueInt(REGIONX) + 1) == $Building->RegionX &&\n $regionY == $Building->RegionY &&\n $j == $Building->X &&\n $posY == $i\n ) {\n return $pNbBuilding + 1;\n }\n\n $posY = Utils::getSinglePostValueInt(Y) + $k;\n\n if($posY > 12) {\n $regionY = $altarRegionY - 1;\n $posY -= 13;\n }\n\n if(\n (Utils::getSinglePostValueInt(REGIONX) + 1) == $Building->RegionX &&\n $regionY == $Building->RegionY &&\n $j == $Building->X &&\n $posY == $i\n ) {\n return $pNbBuilding + 1;\n }\n\n\n }\n }\n }\n\n return $pNbBuilding;\n}", "function getOccupiedSeats($map){\n # Now count the occupied seats:\n $occupiedSeats = 0;\n \n foreach($map as $row){\n $occupiedSeats += substr_count($row,\"#\");\n }\n \n return $occupiedSeats;\n}", "public function getActivePixels()\n {\n $numberOnes = 0;\n\n $imageMatrix = $this->getImageMatrix();\n\n foreach ($imageMatrix as $xId => $x) {\n foreach ($x as $yId => $y) {\n if ($y == 1) {\n $numberOnes++;\n }\n }\n }\n\n return $numberOnes;\n }", "public function countCardsInLocations(): array;", "function findAreasFromImage($fileName, $colors = array(2), $border=0, $cut = false)\n{\n\t$im = imagecreatefromgif($fileName);\n\t$width = imagesx($im); // image width\n\t$height = imagesy($im); // image height\n\t// set starting coordinate default\n\t$startx = 0; \n\t$starty = 0;\n\tif (isset($cut)) {\n\t\tif (array_key_exists('x1',$cut))\n\t\t\t$startx = $cut['x1'];\n\t\tif (array_key_exists('y1',$cut))\n\t\t\t$starty = $cut['y1'];\n\t\tif (array_key_exists('x2',$cut))\n\t\t\t$width = $cut['x2'];\n\t\tif (array_key_exists('y2',$cut))\n\t\t\t$height = $cut['y2'];\n\t}\n\t$i = 0;\n\t$firstLoop = true;\n\t$wasDetected = false;\n\n\t// process the image line for line\n\tforeach ($colors as $color) {\n\t\tfor($y = $starty; $y < $height; $y++) {\n\t\t\tfor($x = $startx; $x < $width; $x++) {\n\t\t\t\t// check if pixel has the correct color\n\t\t\t\tif (imagecolorat($im,$x,$y)==$color) {\n\t\t\t\t\t//stdOut(\"Color $color found at x:$x, y:$y\");\n\t\t\t\t\tif (!$firstLoop) {\n\t\t\t\t\t\t//check if area is already detected\n\t\t\t\t\t\tforeach ($areas as $area) {\n\t\t\t\t\t\t\tif (($x>=$area['x1']) && \n\t\t\t\t\t\t\t\t($x<=$area['x2']) &&\n\t\t\t\t\t\t\t\t($y>=$area['y1']) &&\n\t\t\t\t\t\t\t\t($y<=$area['y2']) &&\n\t\t\t\t\t\t\t\t($color==$area['color'])) {\n\t\t\t\t\t\t\t\t$wasDetected = true;\n\t\t\t\t\t\t\t\tbreak;\n\t\t\t\t\t\t\t} else {\n\t\t\t\t\t\t\t\t$wasDetected = false;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t$tempX = $x;\n\t\t\t\t\t$tempY = $y;\n\t\t\t\t\t// define first coordinate \n\t\t\t\t\tif (!$wasDetected) {\n\t\t\t\t\t\t// stdOut(\"Creating new area with starting coordinates $tempX and $tempY with index $i\");\n\t\t\t\t\t\t$areas[$i]['x1'] = $tempX - $border;\n\t\t\t\t\t\t$areas[$i]['y1'] = $tempY - $border;\n\t\t\t\t\t}\n\t\t\t\t\t// find last correct color of area\n\t\t\t\t\twhile (imagecolorat($im,$tempX,$tempY)==$color) {\n\t\t\t\t\t\t$tempX++;\n\t\t\t\t\t}\n\t\t\t\t\t$tempX--;\n\t\t\t\t\tif (!$wasDetected) {\n\t\t\t\t\t\t// stdOut(\"Last x coordinate for area with index $i is at $tempX\");\n\t\t\t\t\t\t$areas[$i]['x2'] = $tempX + $border;\n\n\t\t\t\t\t}\n\n\t\t\t\t\twhile (imagecolorat($im,$tempX,$tempY)==$color) {\n\t\t\t\t\t\t$tempY++;\n\t\t\t\t\t}\n\t\t\t\t\tif (!$wasDetected) {\n\t\t\t\t\t\t$areas[$i]['y2'] = $tempY + $border;\n\t\t\t\t\t\t$areas[$i]['color'] = $color;\n\t\t\t\t\t\t// stdOut(\"Last y coordinate for area with index $i is at $tempY\");\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t$x = $tempX+1;\n\t\t\t\t\t$firstLoop = false;\n\t\t\t\t\tif (!$wasDetected) {\n\t\t\t\t\t\t$i++;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\timagedestroy($im);\n\treturn $areas;\n}", "function getOverlayIndex($lat, $lon, $z){\r\n\r\n $grid_count = pow(2, $z);\r\n $block_size = 360.0 / $grid_count;\r\n\r\n $x = ( $lon + 180.0 ) / $block_size;\r\n\r\n $lat_mod = ( 180.0 / pi() ) * log( tan( (1.0 / 2.0) * ( $lat * pi() / 180.0 + pi() / 2.0 ) ) );\r\n $y = ( $lat_mod - 180.0 ) / ( -1.0 * $block_size );\r\n\r\n $array = array();\r\n $array[0] = floor($x);\r\n $array[1] = floor($y);\r\n\r\n return $array;\r\n}", "public function expectedWithinBoundaryResults()\n {\n return [\n 'withinBoundary1' => [\n 'dimension' => 5,\n 'coordinate2D' => new Coordinate2D(0, 0),\n 'expectedResult' => true,\n ],\n 'withinBoundary2' => [\n 'dimension' => 5,\n 'coordinate2D' => new Coordinate2D(4, 4),\n 'expectedResult' => true,\n ],\n 'outsideBoundary1' => [\n 'dimension' => 5,\n 'coordinate2D' => new Coordinate2D(-1, 0),\n 'expectedResult' => false,\n ],\n 'outsideBoundary2' => [\n 'dimension' => 5,\n 'coordinate2D' => new Coordinate2D(0, -1),\n 'expectedResult' => false,\n ],\n 'outsideBoundary3' => [\n 'dimension' => 5,\n 'coordinate2D' => new Coordinate2D(5, 4),\n 'expectedResult' => false,\n ],\n 'outsideBoundary4' => [\n 'dimension' => 5,\n 'coordinate2D' => new Coordinate2D(4, 5),\n 'expectedResult' => false,\n ],\n ];\n }", "public static function pointInPolygon($polygon, $point) {\n $numVertices = count($polygon);\n $verticesX = array();\n $verticesY = array();\n $pointX = $point[\"lng\"];\n $pointY = $point[\"lat\"];\n\n foreach ($polygon as $point) {\n $verticesX[] = $point[\"lng\"];\n $verticesY[] = $point[\"lat\"];\n }\n \n $i = $j = $c = 0;\n\n for ($i = 0, $j = $numVertices - 1; $i < $numVertices; $j = $i++) {\n if ((($verticesY[$i] > $pointY != ($verticesY[$j] > $pointY)) &&\n ($pointX < ($verticesX[$j] - $verticesX[$i]) * ($pointY - $verticesY[$i]) / ($verticesY[$j] - $verticesY[$i]) + $verticesX[$i])))\n $c = !$c;\n }\n\n return $c;\n }", "public function countParts() {\n\n foreach($this->product_references->getParts() as $key => $part) {\n $part_counter = 0;\n\n foreach($this->conveyor as $key => $slot) {\n if($slot['part'] == $part) {\n $part_counter++;\n }\n\n }\n\n $result[$part] = $part_counter;\n }\n\n return $result;\n }", "function convolv_rect($x,$y){\n\tglobal $width,$pixeles;\n\t$sumapix=0;\n\tfor($xi=$x-17; $xi<$x+17; $xi++){ // alveolo de 28*28\n\t\tfor($yi=$y-8; $yi<$y+8; $yi++){\n\t\t\t$offsetp = $yi*$width + $xi; // en el arreglo lineal\n\t\t\t$offsetprgb=$offsetp*3; // r,g,b cada pixel son 3 elementos en el arreglo\n\t\t\t$sumapix+=$pixeles[$offsetprgb];\n\t\t}\n\t}\n\treturn $sumapix;\n}" ]
[ "0.6800372", "0.6396412", "0.59824204", "0.5863806", "0.5793816", "0.5696235", "0.56653214", "0.56052095", "0.5576593", "0.5529557", "0.5391259", "0.5361918", "0.5345299", "0.5309399", "0.5298907", "0.5289583", "0.5274575", "0.5251445", "0.5241898", "0.52348495", "0.52288383", "0.5228734", "0.5223455", "0.5185669", "0.51812524", "0.51722527", "0.515012", "0.514262", "0.5136307", "0.5133796" ]
0.67328423
1
Map allows N array arguments and will iterate each simultaneously, up until any of the N arrays runs out of elements. This test exploits that by creating arrays of (10 $n) elements, and shuffling them, so that the shortest array could be anywhere.
public function testMapN() { $r10 = F::repeat(10); $data = array(); foreach (range(0, 10) as $n) { $data[] = $r10(10 - $n); shuffle($data); $rs = F::apply(F::map(F::sum()), $data); $sum = F::sum($rs); /* 1 * (100 - (10 * 0)) => 100 2 * (100 - (10 * 1)) => 180 3 * (100 - (10 * 2)) => 270 4 * (100 - (10 * 3)) => 360 */ $expected = count($data) * (100 - (10 * $n)); $this->assertEquals($expected, $sum, $n); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function array_rand (array $input, $num_req = 1) {}", "function array_map (callable $callback, array $arr1, array $_ = null) {}", "function arrayMap($callback, $arr1)\n{\n $results = array();\n $args = array();\n if (func_num_args() > 2) $args = (array)array_shift(array_slice(func_get_args() , 2));\n foreach ($arr1 as $index => $value) {\n $temp = $args;\n array_unshift($temp, $value);\n if (is_array($value)) {\n array_unshift($temp, $callback);\n $results[$index] = call_user_func_array(array(\n 'self',\n 'arrayMap'\n ) , $temp);\n }\n else {\n $results[$index] = call_user_func_array($callback, $temp);\n }\n }\n\n return $results;\n}", "function repeat(...$args) {\n $repeat = curry(function($f, $n, $x) {\n $acc = [];\n for($i=0; $i < $n; $i++) $acc []= $f($x);\n return $acc;\n });\n\n return call_user_func_array($repeat, $args);\n}", "function map(...$args) {\n $map = curry(function($f, $x) {\n return is_array($x)\n ? array_map($f, $x)\n : $x->map($f);\n });\n\n return call_user_func_array($map, $args);\n}", "function fill(...$args) {\n $fill = curry(function($valF, $n) {\n $res = [];\n for($idx=0; $idx < $n; $idx++) $res []= $valF($idx);\n return $res;\n });\n\n return call_user_func_array($fill, $args);\n}", "function map($callback, $array2 = NULL) {\n $args = func_get_args();\n $params = a($args)->slice(1);\n a($params)->unshift($callback, $this->a);\n return call_user_func_array(\"array_map\", $params);\n }", "function array_mesh($array, $SurveyEvaluationCount) {\r\n\r\n\t\t\t$elements = array_chunk($array, ceil(count($array) / $SurveyEvaluationCount));\r\n\r\n\t\t\t\r\n\t\t\tfor ($j = 0; $j< $SurveyEvaluationCount ; $j++) {\r\n\r\n\r\n\t\t\t\t$items = array_chunk($elements[$j], 5);\r\n\r\n\t\t\t\t // Get the number of arguments being passed\r\n\r\n\r\n\t\t \t\t$numargs = count($items);//19\r\n\r\n\t\t \t\t/*echo \"<pre>\";\r\n\t\t\t\tvar_dump($items);\r\n\r\n\t\t\t\techo \"</pre>\";\r\n\r\n\t\t\t\treturn \"testg\";*/\r\n\r\n\r\n\t\t \t\t // Create an array to hold the combined data\r\n\r\n\t\t\t\t $out = array();\r\n\r\n\t\t\t\t // Loop through each of the arguments\r\n\r\n\r\n\t\t\t\t for ($i = 0; $i < $numargs; $i++) {\r\n\r\n\t\t\t\t $in = $items[$i]; // This will be equal to each array passed as an argument\r\n\r\n\t\t\t\t // Loop through each of the arrays passed as arguments\r\n\r\n\t\t\t\t foreach($in as $key => $value) {\r\n\r\n\t\t\t\t // If the same key exists in the $out array\r\n\r\n\t\t\t\t if(array_key_exists($key, $out)) {\r\n\r\n\t\t\t\t // Sum the values of the common key\r\n\r\n\t\t\t\t $sum = $in[$key] + $out[$key];\r\n\r\n\t\t\t\t // Add the key => value pair to array $out\r\n\r\n\t\t\t\t $out[$key] = $sum;\r\n\r\n\t\t\t\t }else{\r\n\t\t\t\t // Add to $out any key => value pairs in the $in array that did not have a match in $out\r\n\r\n\t\t\t\t $out[$key] = $in[$key];\r\n\r\n\t\t\t\t }\r\n\r\n\t\t\t\t }\r\n\r\n\t\t\t \t}\r\n\t\t\t\t}\r\n\r\n\t\t return $out;\r\n\t\t}", "protected function runmill($n) {\n\t\tfor($a = 1;$a < $n; $a++) {\n\t\t\t$this->beltfunction();\n\t\t}\n\t}", "function array_random_callback(array $array, callable $callback, $num = 1)\n{\n if (!is_callable($callback)) {\n trigger_error('expects parameter 2 to be a valid callback, no array or string given', E_USER_WARNING);\n return null;\n }\n $num = intval($num);\n $count = count($array);\n if ($num <= 0 || $count < $num) {\n trigger_error('Second argument has to be between 1 and the number of elements in the array', E_USER_WARNING);\n return null;\n }\n $result = [];\n foreach (array_keys($array) as $key) {\n $random = $callback();\n if ($random === false) {\n return false;\n }\n if (floatval($random) < (floatval($num) / floatval($count))) {\n $result[] = $key;\n if (!--$num) {\n break;\n }\n }\n --$count;\n }\n return isset($result[1]) ? $result : $result[0];\n}", "function map(array $objects, callable $function)\n{\n return array_map($function, $objects);\n}", "function limit($array, $limite) {\n \n foreach ($array as $key => $value) {\n\n if (!$limite--) break;\n\n yield $key => $value;\n\n }\n\n}", "public function asyncMapN(callable ...$callbacks): Collection;", "public function testArrayMergeWithDynamicNumberOfArrays(array $expected, array ...$arrays): void\n {\n self::assertSame($expected, array_merge(...$arrays));\n }", "function firstN(...$args) {\n $firstN = curry(function($n, $arr) {\n return array_slice($arr, 0, $n, true); // the last true preserves numeric keys\n });\n\n return call_user_func_array($firstN, $args);\n}", "function array_chunk (array $input, $size, $preserve_keys = false) {}", "public function test9in3Process()\n {\n $pc = new ParallelExecutor();\n\n // warm up for more accurate time measurement\n $pc->map(function() { return null; }, range(1, 9), 3);\n\n $start = microtime(true);\n $res = $pc->map(\n function() {\n usleep(100e3);\n },\n range(1, 9),\n 3\n );\n $this->assertEquals(3, round((microtime(true) - $start) * 10));\n $this->assertEquals(9, count($res));\n }", "function array_product (array $array) {}", "function generateRandomNumbers($numberOfElements)\r\n{\r\n $generatedArray = array();\r\n for ($i = 0; $i < $numberOfElements; $i++) {\r\n $generatedArray[] = rand(1, 100);\r\n }\r\n return $generatedArray;\r\n}", "function map(array $array, callable $callback): array\n{\n\treturn \\array_map($callback, $array);\n}", "function shuffle (array &$array) {}", "function shufflin($map, $method = 'direct', $tollerance = 4){\n \n # Define shuffles\n $shuffles = 0;\n\n # Start shuffling\n while(true == true){\n\n # Copy the map to check if it changed\n $origMap = $map;\n\n # Make a move \n $map = takeASeat($map, $method, $tollerance);\n\n # Check maps identical, if so people haven't moved\n if( serialize($map) == serialize($origMap) ){\n break;\n }\n\n # Next...\n $shuffles++;\n\n # Debug\n #echo \"\\n\\nShuffle: $shuffles\\n\";\n #printMap($map);\n\n }\n\n return ['shuffles' => $shuffles, 'map' => $map];\n}", "public static function map($callback)\n {\n if (!is_callable($callback)) {\n throw new \\InvalidArgumentException('$callback isn\\'t callable');\n }\n\n $iter = D::zip(array_slice(func_get_args(), 1));\n\n return static::reduce($iter, function ($result, $item) use ($callback) {\n $result[] = call_user_func_array($callback, $item);\n return $result;\n }, []);\n }", "function array_map_rec($arr, $map_fun, $params)\n{\n if (!is_array($arr)) {\n return $map_fun($arr, $params);\n }\n\n $newArray = array();\n\n foreach ($arr as $key => $value) {\n $newArray[$key] = array_map_rec($value, $map_fun, $params);\n }\n\n return $newArray;\n}", "function permutations($n, $available=array(0,1,2,3,4,5,6,7,8,9)){\n\tif ($n==0){\n\t\treturn array(array());\n\t}\n\t$solns=array();\n\tforeach ($available as $k=>$v){\n\t\t$a = $available;\n\t\tunset($a[$k]);\n\t\t$perms = permutations($n-1,$a);\n\t\tforeach ($perms as $p){\n\t\t\t\t$soln = array_merge(array($v),$p);\n\t\t\t$solns[] = $soln;\n\t\t}\n\t}\n\treturn $solns;\n}", "public function mock(array $array = array());", "function array_copy_n ($a, &$b, $elem_cnt) {\n $a_start = 0;\n $b_start = 0;\n for ($i = 0; $i < $elem_cnt; $i++, $a_start++, $b_start++) {\n $b[$b_start] = $a[$a_start];\n }\n }", "abstract protected function loop($arr);", "function make_randoms() {\r\n\tglobal $number_array;\r\n\tfor ($i=0;$i<10;$i++)\r\n \t$number_array[] = rand(1, 5);\r\n\r\n $len = count($number_array);\r\n for ($j=0;$j<$len;$j++)\r\n \techo $j.\": \".$number_array[$j].\"<br>\"; \r\n }", "function map($iterable, $callback): \\Iterator {\n return new MapIterator(toIterator($iterable), $callback);\n}" ]
[ "0.6113678", "0.588541", "0.5837004", "0.5772971", "0.5617298", "0.5564339", "0.549921", "0.54849803", "0.54364645", "0.53332514", "0.5277088", "0.5192717", "0.5115474", "0.5078468", "0.50313497", "0.5004261", "0.49946007", "0.49814868", "0.4971409", "0.49563593", "0.49284464", "0.49185413", "0.49180192", "0.49037462", "0.49024814", "0.4883926", "0.486423", "0.48519632", "0.48493436", "0.4827638" ]
0.66987437
0
Returns a single object matchinging a specification.
public function matchOne(Specification $specification) { return $this->getQuery($specification)->getSingleResult(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function match(Specification $specification)\n {\n return $this->getQuery($specification)->execute();\n }", "function findOne(array $criteria);", "public function findOneByIdentifier($identifier)\n {\n $identifierName = $this->dataMapper->identifier($this->objectClass);\n\n $criteria = is_string($identifierName)\n ? [$identifierName => $identifier]\n : $identifier;\n\n return $this->findOne($criteria);\n }", "public function findOneBy($params);", "public function find($id,$spec=\"*\")\n {\n $query = \"SELECT {$spec} FROM {$this->table} WHERE id=:id\";\n $stmt = $this->conn->prepare($query);\n $stmt->execute(['id' => $id]); \n $stmt->setFetchMode(\\PDO::FETCH_OBJ);\n $result = $stmt->fetchObject();\n return $result;\n }", "public function findOne()\r\n {\r\n return $this->adapter->findOne();\r\n }", "function find_one($class, $uri) {\n $response = $this->http_get($uri);\n return new $class($this->response_body($response));\n }", "function findOneBy(array $criteria = array());", "public function findOneBy(array $criteria);", "public function findOneBy(array $criteria);", "public function findOneBy(array $criteria);", "public function findOneBy(array $criteria);", "public function findOneBy(array $criteria);", "public function findOneBy(array $criteria);", "public function findOneBy(array $criteria);", "public function findOne()\n {\n // This is a select\n $this->operation = \"SELECT\";\n\n // Set the limit to one\n $this->limit(1);\n\n // Prepare the statement\n $stmt = $this->prepareAndExecute();\n\n // Fetch\n $entity = $this->fetchOne($stmt);\n\n // If empty, we return null\n if ($entity === null) {\n return null;\n }\n\n // Return the entity\n return $entity;\n }", "public function findOneBy(array $criteria, ?array $orderBy = null): ?object;", "public function findOne($criteria)\n {\n }", "public function retrieveById($identifier){\n return $this->model::where(\"id\", $identifier)->first();\n }", "protected function findSingleByWhereClause(array $whereClauseParts) {\n\t\tif (empty($whereClauseParts)) {\n\t\t\tthrow new InvalidArgumentException('The parameter $whereClauseParts must not be empty.', 1331319506);\n\t\t}\n\n\t\treturn $this->getModel($this->retrieveRecord($whereClauseParts));\n\t}", "public function findOneBy(array $criteria)\n {\n return $this->repository->findOneBy($criteria);\n }", "public function findOneBy(array $criteria)\n {\n return $this->repository->findOneBy($criteria);\n }", "public function show($id)\n {\n // Get Specifications\n $Specification = Specification::findOrFail($id);\n\n // Return single Specifications as a resource\n return new SpecificationResource($Specification);\n }", "public function getObject(SearchHit $document);", "function find_one($c,$q,$f=array())\n {\n $c = $this->_d->selectCollection($c);\n $r = $c->findOne($q,$f);\n return $r;\n }", "public static function findOne($filters = null, array $options = array()) {}", "public function find($identifier);", "public function show(Specification $specification)\n {\n //\n }", "public function find($primary);", "public function findOneBy(array $criteria)\n {\n return $this->getRepository()->findOneBy($criteria);\n }" ]
[ "0.62373596", "0.6088582", "0.6079865", "0.60148305", "0.60011125", "0.5903088", "0.58912504", "0.58696127", "0.5868587", "0.5868587", "0.5868587", "0.5868587", "0.5868587", "0.5868587", "0.5868587", "0.5834185", "0.5775376", "0.5770023", "0.5667277", "0.5601904", "0.5576947", "0.5576947", "0.5575814", "0.5568554", "0.5540948", "0.55357367", "0.5534742", "0.5525802", "0.55242157", "0.55193156" ]
0.7613068
0
Transforms a Specification into a Query
private function getQuery(Specification $specification) { if (!$specification->supports($this->getEntityName())) { throw new \InvalidArgumentException("Specification does not support this repository"); } $qb = $this->createQueryBuilder('e'); if ($expr = $specification->match($qb, 'e')) { $qb->where($expr); } $query = $qb->getQuery(); $specification->modifyQuery($query); return $query; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function generateQuery();", "public function asQuery($query);", "public function match(Specification $specification)\n {\n return $this->getQuery($specification)->execute();\n }", "public function build_query();", "public function query() {\n $this->field_alias = $this->real_field;\n if (isset($this->definition['trovequery'])) {\n $this->query->add_where('', $this->definition['trovequery']['arg'], $this->definition['trovequery']['value']);\n }\n }", "abstract public function getQueryBuilder();", "abstract protected function constructQuery();", "public function toDSL()\n {\n return $this->query->toArray();\n }", "public function createQueryBuilder();", "public function getQueryBuilder(Query $query);", "public function toBaseQueryBuilder();", "public function newQuery() : QueryBuilder;", "public function getRawQuery()\n\t{\n\t $query = array();\n\n\t if (count($this->criteria) > 0) {\n foreach ($this->criteria as $propertyName => $criteria) {\n $constraints = $criteria->getConstraints();\n if (isset($constraints) && null !== $criteria->getMode()) {\n $query[$propertyName] = $constraints;\n }\n }\n\t }\n\t \n if (count($this->operator) > 0) {\n foreach ($this->operator as $operatorName => $operator) {\n $query[$operatorName] = $operator;\n }\n }\n\n\t return $query;\n\t}", "public function createQuery() {\n\t\t// TODO: Implement createQuery() method.\n\t}", "function _buildQuery()\n\t{\n\t\treturn $this->_dataset->getQuery();\n\t}", "public function createQuery() {\n $queryArr = array();\n\n $this->addSelect($queryArr);\n $this->addFrom($queryArr);\n $this->addWhere($queryArr);\n $this->addGroupBy($queryArr);\n $this->addSortBy($queryArr);\n $this->addHaving($queryArr);\n\n $this->query = implode(' ', $queryArr) . ';';\n }", "protected abstract function createQueryBuilder();", "public function createQuery(): Query\n {\n return new Query($this->measurementManager, $this->className);\n }", "public function createQuery()\n\t{\n\t}", "public function createQuery()\n\t{\n\t}", "public function createQueryBuilder(): QueryBuilder;", "public function newModelQuery();", "private function createQuery() {\n $this->query = new Query($this->sql, $this->attributesArray);\n }", "public static function query(DiInterface $container = null): CriteriaInterface;", "public function getQueryBuilder(): QueryBuilder;", "public function getQueryBuilder(): QueryBuilder;", "public function testGetQueryParts()\n {\n $this->fixture = new SelectQueryImpl(\n 'PREFIX foo: <http://bar.de/>\n SELECT ?s ?p ?o\n FROM <http://foo/bar/>\n FROM NAMED <http://foo/bar/named>\n WHERE {\n ?s ?p ?o.\n ?s?p?o.\n ?s <http://www.w3.org/2000/01/rdf-schema#label> \"Foo\"^^<http://www.w3.org/2001/XMLSchema#string> .\n ?s ?foo \"val EN\"@en\n FILTER (?o = \"Bar\")\n FILTER (?o > 40)\n FILTER regex(?g, \"r\", \"i\")\n }\n LIMIT 10\n OFFSET 5 ',\n new RdfHelpers()\n );\n\n $queryParts = $this->fixture->getQueryParts();\n\n // Checks the return for the following patterns:\n // FILTER (?o = 'Bar')\n // FILTER (?o > 40)\n // FILTER regex(?g, 'r', 'i')\n $this->assertEquals(\n [\n [\n 'type' => 'expression',\n 'sub_type' => 'relational',\n 'patterns' => [\n [\n 'value' => 'o',\n 'type' => 'var',\n 'operator' => '',\n ],\n [\n 'value' => 'Bar',\n 'type' => 'literal',\n 'sub_type' => 'literal2',\n 'operator' => '',\n ],\n ],\n 'operator' => '=',\n ],\n\n // FILTER (?o > 40)\n [\n 'type' => 'expression',\n 'sub_type' => 'relational',\n 'patterns' => [\n [\n 'value' => 'o',\n 'type' => 'var',\n 'operator' => '',\n ],\n [\n 'value' => '40',\n 'type' => 'literal',\n 'operator' => '',\n 'datatype' => 'http://www.w3.org/2001/XMLSchema#integer',\n ],\n ],\n 'operator' => '>',\n ],\n\n // FILTER regex(?g, 'r', 'i')\n [\n 'args' => [\n [\n 'value' => 'g',\n 'type' => 'var',\n 'operator' => '',\n ],\n [\n 'value' => 'r',\n 'type' => 'literal',\n 'sub_type' => 'literal2',\n 'operator' => '',\n ],\n [\n 'value' => 'i',\n 'type' => 'literal',\n 'sub_type' => 'literal2',\n 'operator' => '',\n ],\n ],\n 'type' => 'built_in_call',\n 'call' => 'regex',\n ],\n ],\n $queryParts['filter_pattern']\n );\n\n // graphs\n $this->assertEquals(['http://foo/bar/'], $queryParts['graphs']);\n\n // named graphs\n $this->assertEquals(['http://foo/bar/named'], $queryParts['named_graphs']);\n\n // triple patterns\n // Checks the return for the following patterns:\n // ?s ?p ?o.\n // ?s?p?o.\n // ?s <http://www.w3.org/2000/01/rdf-schema#label> \\'Foo\\'^^<http://www.w3.org/2001/XMLSchema#string> .\n // ?s ?foo \\'val EN\\'@en .\n $this->assertEquals(\n [\n // ?s ?p ?o.\n [\n 's' => 's',\n 'p' => 'p',\n 'o' => 'o',\n 's_type' => 'var',\n 'p_type' => 'var',\n 'o_type' => 'var',\n 'o_datatype' => '',\n 'o_lang' => '',\n ],\n // ?s?p?o.\n [\n 's' => 's',\n 'p' => 'p',\n 'o' => 'o',\n 's_type' => 'var',\n 'p_type' => 'var',\n 'o_type' => 'var',\n 'o_datatype' => '',\n 'o_lang' => '',\n ],\n // ?s <http://www.w3.org/2000/01/rdf-schema#label>\n // \\'Foo\\'^^<http://www.w3.org/2001/XMLSchema#string> .\n [\n 's' => 's',\n 'p' => 'http://www.w3.org/2000/01/rdf-schema#label',\n 'o' => 'Foo',\n 's_type' => 'var',\n 'p_type' => 'uri',\n 'o_type' => 'typed-literal',\n 'o_datatype' => 'http://www.w3.org/2001/XMLSchema#string',\n 'o_lang' => '',\n ],\n // ?s ?foo \\'val EN\\'@en .\n [\n 's' => 's',\n 'p' => 'foo',\n 'o' => 'val EN',\n 's_type' => 'var',\n 'p_type' => 'var',\n 'o_type' => 'literal',\n 'o_datatype' => '',\n 'o_lang' => 'en',\n ],\n ],\n $queryParts['triple_pattern']\n );\n\n /*\n * limit\n */\n $this->assertEquals('10', $queryParts['limit']);\n\n /*\n * offset\n */\n $this->assertEquals('5', $queryParts['offset']);\n\n /*\n * prefixes\n */\n $this->assertEquals(\n [\n 'rdfs' => 'http://www.w3.org/2000/01/rdf-schema#',\n 'xsd' => 'http://www.w3.org/2001/XMLSchema#',\n ],\n $queryParts['namespaces']\n );\n\n /*\n * prefixes\n */\n $this->assertEquals(['foo' => 'http://bar.de/'], $queryParts['prefixes']);\n\n /*\n * result vars\n */\n $this->assertEquals(['s', 'p', 'o'], $queryParts['result_variables']);\n\n /*\n * variables\n */\n $this->assertEquals(['s', 'p', 'o', 'foo', 'g'], $queryParts['variables']);\n }", "public function createQuery() {\n $parameters = $this->validParams;\n $binds= array();\n $bc=-1;\n\n $qb = $this->em->createQueryBuilder();\n\n // Main query\n // Ordered by case insensitive country names\n $qb\t->select('COUNT(c.name) as cCount', 'c.name', 'LOWER(c.name) as HIDDEN lowerCaseName')\n ->from('Site', 's')\n ->leftJoin('s.scopes', 'sc')\n ->join('s.ngi', 'n')\n ->join('s.country', 'c')\n ->join('s.certificationStatus', 'cs')\n ->join('s.infrastructure', 'i')\n ->groupBy('c.name')\n ->orderBy('lowerCaseName');\n\n\n //If a scope was specified attach the sub query to query by EGI scope\n if(isset($parameters['scope'])) {\n\n /**\n * We are using a simplified scope query here that only supports a single scope\n * instead of using the scope-query builder. When using the scope query builder (SQB)\n * the sub query created by the SQB will count sites with more than one scope and this\n * can cause an error in the results. To combat this you can put a distinct within the\n * select clause: \"COUNT (DISTINCT c.name)\" and this will fix that issue. However we\n * still are not using the SQB as this supports comma seperated lists and scope matching\n * which is not supported by the NGI scope sub query. In conclusion this PI query supports\n * only a single scope.\n */\n\n $sQ = $this->em->createQueryBuilder();\n $sQ ->select('n2')\n ->from('NGI', 'n2')\n ->leftJoin('n2.scopes', 'sqsc2')\n ->where($sQ->expr()->eq('sqsc2.name', '?'.++$bc));\n\n\n $qb ->andWhere($qb->expr()->eq('sc.name', '?'.$bc))\n ->andWhere($qb->expr()->in('n', $sQ->getDQL()));\n\n\n $binds[] = array($bc, $parameters['scope']);\n }\n\n\n /*Pass parameters to the ParameterBuilder and allow it to add relevant where clauses\n * based on set parameters. */\n $parameterBuilder = new ParameterBuilder($parameters, $qb, $this->em, $bc);\n //Get the result of the scope builder\n $qb = $parameterBuilder->getQB();\n $bc = $parameterBuilder->getBindCount();\n //Get the binds and store them in the local bind array - only runs if the returned value is an array\n foreach((array)$parameterBuilder->getBinds() as $bind){\n $binds[] = $bind;\n }\n\n //Bind all variables\n $qb = $this->helpers->bindValuesToQuery($binds, $qb);\n\n\n //echo $qb->getDql(); //for testing\n\n\n\n\n $query[0] = $qb->getQuery();\n\n $qb = $this->em->createQueryBuilder();\n\n // Ordered by case insensitive country names\n $qb\t->select('c.name', 'LOWER(c.name) as HIDDEN lowerCaseName')\n ->from('Country', 'c')\n ->orderBy('lowerCaseName');\n\n $query[1] = $qb->getQuery();\n $this->query = $query;\n return $this->query;\n }", "protected function createQuery()\n {\n return \\PropelQuery::from($this->modelClass);\n }", "public function createQuery(string $phql): QueryInterface\n {\n }" ]
[ "0.5847236", "0.5819054", "0.578613", "0.5602903", "0.5589126", "0.5549785", "0.55366665", "0.5526331", "0.5503784", "0.54697543", "0.5436235", "0.54217374", "0.54136336", "0.5327345", "0.5326603", "0.53255385", "0.5325173", "0.5315949", "0.53024125", "0.53024125", "0.52893496", "0.5218134", "0.52075917", "0.520485", "0.51959926", "0.51959926", "0.5184848", "0.51438737", "0.5136504", "0.5123921" ]
0.6293166
0
$this>temas = Temas::where('materia_id', $this>idMateria)>get();
public function getTemas(){ //$select = 'SELECT temas.idTema,actividadtemas.idActividadTemas, CASE WHEN actividadtemas.temas_id IS NULL THEN 0 ELSE 1 END AS cantAct FROM temas LEFT JOIN actividadtemas ON temas.idTema = actividadtemas.idActividadTemas WHERE temas.materia_id = ?'; //$this->temas = DB::selectRaw($select,[$this->idMateria]); $this->temas = DB::table('temas') ->leftJoin('actividadtemas', 'temas.idTema', '=', 'actividadtemas.temas_id') ->where('temas.materia_id', $this->idMateria) ->select('temas.*','actividadtemas.idActividadTemas',DB::raw('case when actividadtemas.temas_id IS NULL then 0 ELSE 1 END AS cantAct')) ->orderBy('temas.indice', 'asc') ->get(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getMateria(){\n\nreturn $this->materia;\n\n}", "public function materia()\n\t{\n\t\t// belongsTo(RelatedModel, foreignKey = materia_id, keyOnRelatedModel = id)\n\t\treturn $this->belongsTo('App\\Materia','clave_materia','clave');\n\t}", "public function materias(){\n \treturn $this->belongsToMany(App\\Materia);\n }", "public function matiere()\n {\n return $this->belongsTo('App\\Matiere');\n }", "public function matiere()\n {\n return $this->belongsTo('App\\Matiere');\n }", "public function getMateriaux(){\n return $this->materiaux;\n }", "public function PageNoteAbsence($id){\n \n //retourner id de la seance a partir du liste des seances\n $seance = Seance::findOrFail($id);\n $id_matiere = $seance->id_mat;//la matiere de cette seance\n //recuperer la filiere a partir du id_matiere\n $filiere = Matiere::find($id_matiere)->filieremat()->get();\n foreach($filiere as $f){\n\n $id_fil = $f->id;\n $etudiants = Etudiant::where('id_filiere',$id_fil)->get();\n }\n\n return view('Enseignant.NoterAbsence',compact('seance','etudiants','filiere'));\n}", "public function turma ()\n {\n return $this->belongsTo('App\\Models\\Painel\\Turma','id_turma','id');\n }", "public function materia()\n {\n \t// hasMany(RelatedModel, foreignKeyOnRelatedModel = plan_estudio_id, localKey = id)\n \treturn $this->hasMany(Materia::class,'fk_plan');\n }", "public function material()\n {\n return $this->belongsTo(Material::class, 'id_material');\n }", "public function detalle(){\n return $this->belongsTo('App\\Models\\Detalleprestamo');\n }", "public function show($id)\n {\n $grado = Grado::find($id);\n $asignaturas = Asignatura::where('estado',true)->orderBy('nombre')->get();\n $estudiantes = Estudiante::join('matriculas','estudiantes.id','matriculas.f_estudiante')\n ->where('matriculas.f_grado',$id)\n ->orderBy('estudiantes.apellido')\n ->select('estudiantes.*','matriculas.id as id_matricula','matriculas.estado as m_estado')\n ->get();\n $docentes = User::where('estado',true)->orderBy('apellido')->get();\n\n //Proceso para determinar lista de estudiantes que se pueden inscribir en este grado\n //Verificar año lectivo activo\n $a_lectivo = $grado->lectivo;\n $a_lectivo_past = Lectivo::where('anio',($a_lectivo->anio - 1))->first();\n\n if($a_lectivo_past != null){\n //Procesos que ocurren si existe el año anterior\n $no_matricula =Estudiante::orWhereNotExists(\n function ($query) use ($a_lectivo_past){\n $query->select(DB::raw(1))\n ->from('matriculas')\n ->join('grados','matriculas.f_grado','grados.id')\n ->where('grados.f_lectivo',$a_lectivo_past->id)\n ->whereRaw('estudiantes.id = matriculas.f_estudiante');\n }\n )->select('estudiantes.nombre','estudiantes.apellido','estudiantes.nie','estudiantes.id','estudiantes.sexo');\n\n $p_matricula = Estudiante::join('matriculas','estudiantes.id','matriculas.f_estudiante')\n ->join('grados','matriculas.f_grado','grados.id')\n ->where(\n function ($query) use ($grado,$a_lectivo_past){\n $query->where('grados.f_lectivo',$a_lectivo_past->id)\n ->where('grados.numero',($grado->numero -1))\n ->where('matriculas.aprobado',true);\n }\n )->orWhere(\n function ($query) use ($grado,$a_lectivo_past){\n $query->where('grados.f_lectivo',$a_lectivo_past->id)\n ->where('grados.numero',($grado->numero))\n ->where('matriculas.aprobado',false);\n }\n )->union($no_matricula)->select('estudiantes.nombre','estudiantes.apellido','estudiantes.nie','estudiantes.id','estudiantes.sexo')\n ->orderBy('apellido')\n ->get();\n }else{\n $p_matricula = Estudiante::orderBy('apellido')->get(['nombre','apellido','nie','id','sexo']);\n }\n\n return view('Lectivos.show',compact(\n 'grado',\n 'asignaturas',\n 'docentes',\n 'estudiantes',\n 'p_matricula',\n 'a_lectivo_past'\n ));\n }", "public function terapis()\n {\n return $this->belongsTo('App\\TerapisRefleksi', 'no_kartu', 'no_kartu');\n }", "public function indexe()\n {\n\n $datas = DB::table('etudiants')->get();\n $where = DB::table('etudiants')->where('niveau','DIC1')->first(); \n $whereSexe= DB::table('etudiants')->where('sexe','1')->get();\n $wheres= DB::table('etudiants')->where('id','1')->where('departement_id','1')->first();\n\n $whereNiveau = DB::table('etudiants')\n ->where('niveau', '=', 'DIC1')\n ->get();\n\n $max = DB::table('etudiants')->max('id');\n $min = DB::table('etudiants')->min('id');\n\n $whereDept= DB::table('etudiants')->where('departement_id',1)->get(\n );\n return view('student',compact('datas','where','whereSexe','max','min','whereDept','whereNiveau'));\n\n }", "public function murotal_reciter_surah()\n {\n return $this->hasMany(MRS::class, 'id' , 'reciter_id');\n }", "public function matomes()\n {\n return $this->hasMany('App\\Matome');\n }", "public function grupoMateria(){\n return $this->belongsTo(GrupoMateria::class);\n }", "public function mitigacion()\n {\n return $this->belongsTo('App\\Models\\Mitigacion','mitigacion_id','id');\n }", "public function material(){\n return $this->hasMany(Material::class);\n }", "public function mMantenimientos()\n {\n return $this->hasMany('App\\Models\\MMantenimiento','cia_id','id');\n }", "public function Karyawan()\n {\n return $this->belongsTo('\\App\\Models\\Karyawan', 'karyawan_id');\n // $karyawan->where('nama','budi')->first()\n }", "public function solicitudesResibidasCambios()\n{\n $uso=0;\n \n $control= DB::table('bitacoras')->select('motivo','id_proyecto','id_tipocambio')->where('resolucion',$uso)->get();\n \n \n //dd($control);\n return view('oficina.solicitudesCambios',compact('control'));\n}", "public function matricula(){\n return $this->hasMany('App\\Matricula');\n }", "public function index()\n {\n //$t = Gym::find([1, 2, 3]);//выводит строки из таблицы - массив строк, не 404 при отсутствии id=1!!!\n //$t = Gym::findOrFail([2, 3]);//выводит строки из таблицы - массив строк\n // $t = Gym::first(); echo $t;// выведет первую стрку в таблице\n //echo $t[0]->gym_name;//выводит значение из ячейки в первой строке столбца с указанным именем\n\n //$gym = Gym::where('gym_name', 'like', '%o%')->where(function($query){ $query->where([['id', '>', 1], ['gym_num', 'like', '%3%']]); })->get();\n\n // $gym = Gym::whereNotBetween('id', [1, 2])->get()[1]->id;\n // $gym = Gym::whereNull('created_at')->get()[0]->gym_name;\n // $gym = Gym::whereColumn('created_at', '=' , 'updated_at')->get();\n\n //$gym = Gym::whereDate('created_at', '>=', '2017-01-01')->get();\n //$gym = Gym::whereMonth('created_at', '<', '11')->get();\n // $gym = Gym::whereYear('created_at', '<', '2017')->get();\n\n // $gym = Gym::has('equipments')->get();\n\n /*\n $gym = Gym::find(2);\n $equip = $gym->equipments;//вызов обязательно отдельной строкой!!!\n //$t = $equip[0]->equip_name;\n foreach ($equip as $key)\n echo $key->equip_name . \"<br />\";\n */\n\n // $t = Gym::has('equipments', '=', 2)->get();//выводит строку, для которой соответсвует количество записей в др таблице\n /*\n $t = Gym::whereHas('equipments', function ($query){\n $query::whereYear('created_at', 2017);\n }, '>', 2)->get();\n\n $t = Gym::whereHas('equipments')\n ->whereDoesntHave('equipments', function ($q){$q->where(\"created_at\", '<', 2017);})//не работает анонимная функция!!!\n ->get();\n */\n\n //$t = Gym::with('equipments')->get();\n // foreach ($t as $key) echo $key->id . \"<br />\";\n\n\n // $t = Gym::orderBy('gym_name')->get();\n //foreach ($t as $key) echo $key->gym_name . \"<br />\";\n\n // $t = Gym::latest()->get();\n // foreach ($t as $key) echo $key->gym_name . \"<br />\";\n\n //$t = Gym::select([\"gym_name as name\", \"gym_num as num\"])->orderBy('num', 'desc')->addSelect([\"created_at as date\"])->get();\n // foreach ($t as $key) echo $key->name . \" - \" . $key->num . \" - \" . $key->date . \"<br />\";\n\n\n /*\n $t = Gym::select([\"gyms.gym_name as name\", \"gyms.gym_num as num\", \"equipments.equip_serial_number as serial\"])->\n join('equipments', 'gyms.id', '=', 'equipments.id', 'inner')\n ->get();\n */\n\n //$t = Gym::withCount(['equipments' => function ($q){$q->where(\"created_at\", '<', 2017);}])->get();\n //$t = Gym::withCount('equipments')->first()->equipments_count;\n //обязательно ->first() обращаемся к свойству имя-связи_count\n\n\n //$t = Gym::whereYear('created_at', '<' ,2017)->count();\n //$t = Gym::whereYear('created_at', '>' ,2011)->min('gym_num');\n // $t = Gym::whereYear('created_at', '>' ,2011)->max('gym_num');\n // $t = Gym::whereYear('created_at', '>' ,2011)->sum('gym_num');\n //$t = Gym::whereYear('created_at', '>' ,2011)->avg('gym_num');\n\n /*\n $t = Gym::select([\n \"gyms.gym_name as name\",\n \"gyms.gym_num as num\",\n \"equipments.equip_serial_number as serial\",\n DB::raw(\"count(equipments.id) as eq_id_count\")\n ])\n ->join('equipments', 'gyms.id', '=', 'equipments.id', 'inner')\n ->groupBy('gyms.id')\n ->get();\n */\n\n /*\n $t = Gym::select([\n \"gyms.gym_name as name\",\n \"gyms.gym_num as num\",\n \"equipments.equip_serial_number as serial\",\n DB::raw(\"count(equipments.id) as eq_id_count\")\n ])\n ->join('equipments', 'gyms.id', '=', 'equipments.id', 'inner')\n ->groupBy('gyms.id')\n ->havingRaw(\"count(equipments.id) = 1\")\n ->orderByRaw('count(equipments.equip_name)', 'desc')\n ->limit(2)\n ->skip(1)\n ->get();\n\n */\n\n //метод offset можно использовать только в паре с методом limit\n /*\n $t = Gym::select('gym_num')\n ->offset(2)\n ->limit(1)\n ->get();\n */\n\n //значения => ключи - все наоборот)))\n //$t = Gym::pluck('gym_num', 'id');\n //$t = Gym::all()->implode('gym_num', ' | ');\n //$t = Gym::exists();//return 1 or 0\n\n\n //пагинатор предостаавляет возможность добраться до значений пагинации\n //номер страниц берет из строки запроса http://localhost:8000/gym/1?1\n //\n //$pag = Gym::latest('created_at')->simplePaginate();\n //$t = $pag->currentPage();\n\n // $pag = Gym::latest('created_at')->paginate();//+2 метода!\n // $t = $pag->lastItem();\n // $t = $pag->lastPage();\n // $t = $pag->total();\n // $t = $pag->url('3');\n\n\n\n //echo $t;\n\n\n //$t = Gym::all()->implode('gym_num', ' | ');\n //return view('gym', ['all_gym_num' => $t]);\n //return view('gym.index')->with( ['all_gym_num' => $t]);\n\n //$t = Gym::all();\n\n// $equip = EquipmentGym::select([\n// \"equipments.equip_name\"])\n// ->join('gyms', 'equipment_gym.gym_id', '=', 'gyms.id', 'inner')\n// ->join('equipments', 'equipment_gym.equipment_id', '=', 'equipments.id', 'inner')\n// // ->orderBy(\"equipments.id\")\n// ->get();\n\n// $equip = Gym::select([\n// \"equipments.equip_name\"])\n// ->join('equipment_gym', 'gyms.id', '=', 'equipment_gym.gym_id', 'inner')\n// ->join('equipments', 'equipment_gym.equipment_id', '=', 'equipments.id', 'inner')\n// ->orderBy(\"equipments.id\")\n// ->get();\n\n // return view('gym.index')->with( ['all' => $t]);\n // return view('gym.index', ['equip'=> $equip]);\n return view('gym.index');\n\n }", "public function tamanhos()\n {\n return $this->hasMany('App\\Tamanho','id','tamanho_id');\n }", "public function marca() {\n return $this->belongsTo('App\\Marca');\n }", "public function relasi_walas_kelas(){\n return $this->belongsTo(MsKelas::class,'walas_kelas','id');\n }", "public function tandaTangan()\n {\n return $this->hasMany('App\\Models\\TandaTangan');\n }", "public function estudiosuperior(){\n\n return $this->hasMany('App\\EstudioSuperior','id_modalidad','id_modalidad');\n\n }", "public function index(){\n// return $t->field('tname')->where(' tid >1 ')->limit(0,1)->select();\n return T::first(['tid'=>2])->data ;\n\n }" ]
[ "0.67778903", "0.6596385", "0.6574155", "0.6520175", "0.6520175", "0.6389298", "0.6326233", "0.6188808", "0.61822593", "0.6145751", "0.60903853", "0.6071182", "0.60384727", "0.60242313", "0.5994402", "0.5973193", "0.5971555", "0.59522563", "0.59376836", "0.59370637", "0.59145373", "0.5906554", "0.59006983", "0.5888696", "0.5870729", "0.585041", "0.58503777", "0.5847946", "0.58377093", "0.58340335" ]
0.66044444
1
Parse the caller phone number out of the Twilio request
public function getCallerPhoneNumber() { if (!$this->from) { if (isset($_REQUEST['From']) && strlen($_REQUEST['From']) > 0) { $from = $_REQUEST['From']; } elseif (isset($_REQUEST['Caller']) && strlen($_REQUEST['Caller']) > 0) { $from = $_REQUEST['Caller']; } else { throw new Exception("Invalid 'From' parameter"); } $this->from = trim($from); } return $this->from; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getRecipientPhoneNumber()\n {\n if (!$this->to) {\n if (isset($_REQUEST['To']) && strlen($_REQUEST['To']) > 0) {\n $to = $_REQUEST['To'];\n } elseif (isset($_REQUEST['Caller']) && strlen($_REQUEST['Called']) > 0) {\n $to = $_REQUEST['Called'];\n } else {\n throw new Exception(\"Invalid 'To' parameter\");\n }\n $this->to = trim($to);\n }\n\n return $this->to;\n }", "public function getPhoneNumber();", "public function getPhoneNumber()\n {\n return $this->data['phone']['number'];\n }", "public function getPhoneNumber()\n {\n return $this->_fields['PhoneNumber']['FieldValue'];\n }", "public function getPhoneNumberUnwrapped()\n {\n return $this->readWrapperValue(\"phone_number\");\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->PhoneNumber;\n }", "public function getPhoneNumber()\n {\n return $this->PhoneNumber;\n }", "public function getPhoneNumber()\n {\n return isset($this->phone_number) ? $this->phone_number : null;\n }", "public function routeNotificationForTwilio()\n {\n return $this->phone;\n }", "public function getPhoneNumber() {\n return $this->phone_number;\n }", "protected function getFrom()\n {\n return Format::phone($this->getData('from'));\n }", "function return_dial($phone)\r\n{\r\n\r\n\t$number = $phone;\r\n\treturn $number;\r\n}", "private function parseUserPhone()\n {\n if ($this->userCountry == 1) {\n $this->userPhone = \"+38 (\".substr($this->userPhone, 0, -7)\n .\") \".substr($this->userPhone, 3, -4)\n .\"-\".substr($this->userPhone, 6, -2)\n .\"-\".substr($this->userPhone, -2);\n } else {\n $this->userPhone = \"+7 (\"\n .substr($this->userPhone, 0, -7)\n .\") \".substr($this->userPhone, 3, -4)\n .\"-\".substr($this->userPhone, 6, -2)\n .\"-\".substr($this->userPhone, -2);\n }\n }", "public function getPhoneNumber()\n {\n return $this->phoneNumber;\n }", "public function getPhoneNumber()\n {\n return $this->phoneNumber;\n }", "public function getPhoneNumber()\n {\n return $this->phoneNumber;\n }", "public function getPhoneNumber()\n {\n return $this->get(self::PHONE_NUMBER);\n }", "public function getPhoneNumber() {\n return $this->_phoneNumber;\n }", "public function getPhoneNumber() {\n return $this->_phoneNumber;\n }", "private function processPhoneNumber($phoneNumber) {\n if (isset($phoneNumber[\"number\"]) && empty($phoneNumber[\"prefixNumber\"]) && str_starts_with($phoneNumber[\"number\"], \"+358\")) {\n $phoneNumber[\"number\"] = substr($phoneNumber[\"number\"], 4);\n $phoneNumber[\"prefixNumber\"] = \"+358\";\n }\n \n return $phoneNumber;\n }", "public function getPhoneNumberForVerification()\n {\n return $this->mobile_phone_number;\n }", "public function getPhone()\n {\n Yii::trace('getPhone()', 'application.components.RinkfinderWebUser');\n\treturn $this->getState('__phone');\n }", "public function getPhone();", "function get_phone() {\n $ph = str_split(INFO_PHONE);\n $r1 = '';\n $r2 = '';\n $cc = false;\n\n foreach ($ph as $chr) {\n switch ($chr) {\n case '(':\n $cc = true;\n break;\n case ')':\n $cc = false;\n break;\n case '+': case '0': case '1': case '2': case '3':\n case '4': case '5': case '6': case '7': case '8':\n case '9':\n if ($cc) $r1 .= _PLW_NUMBERS[$chr];\n else $r2 .= _PLW_NUMBERS[$chr];\n break;\n default:\n if ($cc) $r1 .= $chr;\n else $r2 .= $chr;\n }\n }\n if (!$r1)\n $r1 = _PLW_NUMBERS['+'] . _PLW_NUMBERS['3'] . _PLW_NUMBERS['7'] . _PLW_NUMBERS['2'];\n\n return array($r1, $r2);\n}" ]
[ "0.64398515", "0.6269197", "0.62553424", "0.60569614", "0.60084665", "0.59873843", "0.59873843", "0.59873843", "0.59873843", "0.59873843", "0.59873843", "0.59722716", "0.59722716", "0.59298414", "0.5929067", "0.59178525", "0.58970386", "0.5894187", "0.5891094", "0.58814096", "0.58814096", "0.58814096", "0.5878921", "0.5836023", "0.5836023", "0.5803058", "0.57968533", "0.5742026", "0.57375795", "0.572743" ]
0.68757945
0
Parse the recipient phone number out of the Twilio request
public function getRecipientPhoneNumber() { if (!$this->to) { if (isset($_REQUEST['To']) && strlen($_REQUEST['To']) > 0) { $to = $_REQUEST['To']; } elseif (isset($_REQUEST['Caller']) && strlen($_REQUEST['Called']) > 0) { $to = $_REQUEST['Called']; } else { throw new Exception("Invalid 'To' parameter"); } $this->to = trim($to); } return $this->to; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getRecipientToken()\n {\n if (preg_match(\"/\\+(\\S+)@.*/\", $this->getTo(), $matches)) {\n return $matches[1];\n }\n }", "public function getPhoneNumber();", "public function getPhoneNumber()\n {\n return $this->data['phone']['number'];\n }", "public function getPhoneNumberUnwrapped()\n {\n return $this->readWrapperValue(\"phone_number\");\n }", "public function getCallerPhoneNumber()\n {\n if (!$this->from) {\n if (isset($_REQUEST['From']) && strlen($_REQUEST['From']) > 0) {\n $from = $_REQUEST['From'];\n } elseif (isset($_REQUEST['Caller']) && strlen($_REQUEST['Caller']) > 0) {\n $from = $_REQUEST['Caller'];\n } else {\n throw new Exception(\"Invalid 'From' parameter\");\n }\n $this->from = trim($from);\n }\n\n return $this->from;\n }", "public function routeNotificationForTwilio()\n {\n return $this->phone;\n }", "public function getPhoneNumber()\n {\n return $this->_fields['PhoneNumber']['FieldValue'];\n }", "private function parseUserPhone()\n {\n if ($this->userCountry == 1) {\n $this->userPhone = \"+38 (\".substr($this->userPhone, 0, -7)\n .\") \".substr($this->userPhone, 3, -4)\n .\"-\".substr($this->userPhone, 6, -2)\n .\"-\".substr($this->userPhone, -2);\n } else {\n $this->userPhone = \"+7 (\"\n .substr($this->userPhone, 0, -7)\n .\") \".substr($this->userPhone, 3, -4)\n .\"-\".substr($this->userPhone, 6, -2)\n .\"-\".substr($this->userPhone, -2);\n }\n }", "public function getPhoneNumber()\n {\n return $this->PhoneNumber;\n }", "public function getPhoneNumber()\n {\n return $this->PhoneNumber;\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return isset($this->phone_number) ? $this->phone_number : null;\n }", "public function getPhoneNumber()\n {\n return $this->get(self::PHONE_NUMBER);\n }", "public function getPhoneNumberForVerification()\n {\n return $this->mobile_phone_number;\n }", "protected function getFrom()\n {\n return Format::phone($this->getData('from'));\n }", "function getContact() {\n return explode(\":\", $this->data['From'])[1];\n }", "public function getPhoneNumber() {\n return $this->phone_number;\n }", "public function getPhoneNumber()\n {\n return $this->phoneNumber;\n }", "public function getPhoneNumber()\n {\n return $this->phoneNumber;\n }", "public function getPhoneNumber()\n {\n return $this->phoneNumber;\n }", "public function get_recipient_ID() {\n\t\treturn $this->get_data( 'user_id' );\n\t}", "public function getPhoneNumber() {\n return $this->_phoneNumber;\n }", "public function getPhoneNumber() {\n return $this->_phoneNumber;\n }", "function ExtractNumber($from){\n\treturn str_replace(array(\"@s.whatsapp.net\",\"@g.us\"), \"\", $from);\n}", "public function getPhone()\n {\n return $this->attributes->mayHave('phone')->asString();\n }" ]
[ "0.6189578", "0.60043335", "0.5897471", "0.5878224", "0.58026946", "0.5796642", "0.57706875", "0.56525236", "0.56508154", "0.56508154", "0.5591151", "0.5591151", "0.5591151", "0.5591151", "0.5591151", "0.5591151", "0.55646586", "0.555852", "0.5543907", "0.55351466", "0.55203307", "0.551821", "0.5483773", "0.5483773", "0.5483773", "0.5463631", "0.5458891", "0.5458891", "0.5432983", "0.5402726" ]
0.69723207
0
add a new writer to the collection
public function addWriter(WriterInterface $writer): void { $this->writers[] = $writer; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function addWriter($writer = null)\r\n\t{\r\n\t\tif (!$writer instanceof Hush_Debug_Writer) {\r\n\t\t\trequire_once 'Hush/Debug/Exception.php';\r\n\t\t\tthrow new Hush_Debug_Exception('Writer must be an instance of Hush_Debug_Writer');\r\n\t\t}\r\n\t\t\r\n\t\t// escape repeated writer class\r\n\t\t$writer_class_name = get_class($writer);\r\n\t\tif (!array_key_exists($writer_class_name , $this->_writers)) {\r\n\t\t\t$this->_writers[$writer_class_name] = $writer;\r\n\t\t}\r\n\t}", "public function addWriter(Log\\Writer $writer)\n {\n $this->_writers[] = $writer;\n return $this;\n }", "public function addWriter(WriterInterface $oWriter){\r\n\t\t\t\r\n\t\t\t$this->aWriters[] = $oWriter;\r\n\t\t\t\r\n\t\t\treturn $this;\r\n\t\t\t\r\n\t\t}", "public function writer()\n {\n return $this->writer;\n }", "public function setWriter($writer)\n {\n $this->writer = $writer;\n return $this;\n }", "public function addLogWriter(WriterInterface $writer)\n {\n $this->writers[] = $writer;\n return $this;\n }", "public function getWriter()\n {\n return $this->writer;\n }", "public function getWriter()\n {\n return $this->writer;\n }", "public function __invoke()\n {\n $this->collection['twig'] = $this->twigWriter;\n }", "public function add() {\n\t\t$this->_add ();\n\t}", "abstract protected function addRowToWriter(Row $row);", "protected function add()\n {\n // TODO: Implement add() method.\n }", "public function getWriter() {\n return $this->writer;\n }", "abstract protected function openWriter();", "public function write ()\r\n\t{\r\n\t\tif (!count($this->_writers)) {\r\n\t\t\trequire_once 'Hush/Debug/Exception.php';\r\n\t\t\tthrow new Hush_Debug_Exception('Please specify a debug writer first');\r\n\t\t}\r\n\t\t\r\n // send to each writer\r\n foreach ($this->_writers as $writer) {\r\n $writer->write(true);\r\n }\r\n\t}", "public function write_entries() {\n }", "public function add(){}", "public function testCreateCollection()\n {\n $logger = $this->createMock(\\Monolog\\Logger::class);\n $dir = vfsStream::url(self::STORAGE_DIR);\n\n self::assertInstanceOf(\\Browscap\\Writer\\WriterCollection::class, $this->object->createCollection($logger, $dir));\n }", "public function __invoke()\n {\n $this->collection['Graph'] = $this->graphWriter;\n }", "public function add() {\n\n\t}", "protected function initNewWriterWhenNeeded()\n {\n if (!$this->writer) {\n $this->writer = app('excel.writer');\n $this->writer->injectExcel($this->excel, false);\n $this->writer->setFileName($this->getFileName());\n $this->writer->setTitle($this->getTitle());\n }\n }", "abstract public function getPrimaryWriter();", "public function add()\n\t{\n\t}", "public function add()\n\t{\n\n\t}", "public function add()\n\t{\n\n\t}", "protected function setWriter($writer)\n {\n $this->writer = $writer;\n\n return $this;\n }", "abstract protected function closeWriter();", "public function addDocument( $doc ) {\n\n\t\tarray_push( $this->docs, $doc );\n\n\t}", "protected function bootWriter(Writer $writer): void {}", "public function getWriter(): Writer\n {\n return new Writer($this->settings);\n }" ]
[ "0.66469157", "0.63521844", "0.6052972", "0.56455433", "0.55767626", "0.55035555", "0.5371546", "0.5371546", "0.5340928", "0.5339072", "0.5315669", "0.53073424", "0.5294764", "0.5223267", "0.5174356", "0.5124913", "0.5101815", "0.50866044", "0.5068588", "0.5053802", "0.500525", "0.50006354", "0.499706", "0.4996942", "0.4996942", "0.4979434", "0.49758163", "0.49700972", "0.49538553", "0.49433488" ]
0.6565166
1
Generates a start sequence for the output file
public function fileStart(): void { foreach ($this->writers as $writer) { $writer->fileStart(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function generate()\n {\n $this->createDirectory();\n $this->formatFile();\n }", "public function generate() {\n $this->output('===Master Generator Initiated===');\n $this->generateTables();\n $this->generateRowsets();\n $this->generateRows();\n $this->generateForms();\n $this->generateConstants();\n $this->generateSQLDumps();\n $this->generateTablesSQL();\n $this->generateTriggersSQL();\n $this->output('===Master Generator Complete===');\n }", "public function initializeSequence( $startNumber );", "public function OutputStart() {\n if (!Request::check('support', 'download')) return;\n\n $file = sprintf('%s-%s.htm', $_SERVER['HTTP_HOST'], date('YmdHi'));\n\n $style = file_get_contents('module/support/layout/style.css');\n if (preg_match('~/\\* download >> \\*/(.*?)/\\* << download \\*/~si', $style, $args))\n $style = $args[1];\n\n // parse own template\n $body = $this->Render('content.index', TplData::getAll());\n // extract infos to download\n if (preg_match('~<!-- download >> -->(.*)<!-- << download -->~si', $body, $args))\n $body = $args[1];\n\n $page = '<html><head><title>'.$file.'</title>'\n .'<style type=\"text/css\">'.$style.'</style>'\n .'<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">'\n .'</head><body>'.$body.'</body></html>';\n\n // send as HTML file\n Header('Content-Type: text/html');\n Header('Content-Disposition: attachment; filename=\"'.$file.'\"');\n Header('Content-Length: '.strlen($page));\n die($page);\n }", "private function generateSequence(){\n\t\t$sequence = array(); \n\t\t$sequence[] = $this->blocks[0]; //Always start the tests with\n\t\tunset($this->blocks[0]);\n\t\tshuffle($this->blocks); //Shuffle the order of the blocks \n\t\t$this->blocks = array_merge($sequence,$this->blocks); \n\t}", "public function generate() {\n $this->generator->generate();\n }", "public function generate()\n\t{\n\t\t// Generate documentation\n\t\t$generator = new \\Hubzero\\Api\\Doc\\Generator();\n\t\t$documentation = $generator->output('array', true);\n\n\t\t// Output error messages\n\t\tforeach ($documentation['errors'] as $error)\n\t\t{\n\t\t\t$this->output->addLine($error, 'error');\n\t\t}\n\n\t\t// Successfully processed the following files\n\t\tforeach ($documentation['files'] as $file)\n\t\t{\n\t\t\t$this->output->addLine('Successfully processed the file: ' . $file, 'success');\n\t\t}\n\t}", "public function generate () {\n\t}", "public function initFile(string $fileName) : iGenerator;", "public function generateExport()\n {\n }", "protected function updateSeq() {\n\t\tfile_put_contents( 'daisy.cmd.seq', serialize($this->cmd_seq) );\n\t}", "public function generate()\n {\n $this->beforeGeneration();\n\n $this->config->getLogger()->startBreak('Class Generation');\n foreach ($this->XSDMap as $fhirElementName => $mapEntry) {\n $this->config->getLogger()->debug(\"Generating class for element {$fhirElementName}...\");\n $classTemplate = ClassGenerator::buildFHIRElementClassTemplate($this->config, $this->XSDMap, $mapEntry);\n\n FileUtils::createDirsFromNS($classTemplate->getNamespace(), $this->config);\n\n // Generate class file\n MethodGenerator::implementConstructor($this->config, $classTemplate);\n $classTemplate->writeToFile($this->config->getOutputPath());\n\n $this->mapTemplate->addEntry($classTemplate);\n $this->autoloadMap->addPHPFHIRClassEntry($classTemplate);\n $this->config->getLogger()->debug(\"{$fhirElementName} completed.\");\n }\n $this->config->getLogger()->endBreak('Class Generation');\n\n $this->afterGeneration();\n }", "public abstract function generate();", "public abstract function generate();", "public function __construct($start)\n {\n $this->sequence = $start;\n }", "abstract public function generate();", "abstract public function generate();", "abstract public function generate();", "public function start()\n {\n echo \"The conversion start\\n\";\n }", "public function generate() {\n\t\tforeach ( $this->all_targets as $target ) {\n\t\t\tprint(\"\\n\\n##### Building target: $target\\n\\n\");\n\t\t\t$builder = $this->builders[$target];\n\t\t\t$modules = isset($this->build_targets[$target]) ? $this->build_targets[$target] : array();\n\t\t\t$generated_files = 0;\n\t\t\tforeach ( $modules as $moduledir => $confdir ) {\n\t\t\t\tif( !$builder->get_run_always() && !is_dir($moduledir . DIRECTORY_SEPARATOR . 'src' . DIRECTORY_SEPARATOR . $target) )\n\t\t\t\t\tcontinue;\n\t\t\t\t$generated_files += count($builder->generate( $moduledir, $confdir ));\n\t\t\t}\n\t\t\tif(!$generated_files) {\n\t\t\t\techo \" - Nothing to do\\n\";\n\t\t\t}\n\t\t}\n\t}", "public function generate();", "public function generate();", "public function generate();", "public function generate();", "public function generate();", "public function generate();", "public function generate();", "function startDoc()\r\n {\r\n $this->output.=\"Parsing started\\n\";\r\n }", "function writeStartText($renameTags, $f){\n if(isset($renameTags->startTemplate->insertBefore)){\n foreach ($renameTags->startTemplate->insertBefore as $festTag){\n $textStartTag = \"\\n\".$festTag;\n fwrite($f, $textStartTag);\n }\n }\n}", "function start() {\n\t\t\n\tob_start();\t\n\t\n\t}" ]
[ "0.57648736", "0.55140525", "0.5308724", "0.52977246", "0.5286759", "0.52636635", "0.52374786", "0.5229476", "0.5178248", "0.5105173", "0.5094876", "0.50784665", "0.504482", "0.504482", "0.503286", "0.5023789", "0.5023789", "0.5023789", "0.50120914", "0.5005713", "0.50031495", "0.50031495", "0.50031495", "0.50031495", "0.50031495", "0.50031495", "0.50031495", "0.4998378", "0.49940005", "0.4961899" ]
0.61713594
0
Generates a end sequence for the output file
public function fileEnd(): void { foreach ($this->writers as $writer) { $writer->fileEnd(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function finishFile()\n {\n if ($this->writer !== null) {\n $this->writer->endElement();\n $this->writer->endDocument();\n $this->flush(true);\n }\n }", "abstract public function end();", "abstract public function end();", "function end() {\n }", "public function end(){}", "public function endIteration()\n {\n $this->output .= '</ul>';\n }", "private function end()\n {\n }", "public function writeEnd($kind);", "function endDoc()\r\n {\r\n $this->output.=\"Parsing finished\\n\";\r\n }", "public static function End()\r\n {\r\n $data = ob_get_contents();\r\n ob_end_flush();\r\n \r\n self::write(self::$group, self::$id, self::$ttl, $data);\r\n }", "public function end(): void\n {\n $lastPos = $this->count() - 1;\n $this->seek($lastPos);\n }", "public function end();", "public function end();", "private function endSitemap()\n {\n $this->writer->endDocument();\n }", "private function writeUUFooter()\n {\n $this->stream->write(\"\\r\\n`\\r\\nend\\r\\n\");\n }", "public function end() : void;", "public function eof();", "public function eof();", "public function end() {\n\t}", "protected function ending()\n {\n return $this->dots.' '.$this->range($this->last - 1, $this->last);\n }", "public function testFileEnd(): void\n {\n $this->object->fileEnd();\n static::assertSame('', file_get_contents($this->file));\n }", "public function endClass()\n {\n $source = '';\n $source .= sprintf(\"})%s%s\", self::LBR_SM, self::LBR_SM);\n\n $this->source.=$source;\n }", "public function endBlock()\n {\n return Recorder::end();\n }", "private function end()\n {\n fclose($this->stream);\n exit;\n }", "protected function compileEndrepeater()\n {\n return '<?php } ?>';\n }", "public function endPageOutputBuffering()\n {\n ob_end_flush();\n }", "public function eof()\n {\n }", "public function getLastOutput();", "protected function writeFooter() {\n\t\t$this->file->write(pack('a512', ''));\n\t}", "private function ending()\n\t{\n\t\treturn '<span class=\"dots\">...</span>'.$this->range($this->last_page - 1, $this->last_page);\n\t}" ]
[ "0.62481815", "0.5866443", "0.5866443", "0.5728028", "0.5656701", "0.5633488", "0.5570681", "0.5552019", "0.5548046", "0.5535675", "0.5509217", "0.5486897", "0.5486897", "0.5448144", "0.54406464", "0.5433187", "0.5404174", "0.5404174", "0.53980166", "0.53876424", "0.5350208", "0.53180176", "0.53160965", "0.531556", "0.5314127", "0.5304135", "0.5297404", "0.52678293", "0.52671397", "0.526628" ]
0.63159287
0
renders the footer for a division
public function renderDivisionFooter(): void { foreach ($this->writers as $writer) { $writer->renderDivisionFooter(); } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function renderFooter ()\n {\n // $this->mobfoot->run();\n \n //else\n $this->footer->run();\n \n $this->counter = 2;\n }", "protected function renderFooter() {\r\n\t\tif ($this->footer !== null) {\r\n\t\t\techo \"<div class=\\\"{$this->footerCssClass}\\\">\\n\";\r\n\t\t\techo $this->footer . \"\\n\";\r\n\t\t\techo \"</div>\\n\";\r\n\t\t}\r\n\t}", "function footer(){\n $this->getFooter();\n $tmp = [];\n foreach($this->footer_elements as $key => $value){\n $tmp[] = $value['text'];\n }\n $this->footer = '<div id=\"footer\" class=\"large-12 columns\">';\n $this->footer .= $this->div_elements($tmp);\n $this->footer .= '</div>';\n echo $this->footer;\n }", "function footer() {\n\t\t\techo '</div>';\n\t\t}", "public function composeFooter()\n {\n }", "function footer() {\n global $c_version, $c_footer_address;\n\n if (isset($pgconn)) {\n pg_close($pgconn);\n }\n echo \"</div>\\n\";\n echo \"<div id=\\\"pageFooter\\\">\\n\";\n echo \"<div class='pageFooterLeft'><b>SURFids version: $c_version</b> | <a href='http://ids.surfnet.nl' target='_blank'>http://ids.surfnet.nl</a></div>\";\n echo \"<div class='pageFooterRight'>$c_footer_address</div>\";\n echo \"</div>\\n\";\n echo \"<div class='clearer'></div>\\n\";\n echo \"</div>\\n\";\n}", "public function displayFooter()\n\t{\n\t}", "public static function footer() {\n ?>\n </div>\n </body>\n </html>\n <?php\n }", "public function footer() {\n global $CFG, $USER;\n\n $output = $this->container_end_all(true);\n\n $footer = $this->opencontainers->pop('header/footer');\n\n // Provide some performance info if required\n $performanceinfo = '';\n if (defined('MDL_PERF') || (!empty($CFG->perfdebug) and $CFG->perfdebug > 7)) {\n $perf = get_performance_info();\n if (defined('MDL_PERFTOLOG') && !function_exists('register_shutdown_function')) {\n error_log(\"PERF: \" . $perf['txt']);\n }\n if (defined('MDL_PERFTOFOOT') || debugging() || $CFG->perfdebug > 7) {\n $performanceinfo = essential_performance_output($perf, $this->page->theme->settings->perfinfo);\n }\n }\n\n $footer = str_replace($this->unique_performance_info_token, $performanceinfo, $footer);\n\n $footer = str_replace($this->unique_end_html_token, $this->page->requires->get_end_code(), $footer);\n\n $this->page->set_state(moodle_page::STATE_DONE);\n\n if(!empty($this->page->theme->settings->persistentedit) && property_exists($USER, 'editing') && $USER->editing && !$this->really_editing) {\n $USER->editing = false;\n }\n\n return $output . $footer;\n }", "public function render_footer_content() {\n\t\t$content_type = get_theme_mod( 'neve_footer_content_type', 'text' );\n\t\tif ( $content_type === 'none' ) {\n\t\t\treturn;\n\t\t}\n\n\t\techo '<div class=\"row nv-footer-content\">';\n\t\techo '<div class=\"col-12\">';\n\n\t\tswitch ( $content_type ) {\n\t\t\tcase 'text':\n\t\t\t\t$this->render_content_text();\n\t\t\t\tbreak;\n\t\t\tcase 'footer_menu':\n\t\t\t\t$this->render_content_menu();\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t}\n\n\t\techo '</div>';\n\t\techo '</div>';\n\t}", "public static function footer() {\n\t\t\t?>\n\t<div class=\"footer\">\n\t\t<div class=\"container\">\n\t\t\t<span class=\"left\">\n\t\t\t\tSite Created by <a target=\"_BLANK\" href=\"http://www.brethudson.com\">Bret Hudson</a>. &copy; <?php echo date(\"Y\"); ?> Fluency Games. All rights reserved.\n\t\t\t</span>\n\t\t\t<span class=\"right\">\n\t\t\t\t<a href=\"http://fluency-games.com/privacy-policy/\">Privacy Policy</a> | \n\t\t\t\t<a href=\"http://fluency-games.com/terms-of-use/\">Terms of Use</a> | \n\t\t\t\t<a href=\"http://fluency-games.com/contactus/\">Contact Us</a> |\n\t\t\t\t<?php echo ' ' . Config::get('version'); ?>\n\t\t\t</span>\n\t\t\t<div class=\"clear\"></div>\n\t\t</div>\n\t</div>\n\n\t\t\t<?php\n\t\t}", "function icsaio_footer() {\n\t\techo '</div>';\n\t}", "public function Footer() {\n $this->imprime($this->format['footer']);\n }", "public function Footer() {\n // Position at 27 mm from bottom\n $this->SetY(-15);\n // Set font\n $this->SetFont('helvetica', 'I', 8);\n // Page number\n// $this->Cell(0, 10, 'Página '.$this->getAliasNumPage().'/'.$this->getAliasNbPages(), 0, false, 'C', 0, '', 0, false, 'T', 'M');\n \n $footer = '<div align=\"center\"><span style=\"color: red;font-size: 1.3em;font-weight: bold;font-variant: small-caps;\">'.$this->footerText.'</span><br><span>'.$this->trans('pequiven_seip.pdf.pageFooter', array('%page%' => $this->getAliasNumPage(),'%totalPage%' => $this->getAliasNbPages()),'PequivenSEIPBundle').'</span></div>';\n $this->writeHTML($footer);\n \n //Línea HR\n $lineRed = array('width' => 1.0, 'cap' => 'butt', 'join' => 'miter', 'dash' => 0, 'color' => array(255, 0, 0));\n if($this->printLineFooter === true){\n $this->Line(0, 190, 300, 190, $lineRed);\n }\n\n }", "public static function footer(){\t?>\r\n\t\t\t<footer>\r\n\t\t\t\t<p>(c)2017 Web programada por: Jose Montes & Juan Javier Ligero Rambla</p>\r\n\t\t\t</footer>\r\n\t\t<?php }", "public function footer() {\n global $CFG, $DB, $USER;\n\n $output = $this->container_end_all(true);\n\n $footer = $this->opencontainers->pop('header/footer');\n\n if (debugging() and $DB and $DB->is_transaction_started()) {\n // TODO: MDL-20625 print warning - transaction will be rolled back\n }\n\n // Provide some performance info if required\n $performanceinfo = '';\n if (defined('MDL_PERF') || (!empty($CFG->perfdebug) and $CFG->perfdebug > 7)) {\n $perf = get_performance_info();\n if (defined('MDL_PERFTOLOG') && !function_exists('register_shutdown_function')) {\n error_log(\"PERF: \" . $perf['txt']);\n }\n if (defined('MDL_PERFTOFOOT') || debugging() || $CFG->perfdebug > 7) {\n $performanceinfo = moodlebook_performance_output($perf);\n }\n }\n\n $perftoken = (property_exists($this, \"unique_performance_info_token\"))?$this->unique_performance_info_token:self::PERFORMANCE_INFO_TOKEN;\n $endhtmltoken = (property_exists($this, \"unique_end_html_token\"))?$this->unique_end_html_token:self::END_HTML_TOKEN;\n\n $footer = str_replace($perftoken, $performanceinfo, $footer);\n\n $footer = str_replace($endhtmltoken, $this->page->requires->get_end_code(), $footer);\n\n $this->page->set_state(moodle_page::STATE_DONE);\n\n if(!empty($this->page->theme->settings->persistentedit) && property_exists($USER, 'editing') && $USER->editing && !$this->really_editing) {\n $USER->editing = false;\n }\n\n return $output . $footer;\n }", "public static function displayFooter() {\n\t\t\tinclude_once DIR_VIEWS.'footer.php';\n\t\t\tinclude_once DIR_VIEWS.'sk_bottom.php';\n\t\t}", "public function footer()\n\t{\n\t\trequire('views/partial/footer.php');\n\t}", "function Footer()\r\n\t{\r\n\t\t$this->SetLineWidth(0.01);\r\n\t\t$this->Line($this->lMargin, 281.2, 210 - $this->rMargin, 281.2);\r\n\t\t$this->SetY(-10);\r\n\t\t//Page number\r\n\t\t$this->Cell(0,3,'Page '.$this->PageNo().'/{nb}',0,0,'C');\r\n\t}", "function renderFooter(&$conn) {\n $lastUpdate = date(timeFormat, time());\n print <<< TopDiv\n <div id=\"footer\">\n <div id=\"footerData\">\n <div class=\"footer\">Page Updated: $lastUpdate</div>\n\nTopDiv;\n\n // Attempt to retrieve and render remaining footer data\n if($footer = mysqli_fetch_assoc(mysqli_query($conn, \"SELECT * FROM Footer\"))) {\n $dbupdate = date(timeFormat, $footer[\"LastUpdate\"]);\n $difficulty = $footer[\"Difficulty\"];\n $poolhashrate = $footer[\"PoolHashrate\"];\n\n print <<< MiddleDivs\n <div class=\"footer\">Database Updated: $dbupdate</div>\n <div class=\"footer\">Current Difficulty: $difficulty Th</div>\n <div class=\"footer\">Pool Hashrate: $poolhashrate Th/s</div>\n\nMiddleDivs;\n }\n\n // Close container divs\n print <<< BottomDiv\n </div>\n </div>\n\nBottomDiv;\n }", "public function footer()\n {\n return $this->renderBlockContent('\\Platform\\Layout\\Block\\SiteFooterBlock', []);\n }", "protected function footer() {\n echo $this->output->footer();\n }", "function slideshow_footer($general) {\n $footer = \"\";\n $footer .= html_writer::end_tag('div'); // Div #homepage-Carousel.\n $footer .= html_writer::end_tag('div'); // Div .homepage-Carousel.\n return $footer;\n}", "public function footer()\n\t{\n\t\t$this->save();\n\t\treturn $this->getView()->render();\n\t}", "function layout_getBodyFooter()\n\t{\n\t\techo '</div>\n\t\t\t </div>\n\t\t\t <div id=\"footer\">\n\t\t\t\t<p> Based on a CSS style by: <a href=\"http://www.styleshout.com/\">styleshout</a> </p>\n\t\t\t </div>\n\t\t\t</div>\n\t\t</body>\n\t\t</html>';\n\t}", "public function empty_footer_region() {\n\t\tif ( TF_Model::is_template_editable() ) {\n\t\t\techo sprintf( '<p>%s</p>', __('To auto display a footer here, create a new Template Part and name it \"Footer\".', 'themify-flow') );\n\t\t}\n\t}", "public static function footer(){\n include_once('core/views/footer/footer.php');\n }", "public function renderAllDivisionsFooter(): void\n {\n foreach ($this->writers as $writer) {\n $writer->renderAllDivisionsFooter();\n }\n }", "function Footer()\n {\n $this->SetY(-35 );\n // Select Arial italic 8\n $this->SetFont('Arial','IB',6);\n \n // Print centered page number\n $this->Cell(10,3,'',0,0,'C');\n $this->Cell(0,3,$this->gerer(\"Conformément aux texte en vigueur, votre echantillons pourra être éliminé et/ou transféré à des fins scientifiques ou des contrôles de qualité, hors génétique humaine, \"),0,1,'C');\n $this->Cell(10,3,'',0,0,'C');\n $this->Cell(0,3,$this->gerer(\" de manière anonyme et respectant le secret medical, sauf opposition formulée auprès de notre secretariat médical\"),0,1,'C');\n $this->SetDrawColor(0,72,0); \n $this->SetLineWidth(0.5); \n $this->Line(20,268, 190, 268);\n\n $this->Ln(5); \n $this->Cell(186,5,'Page '.$this->PageNo(),0,0,'R');\n }", "public function render()\n {\n return view('components.footer');\n }" ]
[ "0.7763289", "0.75397897", "0.7528296", "0.7381855", "0.72998804", "0.7276348", "0.7234426", "0.72065836", "0.7168366", "0.7141166", "0.7095641", "0.7075991", "0.70440316", "0.6950492", "0.69491047", "0.6936281", "0.6902395", "0.6893304", "0.6884794", "0.6867493", "0.684142", "0.6832946", "0.68278927", "0.68134385", "0.6808504", "0.6803166", "0.6792728", "0.6792044", "0.67847985", "0.67829454" ]
0.7551578
1
Copies all routers not marked as hidden from a source to a destination collection. If the destination collection is not specifies the new instance of RouteCollection will be used.
public static function cloneWithoutHidden(RouteCollection $src, RouteCollection $dest = null) { if (null === $dest) { $dest = new RouteCollection(); } $routes = $src->all(); foreach ($routes as $name => $route) { if (!$route->getOption('hidden')) { $dest->add($name, $route); } } $resources = $src->getResources(); foreach ($resources as $resource) { $dest->addResource($resource); } return $dest; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function prepareRoutes()\n {\n $routeCollector = function(RouteCollector $router) {\n foreach($this->routes as $route) {\n if(is_string($route['method'])) {\n $method = trim(strtoupper($route['method']));\n } elseif(is_array($route['method'])) {\n $method = array_map(function($value) {\n return trim(strtoupper($value));\n }, $route['method']);\n } else {\n throw new \\InvalidArgumentException(\n 'Invalid method'\n );\n }\n \n if($method === 'ALL') {\n $method = [\n 'GET', 'POST', 'PUT', 'DELETE'\n ];\n }\n \n if(strlen($route['path']) > 1) {\n $route['path'] = rtrim($route['path'], '/');\n }\n \n $router->addRoute($method, $route['path'], $route['action']);\n }\n };\n \n return $routeCollector;\n }", "public function loadRouteCollection($source = null)\n {\n $collection = new RouteCollection();\n\n $routes = $this->loadResource($source);\n\n foreach ($routes as $name => $route) {\n $collection->add($name, $this->parseRoute($route));\n }\n\n return $collection;\n }", "public function getDirectDestinations(): DirectDestinations\n {\n return $this->directDestinations;\n }", "function copy(): Collection\n {\n return new static($this->mapFields);\n }", "public function testRouteCollectionCleansUpOverwrittenRoutes()\n {\n $routeA = new Route('GET', 'product', ['controller' => 'View@view', 'as' => 'routeA']);\n $routeB = new Route('GET', 'product', ['controller' => 'OverwrittenView@view', 'as' => 'overwrittenRouteA']);\n\n $this->routeCollection->add($routeA);\n $this->routeCollection->add($routeB);\n\n // Check if the lookups of $routeA and $routeB are there.\n $this->assertEquals($routeA, $this->routeCollection->getByName('routeA'));\n $this->assertEquals($routeA, $this->routeCollection->getByAction('View@view'));\n $this->assertEquals($routeB, $this->routeCollection->getByName('overwrittenRouteA'));\n $this->assertEquals($routeB, $this->routeCollection->getByAction('OverwrittenView@view'));\n\n // Rebuild the lookup arrays.\n $this->routeCollection->refreshNameLookups();\n $this->routeCollection->refreshActionLookups();\n\n // The lookups of $routeA should not be there anymore, because they are no longer valid.\n $this->assertNull($this->routeCollection->getByName('routeA'));\n $this->assertNull($this->routeCollection->getByAction('View@view'));\n // The lookups of $routeB are still there.\n $this->assertEquals($routeB, $this->routeCollection->getByName('overwrittenRouteA'));\n $this->assertEquals($routeB, $this->routeCollection->getByAction('OverwrittenView@view'));\n }", "public function getUserDefined(): Collection\n {\n $routes = $this->router->getRoutes();\n\n $routes = collect($routes)->map(function ($route) {\n return [\n 'uri' => $route->uri(),\n 'name' => $route->getName(),\n 'action' => ltrim($route->getActionName(), '\\\\'),\n 'middleware' => $this->getMiddleware($route),\n ];\n });\n\n return $this->getAclRoutes($routes);\n }", "public function getRouteCollection()\n\t{\n\t\treturn $this->loadRoutes();\n\t}", "public function getRouteCollection(): RouteCollection\n {\n if ($this->routeCollection === null) {\n $this->load();\n }\n\n return $this->routeCollection;\n }", "abstract public function exportRoutes(RouteCollection $routes);", "protected function configureRoutes(RouteCollection $collection)\n {\n $collection->clearExcept(array('list'));\n $collection->add(\"apk\")\n ->add(\"extracted\")\n ->add(\"delete_backups\")\n ->add(\"create_backup\")\n ->add(\"restore_backup\")\n ->add(\"archive_logs\")\n ->add(\"delete_logs\");\n }", "public static function ignoreRoutes()\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "public static function ignoreRoutes()\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "public static function ignoreRoutes()\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "public static function ignoreRoutes()\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "public static function ignoreRoutes()\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "public static function ignoreRoutes(): static\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "abstract public function registerRoutes(RouteCollection $collection);", "public function copy(Collection $c);", "protected function configureRoutes(RouteCollection $collection)\n {\n }", "protected function configureRoutes(RouteCollection $collection) {\n //$collection->remove('create');\n //$collection->remove('delete');\n $collection->add('clone', $this->getRouterIdParameter().'/clone');\n $collection->add('addCategoryByLanguage','add-category-by-language');\n }", "public function getRouteCollection()\n {\n return $this->routes;\n }", "public function copySections()\n\t{\n\t\tforeach ($this->sourceSections as &$sourceSection) {\n\t\t\tif (!isset($sourceSection['destination_id'])) {\n\t\t\t\t$destinationSection = $this->addSection($this->destinationProject, $sourceSection);\n\t\t\t\t$sourceSection['destination_id'] = $destinationSection['id'];\n\t\t\t}\n\t\t}\n\t}", "public function clonedRouteEndpointSpecs(): RouteEndpointSpecs;", "protected function _prepareCollection()\n {\n $this->setCollection($this->_actorCollection);\n return parent::_prepareCollection();\n }", "protected function configureRoutes(RouteCollection $collection)\n {\n $collection->remove('create');\n $collection->remove('edit');\n // $collection->remove('delete'); \n }", "public function ownedByCollections()\n {\n return $this->relationshipTrashedFilter($this->morphedByMany('App\\Api\\V1\\Models\\Collection', 'fragmentable'));\n }", "public function filters()\n {\n\n $filters = collect([]);\n\n foreach($this->filters as $klass) {\n if (class_exists($klass)) {\n $filters->push(new $klass($this->route));\n }\n }\n\n return $filters;\n\n }", "public function __construct(RouteCollection $collection)\n {\n $this->collection = $collection;\n }", "public function getRoutes(): RouteCollection\n {\n return $this->routes;\n }", "public function get_destinations(){\n\t\treturn $this->destinations;\n\t}" ]
[ "0.49845058", "0.4854923", "0.47710958", "0.47592512", "0.474895", "0.4724392", "0.46818998", "0.46643832", "0.46555555", "0.4641599", "0.46230206", "0.46230206", "0.46230206", "0.46230206", "0.46230206", "0.45824617", "0.45812848", "0.45750886", "0.4560122", "0.45523012", "0.4545091", "0.4543434", "0.452805", "0.4496764", "0.44915548", "0.44813186", "0.44726336", "0.44652435", "0.44630978", "0.44340435" ]
0.71463436
0
Returns a copy of a given routes but without routers not marked as hidden.
public static function filterHidden(array $routes) { $result = []; foreach ($routes as $name => $route) { if (!$route->getOption('hidden')) { $result[$name] = $route; } } return $result; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function ignoreRoutes(): static\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "public static function ignoreRoutes()\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "public static function ignoreRoutes()\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "public static function ignoreRoutes()\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "public static function ignoreRoutes()\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "public static function ignoreRoutes()\n {\n static::$registersRoutes = false;\n\n return new static;\n }", "public function getExcludedRoutes() {\n if (!isset($this->excludedRoutes)) {\n $config = $this->configFactory->get('domain_source.settings');\n $routes = $config->get('exclude_routes');\n if (is_array($routes)) {\n $this->excludedRoutes = array_flip($routes);\n }\n else {\n $this->excludedRoutes = [];\n }\n }\n return $this->excludedRoutes;\n }", "public static function cloneWithoutHidden(RouteCollection $src, RouteCollection $dest = null)\n {\n if (null === $dest) {\n $dest = new RouteCollection();\n }\n\n $routes = $src->all();\n foreach ($routes as $name => $route) {\n if (!$route->getOption('hidden')) {\n $dest->add($name, $route);\n }\n }\n\n $resources = $src->getResources();\n foreach ($resources as $resource) {\n $dest->addResource($resource);\n }\n\n return $dest;\n }", "public function getDeniedRoutes() {\n $query = $this->createQuery(0);\n $query->addCondition('{isDenied} = 1');\n\n $result = $query->query();\n\n $deniedRoutes = array();\n foreach ($result as $route) {\n $deniedRoutes[$route->route] = $route->route;\n }\n\n return $deniedRoutes;\n }", "public function removeHidden($hidden)\n\t{\n\t\tif (is_string($hidden)) {\n\t\t\t$hidden = func_get_args();\n\t\t}\n\n\t\t$this->hidden = array_diff($this->hidden, $hidden);\n\n\t\treturn $this;\n\t}", "public function hide_nonvendor_links( $views )\n\t{\n\t\treturn array();\n\t}", "public function removeDefaultRoutes() {\r\n\t\t$this->routes = array(); // WTF?? verwijderd alle routes???\r\n\t\t$this->useDefaultRoutes = false;\r\n\t\treturn $this;\r\n\t}", "public function filter_views( $views ) {\n\t\t\tif ( isset( $views['mine'] ) ) {\n\t\t\t\tunset( $views['mine'] );\n\t\t\t}\n\n\t\t\treturn $views;\n\t\t}", "function filter_out_private_locations( $where ) {\n return $this->slplus->database->extend_Where( $where, ' ( NOT sl_private OR sl_private IS NULL) ' );\n }", "protected function _filter_hidden($menu)\n\t{\n\t\t$filtered_menu = array();\n\t\tif (!$this->include_hidden)\n\t\t{\n\t\t\tforeach($menu as $key => $val)\n\t\t\t{\n\t\t\t\tif (!$val['hidden'] OR strtolower($val['hidden']) == 'no')\n\t\t\t\t{\n\t\t\t\t\t$filtered_menu[$key] = $val;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\telse\n\t\t{\n\t\t\t$filtered_menu = $menu;\n\t\t}\n\t\t\n\t\treturn $filtered_menu;\n\t\t\n\t}", "public function getAllSegmentsAndIgnoreVisibility()\n {\n $cacheKey = 'SegmentEditor.getAllSegmentsAndIgnoreVisibility';\n if (!$this->transientCache->contains($cacheKey)) {\n $result = $this->model->getAllSegmentsAndIgnoreVisibility();\n\n $this->transientCache->save($cacheKey, $result);\n }\n return $this->transientCache->fetch($cacheKey);\n }", "public function getActivityTrackerIgnoreRoutes()\n {\n return config(\"devpilot.activity_tracker.ignore_routes\");\n }", "public static function withoutRoutes()\n {\n self::$withDefaultRoutes = false;\n }", "public function getExcludes();", "protected function getSitemapRoutes()\n {\n $all_routes = collect(Route::getRoutes()->getRoutes());\n\n $excepts = config('sitemap.excepts_routes_names');\n\n return $all_routes->filter(function ($route) use ($excepts) {\n\n return array_key_exists('sitemap', $route->getAction()) &&\n !in_array($route->getName(), $excepts) &&\n in_array('GET', $route->methods);\n\n });\n }", "function hidden()\n {\n $this->set('show_ui', false);\n $this->set('show_in_nav_menus', false);\n\n return $this;\n }", "private function getExcludedPages()\n {\n $page404 = $this->wire('pages')->get($this->wire('config')->http404PageID);\n\n $excluded = (new PageArray())\n ->add($page404);\n\n // Allow to exclude additional pages by hooking SeoMaestro::sitemapAlwaysExclude().\n return $this->wire('modules')->get('SeoMaestro')\n ->sitemapAlwaysExclude($excluded);\n }", "public function withoutGlobalScopes($scopes);", "public function withoutFilters(): self\n {\n $this->shouldRenderFilters = false;\n return $this;\n }", "public function setInvisible()\n {\n $this->setVisibility(false);\n return $this;\n }", "public function clonedRouteEndpointSpecs(): RouteEndpointSpecs;", "public function reset()\n {\n $this->routeMap = array();\n return $this;\n }", "public function filters()\n {\n\n $filters = collect([]);\n\n foreach($this->filters as $klass) {\n if (class_exists($klass)) {\n $filters->push(new $klass($this->route));\n }\n }\n\n return $filters;\n\n }", "public function getParametersWithoutDefaults()\n {\n $parameters = $this->getParameters();\n foreach ($parameters as $key => $value) {\n // When calling functions using call_user_func_array, we don't want to write\n // over any existing default parameters, so we will remove every optional\n // parameter from the list that did not get a specified value on route.\n if ($this->isMissingDefault($key, $value)) {\n unset($parameters[$key]);\n }\n }\n return $parameters;\n }", "public function getRoutes()\n {\n return array_values($this->routes);\n }" ]
[ "0.62720793", "0.62076974", "0.62076974", "0.62076974", "0.62076974", "0.62076974", "0.59641343", "0.5733331", "0.5549624", "0.5477639", "0.53864354", "0.53374445", "0.5333007", "0.5318471", "0.5230448", "0.5198043", "0.51908815", "0.51675063", "0.51355165", "0.51307887", "0.50944024", "0.4981193", "0.49728683", "0.49331865", "0.49311936", "0.4921334", "0.48966843", "0.48965487", "0.48961878", "0.48843175" ]
0.65183914
0
Returns a hash built out of provided string.
public function hash($string);
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public static function make($string)\n\t{\n\t\treturn hash('sha256', $string);\n\t}", "function stringHash($string)\n\t{\n\t\t$hashedString = hash(\"sha256\", $string);\n\t\t\n\t\treturn ($hashedString);\n\t}", "function hashString($string){\n return hash ( \"md5\", $string, FALSE); // md5 Hash (One-Direction)\n }", "public function hash($str) {\n return hash($this->config['hash_method'], $str);\n }", "public function hash($str) {\n\t\treturn hash($this->config['hash_method'], $str);\n\t}", "public function hash($str)\n\t{\n\t\treturn hash($this->config['hash_method'], $str);\n\t}", "function getHash($str)\n{\n\treturn hash('sha256', $str);\n}", "public function hash(string $string, array $options = []): string;", "function get_hash($string){\r\n\t\tif(!$string){\r\n\t\t\treturn \"Please pass string \";\r\n\t\t}\r\n\t\treturn sha1($string);\r\n\t}", "private function hashString($string)\n {\n if (isset($this->hashedString[$string])) {\n return $this->hashedString[$string];\n }\n $hash = 0;\n for ($i = 0, $length = strlen($string); $i < $length; $i++) {\n $hash ^= (31 * $hash) + ord($string[$i]);\n }\n $this->hashedString[$string] = $hash;\n\n return $hash;\n }", "public function generateHash($string)\n {\n return $this->hashFunction->HashPassword(trim($string));\n }", "public static function hashString($string)\n {\n return md5($string);\n }", "public static function getHash($str){\n return hash('sha256', $str . '__' . SALT);\n }", "public static function hash($string)\n {\n return md5($string);\n }", "function hash($str)\n\t{\n\t\treturn ($this->hash_type == 'sha1') ? $this->sha1($str) : md5($str);\n\t}", "private static function _strHash( $string )\n {\n $max = (float)PHP_INT_MAX;\n $min = (float)(0 - PHP_INT_MAX);\n $h = 0.0;\n // mmm... modular arithmetic...\n for( $i=0; $i<strlen($string); $i++ ) {\n $result = 31 * $h + ord($string[$i]);\n if ( $result > $max ) {\n $h = $result % $max;\n } else if ( $result < $min ) {\n $h = 0-(abs($result) % $max);\n } else {\n $h = $result;\n }\n }\n return (int)$h;\n }", "public function hashOf($str) {\n $hash= 5381;\n $offset= 0;\n for ($len= strlen($str); $len >= 8; $len-= 8) {\n $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n }\n\n switch ($len) {\n case 7: $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n case 6: $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n case 5: $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n case 4: $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n case 3: $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n case 2: $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n case 1: $hash= (($hash << 5) + $hash) + ord($str{$offset++});\n }\n return $hash;\n }", "function hash($str) {\n\t\treturn ($this->_hash_type == 'sha1') ? $this->sha1 ( $str ) : md5 ( $str );\n\t}", "public function hash($string) {\n\t\tif($this->config['hash_method'] != 'bcrypt') {\n\t\t\treturn hash_hmac($this->config['hash_method'], $string, $this->config['hash_key']);\n\t\t} else {\n\t\t\treturn $this->bcrypt->hash($string);\n\t\t}\n\t}", "function myhash($str) {\n return shorthash(md5($str));\n}", "public static function hash(string $string, $algo = '')\r\n {\r\n // get default algo\r\n if ($algo === '')\r\n $algo = config(\"define.HASH_ALGO\");\r\n\r\n return hash($algo, $string);\r\n }", "function _make_hash($algo, $string) {\n switch ($algo) {\n case 'md5':\n return md5($string);\n case 'sha1':\n return sha1($string);\n default:\n return function_exists('hash') ? hash($algo, $string) : '';\n }\n}", "function _make_hash($algo, $string) {\n switch ($algo) {\n case 'md5':\n return md5($string);\n case 'sha1':\n return sha1($string);\n default:\n return function_exists('hash') ? hash($algo, $string) : '';\n }\n}", "static public function hash($str, $s = 5381, $hash = 0)\r\n {\r\n foreach (str_split($str) as $v)\r\n $hash = ($hash * $s + ord($v)) & 0x7FFFFFFF;\r\n\r\n return $hash;\r\n }", "function __hash($str) {\n return hash('md5', $str . config_item('encryption_key'));\n }", "public static function __hash($str)\n {\n $hval = 0;\n\n /*\n * 4-bytes integer we will directly take\n * its int value as the final hash value.\n *\n * @Note Add 8-bytes integer support at 2018/12/25\n */\n if ( is_integer($str) ) {\n $hval = $str;\n } else if ( strlen($str) <= 19 && is_numeric($str) ) {\n $hval = intval($str);\n } else {\n $slen = strlen($str);\n for ( $i = 0; $i < $slen; $i++ ) {\n //$hval = (int)($hval * 1331 + (ord($str[$i]) % 127));\n // prevent int overflow\n // @note fixed at 2016-12-20\n $hval = (((int)($hval * 1331) & 0x7FFFFFFF) + ord($str[$i]) % 127) & 0x7FFFFFFF;\n }\n }\n \n return ($hval & 0x7FFFFFFF);\n }", "public function hash(string $str) : string\n {\n if ( ! $this->_config['hash_key'])\n {\n throw new Exception('A valid hash key must be set in your auth config.');\n }\n\n return hash_hmac($this->_config['hash_method'], $str, $this->_config['hash_key']);\n }", "protected function _get_hash($s)\n {\n return call_user_func(self::HASH_FUNC, $s);\n }", "function make_hash($str)\n{\n return sha1(md5($str));\n}", "static public function hash($str) {\n $hash = 0;\n $s = md5($str);\n $seed = 5;\n $len = 32;\n for ($i = 0; $i < $len; $i++) {\n // (hash << 5) + hash 相当于 hash * 33\n $hash = ($hash << $seed) + $hash + ord($s{$i});\n }\n return $hash & 0x7FFFFFFF;\n }" ]
[ "0.78672767", "0.7856652", "0.7847207", "0.78092206", "0.77893656", "0.7749763", "0.7729776", "0.7703865", "0.7667052", "0.7648765", "0.75349605", "0.7494618", "0.74713695", "0.74646926", "0.74337924", "0.74174535", "0.74026984", "0.7389202", "0.737409", "0.73584294", "0.7303181", "0.7161733", "0.7161733", "0.7140622", "0.71255976", "0.7015584", "0.70027924", "0.6999897", "0.6981206", "0.69721305" ]
0.84468824
0
Valida o tamanho do arquivo em bytes
public static function validaTamanhoArquivo($arquivo, $tamanho) { $tam = filesize($arquivo); return ($tam <= $tamanho) ? true : false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function checkSize()\n {\n $this->err_size = false;\n\n if ( empty($this->file['size']) )\n $this->err_size = true;\n\n else if ( $this->max_size && intval($this->file['size']) > $this->max_size )\n $this->err_size = true;\n\n return $this->err_size;\n }", "private function checkSize() {\n\t\t\tif($this->size > $this->maxSize) {\n\t\t\t\tthrow new Exception(\"Sorry but file is too big. Max file size is \".$this->maxSize);\n\t\t\t}\n\t\t}", "public function testMaxLengthBytes(): void\n {\n $validator = new Validator();\n $this->assertProxyMethod($validator, 'maxLengthBytes', 9, [9]);\n $this->assertNotEmpty($validator->validate(['username' => 'ÆΔΩЖÇ']));\n\n $fieldName = 'field_name';\n $rule = 'maxLengthBytes';\n $expectedMessage = 'The provided value must be at most `11` bytes long';\n $maxLengthBytes = 11;\n $this->assertValidationMessage($fieldName, $rule, $expectedMessage, $maxLengthBytes);\n }", "public function checkfilesize($check)\n{\n $uploadData = array_shift($check);\n\n // Basic checks\n if ($uploadData['size'] >= 6291456)\n {\n return false;\n }else\n {\n\treturn true;\n }\n}", "function checkSize($size, $max_size){\n if($size <= $max_size){\n return true;\n } else{\n echo 'File is too large. Max size in 2mb.';\n return false;\n }\n}", "public function test_size_throws_exception_for_invalid_size()\n\t{\n\t\t$this->setEnvironment([\n\t\t\t'_FILES' => [\n\t\t\t\t'unit_test' => [\n\t\t\t\t\t'error' => UPLOAD_ERR_OK,\n\t\t\t\t\t'name' => 'Unit_Test File',\n\t\t\t\t\t'type' => 'image/png',\n\t\t\t\t\t'tmp_name' => Kohana::find_file('tests', 'test_data/github', 'png'),\n\t\t\t\t\t'size' => filesize(Kohana::find_file('tests', 'test_data/github', 'png')),\n\t\t\t\t]\n\t\t\t]\n\t\t]);\n\n\t\tUpload::size($_FILES['unit_test'], '1DooDah');\n\t}", "public function testMinLengthBytes(): void\n {\n $validator = new Validator();\n $this->assertProxyMethod($validator, 'minLengthBytes', 11, [11]);\n $this->assertNotEmpty($validator->validate(['username' => 'ÆΔΩЖÇ']));\n\n $fieldName = 'field_name';\n $rule = 'minLengthBytes';\n $expectedMessage = 'The provided value must be at least `11` bytes long';\n $minLengthBytes = 11;\n $this->assertValidationMessage($fieldName, $rule, $expectedMessage, $minLengthBytes);\n }", "static function check_file_size ($data, $args) {\n $field = $args[\"field\"];\n $arr_file = $data[$field];\n\t\t\t$file_size = $arr_file[\"size\"];\n\n\t\t\t$minSize = $args[\"minSize\"];\n\t\t\t$maxSize = $args[\"maxSize\"];\n\t\t\t\n if ($minSize AND $file_size < $minSize) { \t\t\n \treturn false;\n }\n if ($maxSize AND $file_size > $maxSize) { \t\t\n \treturn false;\n } \n \n \treturn true;\t \n }", "function isSize($field, $size, $msg){\n $value = $this->_getValue($field,'size');\n\t\tif ($value > $size){\n\t\t$this->_errorList[] = array(\"field\" => $field,\n\t\t\"value\" => $value, \"msg\" => $msg);\n $this->_removeTmpFile($field, 'tmp_name');\n\t\treturn false;\n\t\t}else{\n\t\treturn true;\n\t\t}\n }", "function check_file_berita()\n\t{\t\t\t\n\t\tif($_FILES['file_berita']['name'] != '')\n\t\t{\t\n\t\t\t$max_file_size = $this->cms_model->get_config_value('MAX_FILE_UPLOAD');\n\t\t\tif($_FILES['file_berita']['size'] > $max_file_size){\n\t\t\t\t//cek ukuran file\n\t\t\t\t$this->form_validation->set_message('check_file_berita', 'Ukuran file lebih dari '.$this->cms_model->bytesToSize($max_file_size));\n\t\t\t\treturn FALSE;\t\n\t\t\t}else{\t\t\t\t\n\t\t\t\treturn TRUE;\t\t\t\t\t\t\t\n\t\t\t}\t\t\t\n\t\t}\n\t}", "function checkfilesize(){\t\n\t\t$contentLength = 0;\t\t\t\n\t\t$ch = curl_init($this->link);\n\t\tcurl_setopt($ch, CURLOPT_NOBODY, true);\n\t\tcurl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n\t\tcurl_setopt($ch, CURLOPT_HEADER, true);\n\t\tcurl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);\n\t\t$data = curl_exec($ch);\n\t\tcurl_close($ch);\n\n\t\tif (preg_match('/Content-Length: (\\d+)/', $data, $matches))\n\t\t\t$contentLength = (int)$matches[1];\t//Contains file size in bytes\n\n\t\tif ($contentLength > 6291456)\n\t\t\treturn false;\n\n\t\telse\t\n\t\t\treturn true;\n\t}", "private function validate_file_size( string $max ) {\n\t\t$file_size = $_FILES[$this->field_name][\"size\"];\n\t\t$bytes = ((int) $max) * 1024 * 1024;\n\t\tif( $file_size < $bytes ) {\n\t\t\treturn 1;\n\t\t}\n\t\treturn \"Size of the image should be lesser than {$max}B\";\n\t}", "public function testValidationContentLengthMinimumOfEight()\n {\n $headers = $this->authorize();\n\n $post = [\n \"title\" => $this->faker->name,\n \"content\" => 'ab came',\n \"images\" => base64_encode(file_get_contents($this->faker->imageUrl(640, 480, 'animals', true))),\n 'tags' => 'lagos, benin'\n ];\n\n $this->client->request('POST', 'post',\n [],\n [],\n $headers,\n json_encode($post)\n );\n\n $response = json_decode($this->client->getResponse()->getContent(), true);\n\n $this->assertResponseStatusCodeSame(422);\n\n $this->assertContains('This value is too short. It should have 8 characters or more.', $response['errors']['content']);\n\n }", "function check_file_size($str, $max_size = 0)\n{\n if (!$max_size) {\n $max_size = IMG_UPLOAD_MAX_SIZE;\n }\n $file_size = $str['size'];\n if ($file_size > $max_size)\n return false;\n else\n return true;\n}", "public function testGetSize()\n {\n $stream = fopen('php://temp', 'w+b');\n $this->assertSame(0, StreamUtil::getSize($stream));\n\n fwrite($stream, 'aaaaaaaaaa');\n $this->assertSame(10, StreamUtil::getSize($stream));\n fclose($stream);\n }", "public function testFileValidateNameLength() {\n // Create a new file entity.\n $file = File::create();\n\n // Add a filename with an allowed length and test it.\n $file->setFilename(str_repeat('x', 240));\n $this->assertEquals(240, strlen($file->getFilename()));\n $errors = file_validate_name_length($file);\n $this->assertCount(0, $errors, 'No errors reported for 240 length filename.');\n\n // Add a filename with a length too long and test it.\n $file->setFilename(str_repeat('x', 241));\n $errors = file_validate_name_length($file);\n $this->assertCount(1, $errors, 'An error reported for 241 length filename.');\n\n // Add a filename with an empty string and test it.\n $file->setFilename('');\n $errors = file_validate_name_length($file);\n $this->assertCount(1, $errors, 'An error reported for 0 length filename.');\n }", "private function validateSize() : bool {\n $max = $this->max();\n\n if ($max == -1) {\n return true;\n }\n\n if ($max > $this->size()) {\n return true;\n }\n\n return false;\n }", "function getContentSize()\n\t{\n\t\ttry {\n\t\t\t$size = filesize($this->path);\n\t\t}\n\t\tcatch(ErrorException $e){\n\t\t\treturn 0;\n\t\t}\n\t\t// FIXME: unfortunately, on 32-bits systems filesize() returns quite\n\t\t// random numbers with files larger than 2GB rather than triggering an\n\t\t// error, so these cases cannot be detected; here we do our best:\n\t\tif( ! is_int($size) || $size < 0 )\n\t\t\tthrow new OverflowException(\"int overflow: size=$size\");\n\t\treturn $size;\n\t}", "public function maxUploadSize($inBytes = false, $formValue = '');", "protected function isValidFileSize($file) {\n if($file['size'] > $this->maxSize){\n $this->errorMessages[] = $file['name'].\" is too big, it exceeeds the maximum file size\";\n return false;\n }\n return true;\n }", "function tp_upload_check_max_size($image_size) {\n\t$max_file_size = (float) elgg_get_plugin_setting('maxfilesize', 'tidypics');\n\tif (!$max_file_size) {\n\t\t// default to 5 MB if not set\n\t\t$max_file_size = 5;\n\t}\n\t// convert to bytes from MBs\n\t$max_file_size = 1024 * 1024 * $max_file_size;\n\treturn $image_size <= $max_file_size;\n}", "public function getMaxBytes(): int;", "public function getMaxFileSize(): int;", "public function it_should_be_able_to_get_the_size_of_the_uploaded_file()\n {\n $staplerUploadedFile = $this->buildValidStaplerUploadedFile();\n\n $size = $staplerUploadedFile->getSize();\n\n $this->assertEquals(null, $size);\n }", "private function check_constraints() {\n\t\t$Err = new ChunkUploadError;\n\t\t$logger = self::$logger;\n\t\t$request = $this->request;\n\n\t\t$size = $index = $blob = null;\n\t\textract($request);\n\n\t\t$size = intval($size);\n\t\tif ($size < 1) {\n\t\t\t# size violation\n\t\t\t$logger->warning(\"Chupload: invalid filesize.\");\n\t\t\treturn $Err::ECST_FSZ_INVALID;\n\t\t}\n\t\t$index = intval($index);\n\t\tif ($index < 0) {\n\t\t\t# index undersized\n\t\t\t$logger->warning(\"Chupload: invalid chunk index.\");\n\t\t\treturn $Err::ECST_CID_UNDERSIZED;\n\t\t}\n\t\tif ($size > $this->max_filesize) {\n\t\t\t# max size violation\n\t\t\t$logger->warning(\"Chupload: max filesize violation.\");\n\t\t\treturn $Err::ECST_FSZ_OVERSIZED;\n\t\t}\n\t\tif ($index * $this->chunk_size > $this->max_filesize) {\n\t\t\t# index oversized\n\t\t\t$logger->warning(\"Chupload: chunk index violation.\");\n\t\t\treturn $Err::ECST_CID_OVERSIZED;\n\t\t}\n\t\t$chunk_path = $blob['tmp_name'];\n\t\tif (filesize($chunk_path) > $this->chunk_size) {\n\t\t\t# chunk oversized\n\t\t\t$logger->warning(\"Chupload: invalid chunk index.\");\n\t\t\t$this->unlink($chunk_path);\n\t\t\treturn $Err::ECST_MCH_OVERSIZED;\n\t\t}\n\n\t\t$max_chunk_float = $size / $this->chunk_size;\n\t\t$max_chunk = floor($max_chunk_float);\n\t\tif ($max_chunk_float == $max_chunk)\n\t\t\t$max_chunk--;\n\t\t$max_chunk = intval($max_chunk);\n\n\t\t$chunk = file_get_contents($chunk_path);\n\n\t\t$basename = $this->get_basename();\n\t\t$tempname = $this->tempdir . '/' . $basename;\n\t\t$destname = $this->destdir . '/' . $basename;\n\n\t\t# always overwrite old file with the same destname, hence\n\t\t# make sure get_basename() guarantee uniqueness\n\t\t// @codeCoverageIgnoreStart\n\t\tif (file_exists($destname) && !$this->unlink($destname))\n\t\t\treturn $Err::EDIO_DELETE_FAIL;\n\t\t// @codeCoverageIgnoreEnd\n\n\t\t$this->chunk_data = [\n\t\t\t'size' => $size,\n\t\t\t'index' => $index,\n\t\t\t'chunk_path' => $chunk_path,\n\t\t\t'max_chunk' => $max_chunk,\n\t\t\t'chunk' => $chunk,\n\t\t\t'basename' => $basename,\n\t\t\t'tempname' => $tempname,\n\t\t\t'destname' => $destname,\n\t\t];\n\n\t\treturn 0;\n\t}", "function isMaxLength($input, $length) {\n if (mb_strlen($input,'UTF-8') <= $length){\n return true; \n }\n return false;\n}", "public function testSizeOutputsSize()\n {\n $size = file_put_contents(self::$temp . DS . 'foo.txt', 'foo');\n\n $this->assertTrue($size === (int) Storage::size(self::$temp . DS . 'foo.txt'));\n }", "private function checkFile()\n {\n $this->err_no_file = false;\n\n if ( !(isset($this->file['size']) && (int) $this->file['size']) )\n $this->err_no_file = true;\n\n return $this->err_no_file;\n }", "public static function validateFileSize(Controls\\UploadControl $control, $limit): bool\n\t{\n\t\tforeach (static::toArray($control->getValue()) as $file) {\n\t\t\tif ($file->getSize() > $limit || $file->getError() === UPLOAD_ERR_INI_SIZE) {\n\t\t\t\treturn false;\n\t\t\t}\n\t\t}\n\t\treturn true;\n\t}", "public function testBadSizeLarge(): void\n {\n $this->expectException(DomainException::class);\n $this->expectExceptionMessage('Size must be between 1 and 512.');\n new Gravatar(['size' => '513']);\n }" ]
[ "0.644973", "0.6214477", "0.6174259", "0.61553115", "0.61324567", "0.6043211", "0.5984528", "0.59264606", "0.5910629", "0.5910137", "0.5871917", "0.5871803", "0.5831185", "0.5827991", "0.5730698", "0.56858104", "0.5635488", "0.56281525", "0.56051904", "0.5603669", "0.5595565", "0.5592026", "0.55844444", "0.557426", "0.557138", "0.5567505", "0.55564547", "0.55548257", "0.55427676", "0.5536918" ]
0.6565714
0
Do the glossy effect
private function doGlossy() { if (!$this->glossy()) return; $shine = new ImagickDraw(); $shine->setFillColor("white"); $shine->setFillAlpha(0.2); $shine->rectangle(0,0,$this->width(),$this->height()/2); $this->final->drawImage($shine); $shine->destroy(); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function applyEffects()\n {\n }", "function effect($effect,$arg1=null,$arg2=null){\n if($effect&EFFECT_EMBOSS)\n imageconvolution($this->image, array(array(2, 0, 0), array(0, -1, 0), array(0, 0, -1)), 1, 127);\n if($effect&EFFECT_GAUSSIAN_BLUR){\n if(isset($arg1))for($i=0;$i<=$arg1;$i++)imagefilter($this->image,IMG_FILTER_GAUSSIAN_BLUR);\n else imagefilter($this->image,IMG_FILTER_GAUSSIAN_BLUR);\n }\n\n if($effect&EFFECT_NEGATIVE)\n imagefilter($this->image,IMG_FILTER_NEGATE);\n if($effect&EFFECT_GRAY)\n imagefilter($this->image,IMG_FILTER_GRAYSCALE);\n if($effect&EFFECT_SMOOTH)\n imagefilter($this->image,IMG_FILTER_SMOOTH,$arg1);\n if($effect&EFFECT_EDGES){\n imagefilter($this->image,IMG_FILTER_CONTRAST,255);\n imagefilter($this->image,IMG_FILTER_EDGEDETECT);\n }\n if($effect&EFFECT_SCANLINE){\n\n if(isset($arg1))$c=$arg1;else $c=2;\n if(isset($arg2))$this->color=$arg2;else $this->colorRgb(0);\n for($y=0;$y<=$this->height;$y+=$c){\n $this->line(0,$y,$this->width,$y);\n }\n }\n if($effect&EFFECT_RIPPLE){\n $temp=imagecreatetruecolor($this->width*2,$this->height*2);\n imagecopyresampled($temp,$this->image,0,0,0,0,$this->width*2,$this->height*2,$this->width,$this->height);\n $amplitude=isset($arg1)?$arg1:10;\n $period=isset($arg2)?$arg2:10;\n for($i = 0; $i < $this->width*2; $i += 2)imagecopy($temp, $temp, $i - 2, sin($i / $period) * $amplitude, $i, 0, 2, $this->height*2);\n imagecopyresampled($this->image,$temp,0,0,0,0,$this->width, $this->height, $this->width*2, $this->height*2);\n imagedestroy($temp);\n }\n }", "function shedSkin()\r\n {\r\n }", "function shedSkin()\r\n {\r\n }", "function shedSkin()\r\n {\r\n }", "public function heal();", "public function fight(): void\r\n {\r\n echo \"\\nGiving a sword slash!\";\r\n }", "function heal()\n {\n }", "public function addSalvoMode(){\n\t\tif($this->defaultShots <2) return; //no point\n\t\t$this->firingModes[2] = 'Salvo';\n\t\t$new = ceil($this->animationExplosionScale*1.25);\n\t\t$this->animationExplosionScaleArray = array(1=>$this->animationExplosionScale, 2=>$new);\n\t\t$new = ceil($this->animationWidth*1.25);\n\t\t$this->animationWidthArray = array(1=>$this->animationWidth, 2=>$new);\n\t\t$new = ceil($this->trailLength*1.25);\n\t\t$this->trailLengthArray = array(1=>$this->trailLength, 2=>$new);\n\t\t$this->maxpulsesArray = array(1=>$this->maxpulses, 2=>1);\n\t\t$this->defaultShotsArray = array(1=>$this->defaultShots, 2=>1);\n\t\t$new = min(10,$this->priority+1);//system doesn't accept more than 10 for now\n\t\t$this->priorityArray = array(1=>$this->priority, 2=>$new);\n\t\t$fc1 = $this->fireControl;\n\t\t$fc2 = array($fc1[0]-4, $fc1[1]-2, $fc1[2]-1); //FC of salvo mode: worse (much worse vs fighters)\n\t\t$this->fireControlArray = array(1=>$fc1, 2=>$fc2);\n\t\t//damage bonus: at least +1 per extra gun (+2 for second gun), but otherwise percentage based\n\t\t$damagebonusMin = 2;\n\t\t$damagebonusPerc = 20; //percentage: +20% for first gun, +10% for each one after that; counted from average damage\n\t\tif($this->defaultShots > 2) {\n\t\t\t$damagebonusMin += $this->defaultShots - 2;//+1 for each barrel after that\n\t\t\t$damagebonusPerc += 10*($this->defaultShots-2);//+15% for each barrel after that\n\t\t}\n\t\t$avgDmg = ($this->minDamage+$this->maxDamage) /2;\n\t\t$damagebonusEffect = $this->damagebonus + max($damagebonusMin,ceil($avgDmg*$damagebonusPerc/100));\n\t\t$this->damagebonusArray = array(1=>$this->damagebonus, 2=>$damagebonusEffect);\n\t\t\n\t\tforeach($this->firingModes as $i=>$modeName){ //recalculating min and max damage - taking into account new firing mode!\t \n\t\t\t$this->changeFiringMode($i);\n\t\t\t$this->setMinDamage(); $this->minDamageArray[$i] = $this->minDamage;\n\t\t\t$this->setMaxDamage(); $this->maxDamageArray[$i] = $this->maxDamage;\n\t\t}\n\t\t$this->changeFiringMode(1); //reset mode to basic\n\t\t\n\t}", "function reaction(){\n\t\tif(rand(1,10) == 1){\n\t\t\t$this->brain->setstate(\"stunned_attack\");\n\t\t} else {\n\t\t\t$this->brain->setstate(\"defend\");\n\t\t\t$this->damageresist = true;\n\t\t\t$this->appendtoturn(\"<b>\" . $this->type . \"</b>(\" . $this->stamina . \") defended at \" . $this->posx . \"-\" . $this->posy . \".\");\n\t\t}\n\t}", "function reaction(){\n\t\tif(rand(1,4) == 1){\n\t\t\t$this->brain->setstate(\"stunned_attack\");\n\t\t} else {\n\t\t\t$this->brain->setstate(\"defend\");\n\t\t\t$this->damageresist = true;\n\t\t\t$this->appendtoturn(\"<b>\" . $this->type . \"</b>(\" . $this->stamina . \") defended at \" . $this->posx . \"-\" . $this->posy . \".\");\n\t\t}\n\t}", "public function breathe() {\r\n\treturn parent::breathe().\" through my lungs!\";\r\n }", "function damage_boss_attack_p1($t,$h,$ex,$a,$attr)\n\t{\n\t\t$coeff = 150+$ex;\n\t\t\t\n\t\t$dmg = $e + ($x/50.0);\n\t\t$dmg = log($dmg);\n\t\t$dmg = $dmg*$dmg*0.5;\n\t\t$dmg = $dmg*log(200.0/$h);\n\t\t$dmg = $dmg+1;\n\t\t\t\n\t\treturn round($coeff*$dmg*$a*$attr);\n\t\t\t\n\t}", "function glossary_atoz(&$GLOSSARY) {\n\n\t\t$letters = array ();\n\n\t\tforeach ($GLOSSARY->alphabet as $letter => $eps) {\n\t\t\t// if we're writing out the current letter (list or item)\n\t\t\tif ($letter == $GLOSSARY->current_letter) {\n\t\t\t\t// if we're in item view - show the letter as \"on\" but make it a link\n\t\t\t\tif ($GLOSSARY->current_term != '') {\n\t\t\t\t\t$URL = new URL('glossary');\n\t\t\t\t\t$URL->insert(array('az' => $letter));\n\t\t\t\t\t$letter_link = $URL->generate('url');\n\n\t\t\t\t\t$letters[] = \"<li class=\\\"on\\\"><a href=\\\"\" . $letter_link . \"\\\">\" . $letter . \"</a></li>\";\n\t\t\t\t}\n\t\t\t\t// otherwise in list view show no link\n\t\t\t\telse {\n\t\t\t\t\t$letters[] = \"<li class=\\\"on\\\">\" . $letter . \"</li>\";\n\t\t\t\t}\n\t\t\t}\n\t\t\telseif (!empty($GLOSSARY->alphabet[$letter])) {\n\t\t\t\t$URL = new URL('glossary');\n\t\t\t\t$URL->insert(array('az' => $letter));\n\t\t\t\t$letter_link = $URL->generate('url');\n\n\t\t\t\t$letters[] = \"<li><a href=\\\"\" . $letter_link . \"\\\">\" . $letter . \"</a></li>\";\n\t\t\t}\n\t\t\telse {\n\t\t\t\t$letters[] = '<li>' . $letter . '</li>';\n\t\t\t}\n\t\t}\n\t\t?>\n\t\t\t\t\t<div class=\"letters\">\n\t\t\t\t\t\t<ul>\n\t<?php\n\t\tfor($n=0; $n<13; $n++) {\n\t\t\tprint $letters[$n];\n\t\t}\n\t\t?>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t\t<ul>\n\t<?php\n\t\tfor($n=13; $n<26; $n++) {\n\t\t\tprint $letters[$n];\n\t\t}\n\t\t?>\n\t\t\t\t\t\t</ul>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div class=\"break\">&nbsp;</div>\n\t\t<?php\n\t}", "function letak($gambar){\n\t\t$this->Image($gambar,10,10,20,25);\n\t\t//menggeser posisi sekarang\n\t}", "protected function spellEffect($data)\n {\n $units = GameBuilder::getGame()->getWorldGenerator()->getActiveUnits($this->mage);\n $animationCoords = [];\n $damage = $this->mage->getDamage($this->damageMin, Spell::ENERGY_SOURCE_WATER);\n foreach ($units as $target) {\n /**\n * @var Unit $target\n */\n if (!$target->isAlive() || !$target->getFlag(Unit::FLAG_FROZEN)) {\n continue;\n }\n\n $animationCoords[] = [$target->getX() - $this->mage->getX(), $target->getY() - $this->mage->getY()];\n $target->damage($damage, Game::ANIMATION_STAGE_MAGE_ACTION_EFFECT, Spell::ENERGY_SOURCE_WATER);\n }\n $this->game->addAnimationEvent(Game::EVENT_NAME_MAGE_SPELL_CAST, [\n 'spell' => $this->name,\n 'data' => $animationCoords, 'd' => $this->mage->getD()\n ], Game::ANIMATION_STAGE_MAGE_ACTION_2);\n\n return true;\n }", "public function draw()\n\t{\n\t\techo \"\\033[\" . $this->positionX . \";\" . $this->positionY . \"f fish #\" . $this->name;\n\t}", "function swim()\r\n {\r\n }", "function swim()\r\n {\r\n }", "function swim()\r\n {\r\n }", "function swim()\r\n {\r\n }", "function glossary_link() {\n\t\t$URL = new URL('glossary');\n\t\t$URL->remove(array(\"g\"));\n\t\t$glossary_link = $URL->generate('url');\n\t\tprint \"<small><a href=\\\"\" . $glossary_link . \"\\\">Browse the glossary</a></small>\";\n\t}", "protected function setGlossary($entity)\n {\n $this->addGlossary($entity);\n foreach($this->getHierarchy($entity) as $child) $this->addGlossary($child);\n }", "function doReplace($src, $language) {\n\t\t\t\n\t\t\tif($language == \"\") {\n\t\t\t\twe_loadLanguageConfig();\n\t\t\t\t$language = $GLOBALS['weDefaultFrontendLanguage'];\n\t\t\t}\n\t\t\t\n\t\t\t// get the words to replace\n\t\t\t$cache = new weGlossaryCache($language);\n\t\t\t$cache->write();\n\t\t\t$foreignword = $cache->get('foreignword');\n\t\t\t$abbreviation = $cache->get('abbreviation');\n\t\t\t$acronym = $cache->get('acronym');\n\t\t\t$link = $cache->get('link');\n\t\t\tunset($cache);\n\t\t\t// first check if there is a body tag inside the sourcecode\n\t\t\tpreg_match(\"/<body(.*)>(.*)<\\/body>/siU\", $src, $matches);\n\t\t\t\n\t\t\tif(isset($matches[0])) {\n\t\t\t\t// take the code between the body-tags\n\t\t\t\t$srcBody = $replBody = $matches[0];\n\t\t\t\t\n\t\t\t} else {\n\t\t\t\t// take the whole code\n\t\t\t\t$srcBody = $replBody = $src;\n\t\t\t\t\n\t\t\t}\n\t\t\t/*\n\t\t\tThis is the fastest variant\n\t\t\t*/\n\t\t\t// split the source into tag and non-tag pieces\n\t\t\t$pieces = preg_split('!(<[^>]*>)!', $replBody, -1, PREG_SPLIT_DELIM_CAPTURE);\n\t\t\t// replace words in non-tag pieces\n\t\t\t$replBody = \"\";\n\t\t\t$before = \"\";\n\t\t\tforeach($pieces as $piece) {\n\t\t\t\tif (!ereg(\"^<\", $piece) && !eregi(\"<script\", $before)) {\n\t\t\t\t\t$piece = str_replace('&quot;', '\"', $piece);\n\t\t\t\t\tif(!eregi(\"<a \", $before)) {\n\t\t\t\t\t\t$piece = weGlossaryReplace::doReplaceWords($piece, $link);\n\t\t\t\t\t}\n\t\t\t\t\tif(!eregi(\"<abbr \", $before)) {\n\t\t\t\t\t\t$piece = weGlossaryReplace::doReplaceWords($piece, $abbreviation);\n\t\t\t\t\t}\n\t\t\t\t\tif(!eregi(\"<acronym \", $before)) {\n\t\t\t\t\t\t$piece = weGlossaryReplace::doReplaceWords($piece, $acronym);\n\t\t\t\t\t}\n\t\t\t\t\tif(!eregi(\"<span \", $before)) {\n\t\t\t\t\t\t$piece = weGlossaryReplace::doReplaceWords($piece, $foreignword);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$replBody .= $piece;\n\t\t\t\t$before = $piece;\n\t\t\t}\n\t\t\t\n\t\t\t/*\n\t\t\tthis is slower then the code before\n\t\t\t$replBody = GlossaryReplace::doReplaceWords($replBody, $link);\n\t\t\t$replBody = GlossaryReplace::doReplaceWords($replBody, $acronym);\n\t\t\t$replBody = GlossaryReplace::doReplaceWords($replBody, $abbreviation);\n\t\t\t$replBody = GlossaryReplace::doReplaceWords($replBody, $foreign);\n\t\t\t*/\n\t\t\t\n\t\t\t$replBody = str_replace(\"@@@we@@@\", \"'\", $replBody);\n\t\t\tif(isset($matches[0])) {\n\t\t\t\treturn str_replace($srcBody, $replBody, $src);\n\t\t\t\t\n\t\t\t} else {\n\t\t\t\treturn $replBody;\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t}", "function render_global_se1($game_id) {\n\tglobal $UNI,$extinfo,$games_dir, $systems,$preview, $directories, $gen_new_maps, $uv_show_warp_numbers;\n\n\t$size = $UNI['size'] + ($UNI['map_border'] * 2);\n\t$offset_x = $UNI['map_border'];\n\t$offset_y = $UNI['map_border'];\n\t$central_star = 1;\n\n\t$im = imagecreatetruecolor($size,$size);\n\n\t//allocate the colours\n\t$color_bg = ImageColorAllocate($im, $UNI['bg_color'][0], $UNI['bg_color'][1], $UNI['bg_color'][2]);\n\t$color_st = ImageColorAllocate($im, $UNI['num_color'][0], $UNI['num_color'][1], $UNI['num_color'][2]);\n\t$color_sd = ImageColorAllocate($im, $UNI['star_color'][0], $UNI['star_color'][1], $UNI['star_color'][2] );\n\t$color_sl = ImageColorAllocate($im, $UNI['link_color'][0], $UNI['link_color'][1], $UNI['link_color'][2] );\n\t$color_sh = ImageColorAllocate($im, $UNI['num_color3'][0], $UNI['num_color3'][1], $UNI['num_color3'][2] );\n\t$color_l = ImageColorAllocate($im, $UNI['label_color'][0], $UNI['label_color'][1], $UNI['label_color'][2] );\n\t$worm_1way_color = ImageColorAllocate($im,$UNI['worm_one_way_color'][0], $UNI['worm_one_way_color'][1], $UNI['worm_one_way_color'][2] );\n\t$worm_2way_color = ImageColorAllocate($im,$UNI['worm_two_way_color'][0], $UNI['worm_two_way_color'][1], $UNI['worm_two_way_color'][2] );\n\n\t//get the star systems from the Db if using pre-genned map.\n\tif (isset($gen_new_maps)) {\n\t\tdb(\"select (star_id -1) as num, x_loc, y_loc, wormhole, CONCAT(link_1 -1, ',', link_2 -1, ',', link_3 -1, ',', link_4 -1, ',', link_5 -1, ',', link_6 -1) as links from ${game_id}_stars order by star_id asc\");\n\t\twhile($systems[] = dbr(1)); //dump all entries into $systems.\n\t\tunset($systems[count($systems) - 1]); //remove a surplus entry\n\t}\n\n\t//process stars\n\tforeach($systems as $star){\n\t\tif(!empty($star['links'])){//don't link all systems to 1 automatically.\n\t\t\t$star_links = array_map(\"plus_one\", explode(',', $star['links']));\n\t\t\t$star_id = $star['num'] + 1;\n\n\t\t\tforeach($star_links as $link){ //make star links\n\t\t\t\tif($link < 1){\n\t\t\t\t\tcontinue 1;\n\t\t\t\t}\n\t\t\t\t$other_star = $systems[$link -1];//set other_star to the link destination.\n\t\t\t\timageline($im, ($star['x_loc'] + $offset_x), ($star['y_loc'] + $offset_y), ($other_star['x_loc'] + $offset_x), ($other_star['y_loc'] + $offset_y), $color_sl);\n\t\t\t}\n\t\t}\n\n\t\tif(!empty($star['wormhole'])) {//Wormhole Manipulation\n\t\t\t$other_star = $systems[$star['wormhole'] -1];\n\t\t\tif($other_star['wormhole'] == $star_id){ //two way\n\t\t\t\timageline($im, ($star['x_loc'] + $offset_x), ($star['y_loc'] + $offset_y), ($other_star['x_loc'] + $offset_x), ($other_star['y_loc'] + $offset_y), $worm_2way_color);\n\t\t\t} else { //one way\n\t\t\t\timageline($im, ($star['x_loc'] + $offset_x), ($star['y_loc'] + $offset_y), ($other_star['x_loc'] + $offset_x), ($other_star['y_loc'] + $offset_y), $worm_1way_color);\n\t\t\t}\n\t\t}\n\t}\n\n\tforeach($systems as $star){ //place the star itself. This is done after the lines, so the text comes on top.\n\t\t$star_id = $star['num'] + 1;\n\t\t$central_star = 1;\n\n\t\tif($star_id == $central_star) {//Place and Highlight central system\n\t\t\timagestring($im, $UNI['num_size'], ($star['x_loc'] + $offset_x + 3), ($star['y_loc'] + $offset_y - 4), $star_id, $color_sh);\n\t\t\timagesetpixel($im, ($star['x_loc'] + $offset_x), ($star['y_loc'] + $offset_y), $color_sh);\n\t\t} else { //place normal Star\n\t\t\tif($uv_show_warp_numbers == 1) {\n\t\t\t\timagestring($im, $UNI['num_size'], ($star['x_loc'] + $offset_x + 3), ($star['y_loc'] + $offset_y - 4), $star_id, $color_st);\n\t\t\t}\n\t\t\timagesetpixel($im, ($star['x_loc'] + $offset_x), ($star['y_loc'] + $offset_y), $color_sd);\n\t\t}\n\t}\n\n\n\t//for just a preview we can quite while we're ahead.\n\tif (isset($preview)) {\n\t\theader(\"Content-type: image/png\");\n\t\timagepng($im);\n\t\timagedestroy($im);\n\t\texit;\n\t}\n\n\t//Draw title\n\timagestring($im, 5, (($size/2)-80), 5, \"Universal Star Map\", $color_l);\n\n\t//Create buffer image\n\t$bb_im = imagecreatetruecolor(($UNI['size'] + $UNI['localmapwidth']), ($UNI['size'] + $UNI['localmapheight']));\n\n\tImageColorAllocate($im, $UNI['bg_color'][0], $UNI['bg_color'][1], $UNI['bg_color'][2]);\n\tImageCopy($bb_im, $im, ($UNI['localmapwidth'] / 2), ($UNI['localmapheight'] / 2), $offset_x, $offset_y, $UNI['size'], $UNI['size']);\n\n\t//Create printable map\n\t$p_im = imagecreatetruecolor($size,$size);\n\tImageColorAllocate($p_im, $UNI['print_bg_color'][0], $UNI['print_bg_color'][1], $UNI['print_bg_color'][2]);\n\tImageCopy($p_im, $im, 0, 0, 0, 0, $size, $size);\n\n\t//Replace colors\n\t$index = ImageColorExact($p_im, $UNI['bg_color'][0], $UNI['bg_color'][1], $UNI['bg_color'][2]);\n\tImageColorSet($p_im, $index, $UNI['print_bg_color'][0], $UNI['print_bg_color'][1], $UNI['print_bg_color'][2]);\n\t$index = ImageColorExact($p_im, $UNI['link_color'][0], $UNI['link_color'][1], $UNI['link_color'][2]);\n\tImageColorSet($p_im, $index, $UNI['print_link_color'][0], $UNI['print_link_color'][1], $UNI['print_link_color'][2]);\n\t$index = ImageColorExact($p_im, $UNI['num_color'][0], $UNI['num_color'][1], $UNI['num_color'][2]);\n\tImageColorSet($p_im, $index, $UNI['print_num_color'][0], $UNI['print_num_color'][1], $UNI['print_num_color'][2]);\n\t$index = ImageColorExact($p_im, $UNI['num_color3'][0], $UNI['num_color3'][1], $UNI['num_color3'][2]);\n\tImageColorSet($p_im, $index, $UNI['print_num_color'][0], $UNI['print_num_color'][1], $UNI['print_num_color'][2]);\n\t$index = ImageColorExact($p_im, $UNI['star_color'][0], $UNI['star_color'][1], $UNI['star_color'][2]);\n\tImageColorSet($p_im, $index, $UNI['print_star_color'][0], $UNI['print_star_color'][1], $UNI['print_star_color'][2]);\n\n\t//Draw new label\n\tImageFilledRectangle($p_im, 0, 0, $size, $UNI['map_border'], ImageColorExact($p_im, $UNI['print_bg_color'][0], $UNI['print_bg_color'][1], $UNI['print_bg_color'][2]));\n\timagestring($p_im, 5, (($size/2)-80), 5, \"Printable Star Map\", ImageColorExact($p_im, $UNI['print_label_color'][0], $UNI['print_label_color'][1], $UNI['print_label_color'][2]));\n\n\t//Save map and finish\n\tif (!file_exists(\"img/{$game_id}_maps\")) {\n\t\tmkdir(\"img/{$game_id}_maps\", 0777);\n\t}\n\tImagePng($im, \"img/${game_id}_maps/sm_full.png\");\n\tImagePng($bb_im, \"img/${game_id}_maps/bb_full.png\");\n\tImagePng($p_im, \"img/${game_id}_maps/psm_full.png\");\n\n\tif($extinfo) {\n\t\tprint(\"<br><br><br><hr><img src='$directories[images]/${game_id}_maps/sm_full.png' onLoad='this.scrollIntoView();'>\");\n\n\t}\n\tImageDestroy($im);\n\tImageDestroy($bb_im);\n\tImageDestroy($p_im);\n}", "function heal() : void\n {\n echo sprintf('(Soin) %s', $this->getName()).PHP_EOL;\n\n // Vérification, est-ce que j'ai du mana ?\n // > Deuxième solution (= test de sortie)\n if ($this->getMagic < Wizard::FIREBALL_COST) {\n echo 'Oops.. pas assez de mana'.PHP_EOL;\n return;\n }\n\n $this->setHealth ( $this->getHealth() + self::HEAL_DAMAGE );\n $this->setMagic ( $this->getMagic() - self::HEAL_COST );\n\n //$this -> health = $this -> health + 50; (moins propre mais faisable)\n //$this -> magic = $this -> magic - 50; (moins propre mais faisable)\n }", "public function draw()\n\t{\n\t}", "function render_global_se1(game_id) {\n\tglobal UNI,extinfo,games_dir, systems,preview, directories, gen_new_maps, uv_show_warp_numbers;\n\n\tsize = UNI['size'] + (UNI['map_border'] * 2);\n\toffset_x = UNI['map_border'];\n\toffset_y = UNI['map_border'];\n\tcentral_star = 1;\n\n\tim = imagecreatetruecolor(size,size);\n\n\t//allocate the colours\n\tcolor_bg = ImageColorAllocate(im, UNI['bg_color'][0], UNI['bg_color'][1], UNI['bg_color'][2]);\n\tcolor_st = ImageColorAllocate(im, UNI['num_color'][0], UNI['num_color'][1], UNI['num_color'][2]);\n\tcolor_sd = ImageColorAllocate(im, UNI['star_color'][0], UNI['star_color'][1], UNI['star_color'][2] );\n\tcolor_sl = ImageColorAllocate(im, UNI['link_color'][0], UNI['link_color'][1], UNI['link_color'][2] );\n\tcolor_sh = ImageColorAllocate(im, UNI['num_color3'][0], UNI['num_color3'][1], UNI['num_color3'][2] );\n\tcolor_l = ImageColorAllocate(im, UNI['label_color'][0], UNI['label_color'][1], UNI['label_color'][2] );\n\tworm_1way_color = ImageColorAllocate(im,UNI['worm_one_way_color'][0], UNI['worm_one_way_color'][1], UNI['worm_one_way_color'][2] );\n\tworm_2way_color = ImageColorAllocate(im,UNI['worm_two_way_color'][0], UNI['worm_two_way_color'][1], UNI['worm_two_way_color'][2] );\n\n\t//get the star systems from the Db if using pre-genned map.\n\tif (isset(gen_new_maps)) {\n\t\tdb(\"select (star_id -1) as num, x_loc, y_loc, wormhole, CONCAT(link_1 -1, ',', link_2 -1, ',', link_3 -1, ',', link_4 -1, ',', link_5 -1, ',', link_6 -1) as links from {game_id}_stars order by star_id asc\");\n\t\twhile(systems[] = dbr(1)); //dump all entries into systems.\n\t\tunset(systems[count(systems) - 1]); //remove a surplus entry\n\t}\n\n\t//process stars\n\tfor each systems as star){\n\t\tif(!empty(star['links'])){//don't link all systems to 1 automatically.\n\t\t\tstar_links = array_map(\"plus_one\", explode(',', star['links']));\n\t\t\tstar_id = star['num'] + 1;\n\n\t\t\tfor each star_links as link){ //make star links\n\t\t\t\tif(link < 1){\n\t\t\t\t\tcontinue 1;\n\t\t\t\t}\n\t\t\t\tother_star = systems[link -1];//set other_star to the link destination.\n\t\t\t\timageline(im, (star['x_loc'] + offset_x), (star['y_loc'] + offset_y), (other_star['x_loc'] + offset_x), (other_star['y_loc'] + offset_y), color_sl);\n\t\t\t}\n\t\t}", "public function generateGCodes() {\n \n // Generate Pre-Amble\n array_push($this->gcodes, \"G21\");\n array_push($this->gcodes, \"G64 P0.01\");\n array_push($this->gcodes, \"M1\");\n array_push($this->gcodes, \"G1 F6000 X\" . 1000 * $this->start_x);\n array_push($this->gcodes, \"G1 F6000 Y\" . $this->start_s);\n array_push($this->gcodes, \"G1 F6000 Z\" . $this->start_z); \n array_push($this->gcodes, \"M1\");\n\n // Create all the passes\n for ($layer = 0; $layer < count($this->layers); $layer++) {\n $this->calculations($layer);\n \n $this->current_pass = 0;\n for ($i = 1; $i <= $this->calculatePassesToCoverMandrel($layer) * 2; $i++) {\n $this->generatePass($layer);\n }\n \n \n // User Interation between layers.\n array_push($this->gcodes, \"M1\");\n \n // We want overlap between layers, so we advance by 1/2 distance for ensuring NO overlap.\n $feedrate = $this->transition_feed_rate + 91;\n $s_travel = $this->actualCFAdvancementAngle($layer)/2; // Divisor of 2 is key here...\n $z_angle = 0; // Should be at end...so z_angle should already be ZERO.\n $this->generateYCode($layer, $s_travel, $z_angle, $feedrate); \n\n \n }\n \n \n // Rotation - basically make it spin a long time while moving Carriage back and forward with hot air-gun going\n // First we put the hot air-gun into position\n $x_pos = $this->start_x + 0.170;\n array_push($this->gcodes, \"G1 F6000 X\" . 1000 * $x_pos);\n $this->current_x = $x_pos; // We know the gun starting point is 170mm ahead of everything. So we don't heat the Motor!!\n \n // $this->current_s = 0;\n // We wait for user to turn on Hot Air Gun, Cut the CF ... No more tow winding...\n // ... and then press 'S' key to resume...\n array_push($this->gcodes, \"M1\"); \n \n \n // Each travel = about 20 seconds. i.e. 6000 mm/min\n $feedrate = 6000;\n \n // The length of the piece we are winding.\n $x_travel = ($this->max_x - $this->start_x);\n \n // $x_travel_trail = 0.17; // 2 Meters\n $s_travel = 1800; // 1800 degrees (i.e. 5 revolutions)\n $z_angle = 0; // No need to move this.\n $cf_angle = 45; // Middle of the range Angle\n for ($i = 0; $i < 720; $i++) {\n $this->generateXYCode(null, $x_travel, $s_travel, $z_angle, $feedrate, $cf_angle);\n $this->generateXYCode(null, -1 * $x_travel, $s_travel, $z_angle, $feedrate, $cf_angle);\n }\n \n // Generate Post \n array_push($this->gcodes, \"M2\");\n array_push($this->gcodes, \"$\");\n }", "function start() {\n\t\t\t\n\t\t\t$configFile = WE_GLOSSARY_MODULE_DIR . \"/we_conf_glossary_settings.inc.php\";\n\t\t\tif(!file_exists($configFile) || !is_file($configFile)) {\n\t\t\t\tinclude_once(WE_GLOSSARY_MODULE_DIR . \"/weGlossarySettingControl.class.php\");\n\t\t\t\tweGlossarySettingControl::saveSettings(true);\n\t\t\t}\n\t\t\tinclude($configFile);\n\t\t\t\n\t\t\tif(isset($GLOBALS['weGlossaryAutomaticReplacement']) && $GLOBALS['weGlossaryAutomaticReplacement']) {\n\t\t\t\tob_start();\n\t\t\t\t\n\t\t\t}\n\t\t\t\n\t\t}" ]
[ "0.60302365", "0.53800976", "0.52602565", "0.52602565", "0.52602565", "0.5107751", "0.5097797", "0.50821596", "0.5074003", "0.5048023", "0.5011008", "0.50071424", "0.49670404", "0.49622", "0.4936485", "0.49227896", "0.48723918", "0.48579234", "0.48579234", "0.48579234", "0.48579234", "0.48420325", "0.4830467", "0.48174876", "0.4811668", "0.47943366", "0.47650197", "0.47538844", "0.47405767", "0.47180736" ]
0.7480806
0
Darken a given color by $steps number
private function darken($color, $steps=10) { //Convert string color #xxxxxx to rgb first if (is_string($color)) $color = $this->hex2rgb($color); for ($i = 0 ; $i < 3 ; $i++) { $color[$i] = $color[$i] - $steps; if ($color[$i] < 0) $color[$i] = 0; } return $this->rgb2hex($color); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function eggnews_hover_color($hex, $steps)\n {\n $steps = max(-255, min(255, $steps));\n\n // Normalize into a six character long hex string\n $hex = str_replace('#', '', $hex);\n if (strlen($hex) == 3) {\n $hex = str_repeat(substr($hex, 0, 1), 2) . str_repeat(substr($hex, 1, 1), 2) . str_repeat(substr($hex, 2, 1), 2);\n }\n\n // Split into three parts: R, G and B\n $color_parts = str_split($hex, 2);\n $return = '#';\n\n foreach ($color_parts as $color) {\n $color = hexdec($color); // Convert to decimal\n $color = max(0, min(255, $color + $steps)); // Adjust color\n $return .= str_pad(dechex($color), 2, '0', STR_PAD_LEFT); // Make two char hex code\n }\n\n return $return;\n }", "function storefront_adjust_color_brightness( $hex, $steps ) {\n\t// Steps should be between -255 and 255. Negative = darker, positive = lighter.\n\t$steps = max( -255, min( 255, $steps ) );\n\n\t// Format the hex color string.\n\t$hex = str_replace( '#', '', $hex );\n\n\tif ( 3 == strlen( $hex ) ) {\n\t\t$hex = str_repeat( substr( $hex, 0, 1 ), 2 ) . str_repeat( substr( $hex, 1, 1 ), 2 ) . str_repeat( substr( $hex, 2, 1 ), 2 );\n\t}\n\n\t// Get decimal values.\n\t$r = hexdec( substr( $hex, 0, 2 ) );\n\t$g = hexdec( substr( $hex, 2, 2 ) );\n\t$b = hexdec( substr( $hex, 4, 2 ) );\n\n\t// Adjust number of steps and keep it inside 0 to 255.\n\t$r = max( 0, min( 255, $r + $steps ) );\n\t$g = max( 0, min( 255, $g + $steps ) );\n\t$b = max( 0, min( 255, $b + $steps ) );\n\n\t$r_hex = str_pad( dechex( $r ), 2, '0', STR_PAD_LEFT );\n\t$g_hex = str_pad( dechex( $g ), 2, '0', STR_PAD_LEFT );\n\t$b_hex = str_pad( dechex( $b ), 2, '0', STR_PAD_LEFT );\n\n\treturn '#' . $r_hex . $g_hex . $b_hex;\n}", "function adjust_brightness( $hex, $steps ) {\n\n\t// Steps should be between -255 and 255. Negative = darker, positive = lighter\n\t$steps = max( -255, min( 255, $steps ) );\n\n\t// Normalize into a six character long hex string\n\t$hex = str_replace( '#', '', $hex );\n\tif ( 3 === strlen( $hex ) ) {\n\t\t$hex = str_repeat( substr( $hex, 0, 1 ), 2 ) . str_repeat( substr( $hex, 1, 1 ), 2 ) . str_repeat( substr( $hex, 2, 1 ), 2 );\n\t}\n\n\t// Split into three parts: R, G and B\n\t$color_parts = str_split( $hex, 2 );\n\t$return = '#';\n\n\tforeach ( $color_parts as $color ) {\n\t\t$color = hexdec( $color ); // Convert to decimal\n\t\t$color = max( 0, min( 255, $color + $steps ) ); // Adjust color\n\t\t$return .= str_pad( dechex( $color ), 2, '0', STR_PAD_LEFT ); // Make two char hex code\n\t}\n\n\treturn $return;\n\n}", "function adjustBrightness($hex, $steps) {\n\t// created by Torkil Johnsen http://stackoverflow.com/posts/11951022/revisions\n // Steps should be between -255 and 255. Negative = darker, positive = lighter\n $steps = max(-255, min(255, $steps));\n // Normalize into a six character long hex string\n $hex = str_replace('#', '', $hex);\n if (strlen($hex) == 3) {\n $hex = str_repeat(substr($hex,0,1), 2).str_repeat(substr($hex,1,1), 2).str_repeat(substr($hex,2,1), 2);\n }\n // Split into three parts: R, G and B\n $color_parts = str_split($hex, 2);\n $return = '#';\n foreach ($color_parts as $color) {\n $color = hexdec($color); // Convert to decimal\n $color = max(0,min(255,$color + $steps)); // Adjust color\n $return .= str_pad(dechex($color), 2, '0', STR_PAD_LEFT); // Make two char hex code\n }\n return $return;\n}", "function adjustBrightness($hex, $steps) {\n\t\t\t $steps = max(-255, min(255, $steps));\n\n\t\t\t // Normalize into a six character long hex string\n\t\t\t $hex = str_replace('#', '', $hex);\n\t\t\t if (strlen($hex) == 3) {\n\t\t\t $hex = str_repeat(substr($hex,0,1), 2).str_repeat(substr($hex,1,1), 2).str_repeat(substr($hex,2,1), 2);\n\t\t\t }\n\n\t\t\t // Split into three parts: R, G and B\n\t\t\t $color_parts = str_split($hex, 2);\n\t\t\t $return = '#';\n\n\t\t\t foreach ($color_parts as $color) {\n\t\t\t $color = hexdec($color); // Convert to decimal\n\t\t\t $color = max(0,min(255,$color + $steps)); // Adjust color\n\t\t\t $return .= str_pad(dechex($color), 2, '0', STR_PAD_LEFT); // Make two char hex code\n\t\t\t }\n\n\t\t\t return $return;\n\t\t\t}", "static public function adjust_brightness( $value, $steps, $type ) {\n\t\t$is_rgb = strstr( $value, 'rgb' );\n\n\t\t// Get rgb vars.\n\t\tif ( $is_rgb ) {\n\t\t\t$rgb = explode( ',', preg_replace( '/[a-z\\(\\)]/', '', $value ) );\n\t\t\t$r = $rgb[0];\n\t\t\t$g = $rgb[1];\n\t\t\t$b = $rgb[2];\n\t\t\t$a = count( $rgb ) > 3 ? $rgb[3] : false;\n\t\t} else {\n\t\t\t$rgb = self::hex_to_rgb( $value );\n\t\t\t$r = $rgb['r'];\n\t\t\t$g = $rgb['g'];\n\t\t\t$b = $rgb['b'];\n\t\t}\n\n\t\t// Should we darken the color?\n\t\tif ( 'reverse' == $type && $r + $g + $b > 382 ) {\n\t\t\t$steps = -$steps;\n\t\t} elseif ( 'darken' == $type ) {\n\t\t\t$steps = -$steps;\n\t\t}\n\n\t\t// Adjustr the rgb values.\n\t\t$steps = max( -255, min( 255, $steps ) );\n\t\t$r = max( 0, min( 255, $r + $steps ) );\n\t\t$g = max( 0, min( 255, $g + $steps ) );\n\t\t$b = max( 0, min( 255, $b + $steps ) );\n\n\t\t// Return the adjusted color value.\n\t\tif ( $is_rgb ) {\n\t\t\t$value = false === $a ? \"rgb($r,$g,$b)\" : \"rgba($r,$g,$b,$a)\";\n\t\t} else {\n\t\t\t$r_hex = str_pad( dechex( $r ), 2, '0', STR_PAD_LEFT );\n\t\t\t$g_hex = str_pad( dechex( $g ), 2, '0', STR_PAD_LEFT );\n\t\t\t$b_hex = str_pad( dechex( $b ), 2, '0', STR_PAD_LEFT );\n\t\t\t$value = $r_hex . $g_hex . $b_hex;\n\t\t}\n\n\t\treturn $value;\n\t}", "function pearl_adjust_brightness($hex, $steps)\r\r\n{\r\r\n\t$steps = max(-255, min(255, $steps));\r\r\n\r\r\n\t// Normalize into a six character long hex string\r\r\n\t$hex = str_replace('#', '', $hex);\r\r\n\tif (strlen($hex) == 3) {\r\r\n\t\t$hex = str_repeat(substr($hex, 0, 1), 2) . str_repeat(substr($hex, 1, 1), 2) . str_repeat(substr($hex, 2, 1), 2);\r\r\n\t}\r\r\n\r\r\n\t// Split into three parts: R, G and B\r\r\n\t$color_parts = str_split($hex, 2);\r\r\n\t$return = '#';\r\r\n\r\r\n\tforeach ($color_parts as $color) {\r\r\n\t\t$color = hexdec($color); // Convert to decimal\r\r\n\t\t$color = max(0, min(255, $color + $steps)); // Adjust color\r\r\n\t\t$return .= str_pad(dechex($color), 2, '0', STR_PAD_LEFT); // Make two char hex code\r\r\n\t}\r\r\n\r\r\n\treturn $return;\r\r\n}", "function adjustBrightness($hex, $steps) {\n $steps = max(-255, min(255, $steps));\n\n // Format the hex color string\n $hex = str_replace('#', '', $hex);\n if (strlen($hex) == 3) {\n $hex = str_repeat(substr($hex,0,1), 2).str_repeat(substr($hex,1,1), 2).str_repeat(substr($hex,2,1), 2);\n }\n\n // Get decimal values\n $r = hexdec(substr($hex,0,2));\n $g = hexdec(substr($hex,2,2));\n $b = hexdec(substr($hex,4,2));\n\n // Adjust number of steps and keep it inside 0 to 255\n $r = max(0,min(255,$r + $steps));\n $g = max(0,min(255,$g + $steps)); \n $b = max(0,min(255,$b + $steps));\n\n $r_hex = str_pad(dechex($r), 2, '0', STR_PAD_LEFT);\n $g_hex = str_pad(dechex($g), 2, '0', STR_PAD_LEFT);\n $b_hex = str_pad(dechex($b), 2, '0', STR_PAD_LEFT);\n\n return '#'.$r_hex.$g_hex.$b_hex;\n}", "function idaho_webmaster_adjust_brightness( $hex, $steps ) {\n\t\t// Steps should be between -255 and 255. Negative = darker, positive = lighter.\n\t\t$steps = max( -255, min( 255, $steps ) );\n\n\t\t// Normalize into a six character long hex string.\n\t\t$hex = str_replace( '#', '', $hex );\n\n\t\t// If the string is 3 length then repeat to 6.\n\t\tif ( 3 === strlen( $hex ) ) {\n\t\t\t$hex = str_repeat( substr( $hex,0,1 ), 2 ).str_repeat( substr( $hex,1,1 ), 2 ).str_repeat( substr( $hex,2,1 ), 2 );\n\t\t}\n\n\t\t// Split into three parts: R, G and B.\n\t\t$color_parts = str_split( $hex, 2 );\n\t\t$return = '#';\n\n\t\tforeach ( $color_parts as $color ) {\n\t\t\t$color = hexdec( $color ); // Convert to decimal.\n\t\t\t$color = max( 0, min( 255, $color + $steps ) ); // Adjust color.\n\t\t\t$return .= str_pad( dechex( $color ), 2, '0', STR_PAD_LEFT ); // Make two char hex code.\n\t\t}\n\n\t\treturn $return;\n\t}", "function adjustBrightness($hex, $steps) {\n $steps = max(-255, min(255, $steps));\n\n // Normalize into a six character long hex string\n $hex = str_replace('#', '', $hex);\n if (strlen($hex) == 3) {\n $hex = str_repeat(substr($hex,0,1), 2).str_repeat(substr($hex,1,1), 2).str_repeat(substr($hex,2,1), 2);\n }\n\n // Split into three parts: R, G and B\n $color_parts = str_split($hex, 2);\n $return = '#';\n\n foreach ($color_parts as $color) {\n $color = hexdec($color); // Convert to decimal\n $color = max(0,min(255,$color + $steps)); // Adjust color\n $return .= str_pad(dechex($color), 2, '0', STR_PAD_LEFT); // Make two char hex code\n }\n\n return $return;\n }", "function adjustBrightness($hex, $steps) {\n\t $steps = max(-255, min(255, $steps));\n\n\t // Format the hex color string\n\t $hex = str_replace('#', '', $hex);\n\t if (strlen($hex) == 3) {\n\t $hex = str_repeat(substr($hex,0,1), 2).str_repeat(substr($hex,1,1), 2).str_repeat(substr($hex,2,1), 2);\n\t }\n\n\t // Get decimal values\n\t $r = hexdec(substr($hex,0,2));\n\t $g = hexdec(substr($hex,2,2));\n\t $b = hexdec(substr($hex,4,2));\n\n\t // Adjust number of steps and keep it inside 0 to 255\n\t $r = max(0,min(255,$r + $steps));\n\t $g = max(0,min(255,$g + $steps)); \n\t $b = max(0,min(255,$b + $steps));\n\n\t $r_hex = str_pad(dechex($r), 2, '0', STR_PAD_LEFT);\n\t $g_hex = str_pad(dechex($g), 2, '0', STR_PAD_LEFT);\n\t $b_hex = str_pad(dechex($b), 2, '0', STR_PAD_LEFT);\n\n\t return '#'.$r_hex.$g_hex.$b_hex;\n\t}", "function ts_adjustBrightness($hex, $steps) {\r\n $steps = max(-255, min(255, $steps));\r\n // Format the hex color string\r\n $hex = str_replace('#', '', $hex);\r\n if (strlen($hex) == 3) {\r\n $hex = str_repeat(substr($hex,0,1), 2).str_repeat(substr($hex,1,1), 2).str_repeat(substr($hex,2,1), 2);\r\n }\r\n // Get decimal values\r\n $r = hexdec(substr($hex,0,2));\r\n $g = hexdec(substr($hex,2,2));\r\n $b = hexdec(substr($hex,4,2));\r\n // Adjust number of steps and keep it inside 0 to 255\r\n $r = max(0,min(255,$r + $steps));\r\n $g = max(0,min(255,$g + $steps)); \r\n $b = max(0,min(255,$b + $steps));\r\n $r_hex = str_pad(dechex($r), 2, '0', STR_PAD_LEFT);\r\n $g_hex = str_pad(dechex($g), 2, '0', STR_PAD_LEFT);\r\n $b_hex = str_pad(dechex($b), 2, '0', STR_PAD_LEFT);\r\n return '#'.$r_hex.$g_hex.$b_hex;\r\n}", "function kirki_twentytwelve_alter_color( $color ) {\n return Kirki_Color::adjust_brightness( $color, -50 );\n}", "function modifyColor($color, $direction) {\r\n if(!preg_match('/^#?([0-9a-f]{2})([0-9a-f]{2})([0-9a-f]{2})$/i', $color, $elements));\r\n\r\n if(!isset($direction) || $direction == \"lighter\") {\r\n $modify = 45;\r\n } else {\r\n $modify = -50;\r\n }\r\n\r\n for($index = 1; $index <= 3; $index++) {\r\n $elements[$index] = hexdec($elements[$index]);\r\n $elements[$index] = round($elements[$index] + $modify);\r\n\r\n if($elements[$index] > 255) {\r\n $elements[$index] = 255;\r\n } elseif(\r\n $elements[$index] < 0) { $elements[$index] = 0;\r\n }\r\n $elements[$index] = dechex($elements[$index]);\r\n }\r\n $result = '#' . str_pad($elements[1],2,\"0\",STR_PAD_LEFT) . str_pad($elements[2],2,\"0\",STR_PAD_LEFT) . str_pad($elements[3],2,\"0\",STR_PAD_LEFT);\r\n return $result;\r\n }", "function mts_lighten_color( $color, $amount = 10 ) {\n\n\t$hsl = mts_hex_to_hsl( $color );\n\n\t// Lighten\n\t$hsl['L'] = ( $hsl['L'] * 100 ) + $amount;\n\t$hsl['L'] = ( $hsl['L'] > 100 ) ? 1 : $hsl['L']/100;\n\t\n\t// Return as HEX\n\treturn mts_hsl_to_hex($hsl);\n}", "public static function adjustBrightness($hexColor, $steps)\n {\n // Steps should be between -255 and 255. Negative = darker, positive = lighter\n $steps = max(-255, min(255, $steps));\n\n // Normalize into a six character long hex string\n $hexColor = self::normalize($hexColor);\n\n // Split into three parts: R, G and B\n $color_parts = str_split($hexColor, 2);\n $return = '#';\n\n foreach ($color_parts as $color) {\n $color = hexdec($color); // Convert to decimal\n $color = max(0, min(255, $color + $steps)); // Adjust color\n $return .= str_pad(dechex($color), 2, '0', STR_PAD_LEFT); // Make two char hex code\n }\n\n return $return;\n }", "function mts_darken_color( $color, $amount = 10 ) {\n\n\t$hsl = mts_hex_to_hsl( $color );\n\n\t// Darken\n\t$hsl['L'] = ( $hsl['L'] * 100 ) - $amount;\n\t$hsl['L'] = ( $hsl['L'] < 0 ) ? 0 : $hsl['L']/100;\n\n\t// Return as HEX\n\treturn mts_hsl_to_hex($hsl);\n}", "function originaltint(){\n\tglobal $hue, $luminance, $saturation;\n\t$temp_satu = round($saturation/2 ,0);\n\tif ($luminance < 50) {\n\t\t$luminance += 50;\n\t}elseif($luminance > 60) {\n\t\t$luminance = ($luminance/2) + 50;\n\t}\n\techo \"hsl(\". round($hue, 0). \",\" . $temp_satu . \"%,\" . $luminance.\"%)\"; \n}", "function complimenttint(){\n\tglobal $hue, $luminance, $saturation;\n\t$temp_satu = round($saturation/2 ,0);\n\tif ($luminance < 50) {\n\t\t$luminance += 50;\n\t}elseif($luminance > 50) {\n\t\t$luminance = ($luminance/2) + 50;\n\n\t}\n\techo \"hsl(\". dethue($hue) . \",\" . $temp_satu . \"%,\" . $luminance.\"%)\"; \n}", "function getColor($i)\n{\n $colors = array(\"e1e1e1\", \"d1d1d1\", \"c1c1c1\", \"b1b1b1\");\n $size = sizeof($colors);\n\n while ($i >= $size) {\n $i -= $size;\n }\n\n return \"#\" . $colors[$i];\n}", "protected function get_colour($i,$n,$darklight=0) {\n $hue = $i / ($n - 1) * 120;\n $hue = pow($hue,1.5)/sqrt(120); // this biases the curve a little bit toward the red/yellow end\n if($darklight == -1) {\n $s = 1.0; $v = 0.8;\n } elseif ($darklight == 0) {\n $s = 0.9; $v = 0.9;\n } elseif ($darklight == 1) {\n $s = 0.5; $v = 1.0;\n }\n return $this->hsv_to_rgb($hue,$s,$v);\n }", "protected function darknessCoefficient()\n {\n return ($this->red() * 299 + $this->green() * 587 + $this->blue() * 114) / 1000;\n }", "function complimentshadow() {\n\tglobal $hue, $luminance, $saturation;\n\t$half_lumi = $luminance/2;\n\t$temp_satu = $saturation + $half_lumi;\n\techo \"hsl(\". dethue($hue) . \",\" . $temp_satu . \"%,\" . $half_lumi .\"%)\"; \n}", "public function resetColor();", "public function color($red, $green, $blue);", "function dameColor($numero) {\n if ($numero == 0) {\n return '#DC656C';\n } else if ($numero == 1) {\n return '#6754A7';\n } else if ($numero == 2) {\n return '#74B559';\n } else if ($numero == 3) {\n return '#DC656C';\n } else if ($numero == 4) {\n return '#CCBC98';\n } else if ($numero == 5) {\n return '#FABB33';\n } else if ($numero == 6) {\n return '#F2E8D9';\n } else if ($numero == 7) {\n return '#007157';\n } else {\n return '#E8D4BC';\n }\n}", "function originalshadow(){\n\tglobal $hue, $luminance, $saturation;\n\t$half_lumi = $luminance/2;\n\t$temp_satu = $saturation + $half_lumi;\n\techo \"hsl(\". rand(1,250) . \",\" . $temp_satu . \"%,\" . $half_lumi .\"%)\"; \n}", "public function stopColorFlow(): void;", "protected function nextColor()\n {\n return $color = $this->colors[$this->index++ % $this->count];\n }", "function colour($val) {\n if($val >= 0 && $val <=67) {\n return \"#DAF7A6\";\n }\n if($val >= 68 && $val <=134) {\n return \"#80FF00\";\n }\n if($val >= 135 && $val <=200) {\n return \"#94C800\";\n }\n if($val >= 201 && $val <=267) {\n return \"#F3F000\";\n }\n if($val >= 268 && $val <=334) {\n return \"#FFC300\";\n }\n if($val >= 335 && $val <=400) {\n return \"#F19A00\";\n }\n if($val >= 401 && $val <=467) {\n return \"#FF5F5F\";\n }\n if($val >= 468 && $val <=534) {\n return \"#FE0404\";\n }\n if($val >= 535 && $val <=600) {\n return \"#900C3F\";\n }\n if($val >= 601) {\n return \"#BE02E3\";\n }\n\n}" ]
[ "0.656798", "0.6479915", "0.64714676", "0.64157844", "0.6304166", "0.6290776", "0.62879586", "0.62722045", "0.6252504", "0.6241196", "0.6183415", "0.6171396", "0.60566473", "0.5934108", "0.5933531", "0.59130627", "0.578636", "0.5705873", "0.56499106", "0.557756", "0.54957396", "0.54526997", "0.5363032", "0.53624374", "0.52761376", "0.5221854", "0.5204299", "0.51708853", "0.5170608", "0.5163581" ]
0.7546732
0
Draw the gradient on screen, or into a file specified
public function draw($file=null) { //Start the fun! $this->final = new Imagick(); //We want to block gradient which is ridiculously big if ($this->width() > $this->maxWidth) { $this->width($this->maxWidth); } if ($this->height() > $this->maxHeight) { $this->height($this->maxHeight); } $this->final->newImage($this->width(), $this->height(), '#ffffff', $this->imageType()); $this->doGradient(); $this->doGlossy(); if (!empty($file)) { $this->final->writeImage($file); }else{ //echo $mime = $this->imageType(); header("Content-Type: image/{$mime}"); echo $this->final; } //Cleanup $this->final->destroy(); return true; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function outputDualGradientPicture(string $path): void;", "function drawGraphAreaGradient($R,$G,$B,$Decay,$Target=TARGET_GRAPHAREA)\r\n\t{\r\n\t\tif ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; }\r\n\t\tif ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; }\r\n\t\tif ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; }\r\n\r\n\t\tif ( $Target == TARGET_GRAPHAREA ) { $X1 = $this->GArea_X1+1; $X2 = $this->GArea_X2-1; $Y1 = $this->GArea_Y1+1; $Y2 = $this->GArea_Y2; }\r\n\t\tif ( $Target == TARGET_BACKGROUND ) { $X1 = 0; $X2 = $this->XSize; $Y1 = 0; $Y2 = $this->YSize; }\r\n\r\n\t\t/* Positive gradient */\r\n\t\tif ( $Decay > 0 )\r\n\t\t{\r\n\t\t\t$YStep = ($Y2 - $Y1 - 2) / $Decay;\r\n\t\t\tfor($i=0;$i<=$Decay;$i++)\r\n\t\t\t{\r\n\t\t\t\t$R-=1;$G-=1;$B-=1;\r\n\t\t\t\t$Yi1 = $Y1 + ( $i * $YStep );\r\n\t\t\t\t$Yi2 = ceil( $Yi1 + ( $i * $YStep ) + $YStep );\r\n\t\t\t\tif ( $Yi2 >= $Yi2 ) { $Yi2 = $Y2-1; }\r\n\r\n\t\t\t\t$C_Background = $this->AllocateColor($this->Picture,$R,$G,$B);\r\n\t\t\t\timagefilledrectangle($this->Picture,$X1,$Yi1,$X2,$Yi2,$C_Background);\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\t/* Negative gradient */\r\n\t\tif ( $Decay < 0 )\r\n\t\t{\r\n\t\t\t$YStep = ($Y2 - $Y1 - 2) / -$Decay;\r\n\t\t\t$Yi1 = $Y1; $Yi2 = $Y1+$YStep;\r\n\t\t\tfor($i=-$Decay;$i>=0;$i--)\r\n\t\t\t{\r\n\t\t\t\t$R+=1;$G+=1;$B+=1;\r\n\t\t\t\t$C_Background = $this->AllocateColor($this->Picture,$R,$G,$B);\r\n\t\t\t\timagefilledrectangle($this->Picture,$X1,$Yi1,$X2,$Yi2,$C_Background);\r\n\r\n\t\t\t\t$Yi1+= $YStep;\r\n\t\t\t\t$Yi2+= $YStep;\r\n\t\t\t\tif ( $Yi2 >= $Yi2 ) { $Yi2 = $Y2-1; }\r\n\t\t\t}\r\n\t\t}\r\n\t}", "function drawGraphAreaGradient($R, $G, $B, $Decay, $Target = self::TARGET_GRAPHAREA) {\r\n\t\tself::validateRGB ( $R, $G, $B );\r\n\t\t\r\n\t\tif ($Target == self::TARGET_GRAPHAREA) {\r\n\t\t\t$X1 = $this->GArea_X1 + 1;\r\n\t\t\t$X2 = $this->GArea_X2 - 1;\r\n\t\t\t$Y1 = $this->GArea_Y1 + 1;\r\n\t\t\t$Y2 = $this->GArea_Y2;\r\n\t\t}\r\n\t\tif ($Target == self::TARGET_BACKGROUND) {\r\n\t\t\t$X1 = 0;\r\n\t\t\t$X2 = $this->XSize;\r\n\t\t\t$Y1 = 0;\r\n\t\t\t$Y2 = $this->YSize;\r\n\t\t}\r\n\t\t\r\n\t\t/*\r\n\t\t * Positive gradient\r\n\t\t */\r\n\t\tif ($Decay > 0) {\r\n\t\t\t$YStep = ($Y2 - $Y1 - 2) / $Decay;\r\n\t\t\tfor($i = 0; $i <= $Decay; $i ++) {\r\n\t\t\t\t$R -= 1;\r\n\t\t\t\t$G -= 1;\r\n\t\t\t\t$B -= 1;\r\n\t\t\t\t$Yi1 = $Y1 + ($i * $YStep);\r\n\t\t\t\t$Yi2 = ceil ( $Yi1 + ($i * $YStep) + $YStep );\r\n\t\t\t\tif ($Yi2 >= $Yi2) {\r\n\t\t\t\t\t$Yi2 = $Y2 - 1;\r\n\t\t\t\t}\r\n\t\t\t\t\r\n\t\t\t\t$C_Background = self::AllocateColor ( $this->Picture, $R, $G, $B );\r\n\t\t\t\timagefilledrectangle ( $this->Picture, $X1, $Yi1, $X2, $Yi2, $C_Background );\r\n\t\t\t}\r\n\t\t}\r\n\t\t\r\n\t\t/*\r\n\t\t * Negative gradient\r\n\t\t */\r\n\t\tif ($Decay < 0) {\r\n\t\t\t$YStep = ($Y2 - $Y1 - 2) / - $Decay;\r\n\t\t\t$Yi1 = $Y1;\r\n\t\t\t$Yi2 = $Y1 + $YStep;\r\n\t\t\tfor($i = - $Decay; $i >= 0; $i --) {\r\n\t\t\t\t$R += 1;\r\n\t\t\t\t$G += 1;\r\n\t\t\t\t$B += 1;\r\n\t\t\t\t$C_Background = self::AllocateColor ( $this->Picture, $R, $G, $B );\r\n\t\t\t\timagefilledrectangle ( $this->Picture, $X1, $Yi1, $X2, $Yi2, $C_Background );\r\n\t\t\t\t\r\n\t\t\t\t$Yi1 += $YStep;\r\n\t\t\t\t$Yi2 += $YStep;\r\n\t\t\t\tif ($Yi2 >= $Yi2) {\r\n\t\t\t\t\t$Yi2 = $Y2 - 1;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\t}", "public function draw();", "public function draw();", "private function draw()\r\n\t{\r\n\t\t$c = $this->colors['background']->getColorResource($this->image);\r\n\t\timagefilledrectangle($this->image, 0, 0, $this->radius - 1, $this->radius - 1, $c);\r\n\t\t\r\n\t\tif ($this->borderwidth > 0) {\r\n\t\t\t$c = $this->colors['border']->getColorResource($this->image);\r\n\t\t\timagefilledellipse($this->image, 0, 0, ($this->radius - 1) * 2, ($this->radius - 1) * 2, $c);\r\n\t\t\t$this->drawAA($this->radius, $this->colors['border'], $this->colors['background']);\r\n\t\t}\r\n\t\t\r\n\t\tif ($this->radius - $this->borderwidth > 0) {\r\n\t\t\t$c = $this->colors['foreground']->getColorResource($this->image);\r\n\t\t\timagefilledellipse($this->image, 0, 0, ($this->radius - $this->borderwidth - 1) * 2, ($this->radius - $this->borderwidth - 1) * 2, $c);\r\n\t\t\tif ($this->borderwidth > 0)\r\n\t\t\t\t$this->drawAA($this->radius - $this->borderwidth, $this->colors['foreground'], $this->colors['border']);\r\n\t\t\telse\r\n\t\t\t\t$this->drawAA($this->radius, $this->colors['foreground'], $this->colors['background']);\r\n\t\t}\r\n\t}", "function drawFromGIF($FileName,$X,$Y,$Alpha=100)\r\n\t{ $this->drawFromPicture(2,$FileName,$X,$Y,$Alpha); }", "function createColorGradientPalette($R1,$G1,$B1,$R2,$G2,$B2,$Shades)\r\n\t{\r\n\t\t$RFactor = ($R2-$R1)/$Shades;\r\n\t\t$GFactor = ($G2-$G1)/$Shades;\r\n\t\t$BFactor = ($B2-$B1)/$Shades;\r\n\r\n\t\tfor($i=0;$i<=$Shades-1;$i++)\r\n\t\t{\r\n\t\t\t$this->Palette[$i]['R'] = $R1+$RFactor*$i;\r\n\t\t\t$this->Palette[$i]['G'] = $G1+$GFactor*$i;\r\n\t\t\t$this->Palette[$i]['B'] = $B1+$BFactor*$i;\r\n\t\t}\r\n\t}", "function drawFromPNG($FileName,$X,$Y,$Alpha=100)\r\n\t{ $this->drawFromPicture(1,$FileName,$X,$Y,$Alpha); }", "public function drawImage($draw) {\n\t}", "private function doGlossy() {\r\n\t\t\r\n\t\tif (!$this->glossy()) return;\r\n\t\t\r\n\t\t$shine = new ImagickDraw();\r\n\t\t$shine->setFillColor(\"white\");\r\n\t\t$shine->setFillAlpha(0.2);\r\n\t\t$shine->rectangle(0,0,$this->width(),$this->height()/2);\r\n\t\t$this->final->drawImage($shine);\r\n\t\t$shine->destroy();\r\n\t}", "public function draw()\n\t{\n\t}", "function drawSkin($id, $class, $cClass, $px, $py, $ox, $oy){\n\t\t$i = 0;\n\t\tglobal $im;\n\t\t$out = \"\\n\\t\\t <div id='\".$id.\"' class='\".$cClass.\"'>\\n\\t\\t\";\n\t\tfor($y=0;$y<$py; $y++){\n\t\t\t$out .= \"<div class='line'>\";\n\t\t\tfor($x=0;$x<$px; $x++){\n\t\t\t\t$rgb = imagecolorat($im, $ox+$x, $oy+$y);\n\t\t\t\t$cols = imagecolorsforindex($im, $rgb);\n\t\t\t\t$r = dechex($cols['red']);\n\t\t\t\t$g = dechex($cols['green']);\n\t\t\t\t$b = dechex($cols['blue']);\n\t\t\t\tif (strlen($r) == 1) {\n\t\t\t\t\t$r = \"0\" . $r;\n\t\t\t\t}\n\t\t\t\tif (strlen($g) == 1) {\n\t\t\t\t\t$g = \"0\" . $g;\n\t\t\t\t}\n\t\t\t\tif (strlen($b) == 1) {\n\t\t\t\t\t$b = \"0\" . $b;\n\t\t\t\t}\n\t\t\t\t$out .= \"<div class='pixel \".$class.$x.\"x\".$y.\" \".$class.\"' style='background-color: #\".$r.$g.$b.\"' onclick='inputClick(\\\"\".$class.$x.\"x\".$y.\"\\\", \\\"\".$class.\"\\\")' onmouseover='inputOver(\\\"\".$class.$x.\"x\".$y.\"\\\")' ondragstart='return false;' ondrop='return false;'></div>\"; \n\t\t\t}\n\t\t\t$out .= \"</div> \\n\\t\\t\";\n\t\t\t$i++;\n\t\t}\n\t\t$out .= \"</div> \\n\";\n\t\techo $out;\n\t}", "function source_triangles($options)\n{\n\techo \"background: none; overflow: hidden;\";\n}", "function createColorGradientPalette($R1, $G1, $B1, $R2, $G2, $B2, $Shades) {\r\n\t\t$RFactor = ($R2 - $R1) / $Shades;\r\n\t\t$GFactor = ($G2 - $G1) / $Shades;\r\n\t\t$BFactor = ($B2 - $B1) / $Shades;\r\n\t\t\r\n\t\tfor($i = 0; $i <= $Shades - 1; $i ++) {\r\n\t\t\t$this->Palette [$i] = new Color($R1 + $RFactor * $i,$G1 + $GFactor * $i,$B1 + $BFactor * $i);\r\n\t\t}\r\n\t}", "function drawBackground($R,$G,$B)\r\n\t{\r\n\t\tif ( $R < 0 ) { $R = 0; } if ( $R > 255 ) { $R = 255; }\r\n\t\tif ( $G < 0 ) { $G = 0; } if ( $G > 255 ) { $G = 255; }\r\n\t\tif ( $B < 0 ) { $B = 0; } if ( $B > 255 ) { $B = 255; }\r\n\r\n\t\t$C_Background = $this->AllocateColor($this->Picture,$R,$G,$B);\r\n\t\timagefilledrectangle($this->Picture,0,0,$this->XSize,$this->YSize,$C_Background);\r\n\t}", "function shading(){\n\n\t\tif($this->Shading[3] == 0 || $this->Shading[3] == 1){\n\t\t\t$this->newimage = imagecreatetruecolor(1, $this->size[1]);\n\t\t\timagefilledrectangle($this->newimage, 0, 0, 1, $this->size[1], imagecolorallocate($this->newimage, hexdec(substr($this->Shadingcolor, 1, 2)), hexdec(substr($this->Shadingcolor, 3, 2)), hexdec(substr($this->Shadingcolor, 5, 2))));\n\t\t} else{\n\t\t\t$this->newimage = imagecreatetruecolor($this->size[0], 1);\n\t\t\timagefilledrectangle($this->newimage, 0, 0, $this->size[0], 1, imagecolorallocate($this->newimage, hexdec(substr($this->Shadingcolor, 1, 2)), hexdec(substr($this->Shadingcolor, 3, 2)), hexdec(substr($this->Shadingcolor, 5, 2))));\n\t\t}\n\t\tif($this->Shading[3] == 0){\n\t\t\t$shadingstrength = $this->Shading[1] / ($this->size[0] * ($this->Shading[2] / 100));\n\t\t\tfor($c = $this->size[0] - floor(($this->size[0] * ($this->Shading[2] / 100))); $c < $this->size[0]; $c++){\n\t\t\t\t$opacity = floor($shadingstrength * ($c - ($this->size[0] - floor(($this->size[0] * ($this->Shading[2] / 100))))));\n\t\t\t\timagecopymerge($this->im, $this->newimage, $c, 0, 0, 0, 1, $this->size[1], max(min($opacity, 100), 0));\n\t\t\t}\n\t\t} else if($this->Shading[3] == 1){\n\t\t\t$shadingstrength = $this->Shading[1] / ($this->size[0] * ($this->Shading[2] / 100));\n\t\t\tfor($c = 0; $c < floor($this->size[0] * ($this->Shading[2] / 100)); $c++){\n\t\t\t\t$opacity = floor($this->Shading[1] - ($c * $shadingstrength));\n\t\t\t\timagecopymerge($this->im, $this->newimage, $c, 0, 0, 0, 1, $this->size[1], max(min($opacity, 100), 0));\n\t\t\t}\n\t\t} else if($this->Shading[3] == 2){\n\t\t\t$shadingstrength = $this->Shading[1] / ($this->size[1] * ($this->Shading[2] / 100));\n\t\t\tfor($c = 0; $c < floor($this->size[1] * ($this->Shading[2] / 100)); $c++){\n\t\t\t\t$opacity = floor($this->Shading[1] - ($c * $shadingstrength));\n\t\t\t\timagecopymerge($this->im, $this->newimage, 0, $c, 0, 0, $this->size[0], 1, max(min($opacity, 100), 0));\n\t\t\t}\n\t\t} else{\n\t\t\t$shadingstrength = $this->Shading[1] / ($this->size[1] * ($this->Shading[2] / 100));\n\t\t\tfor($c = $this->size[1] - floor(($this->size[1] * ($this->Shading[2] / 100))); $c < $this->size[1]; $c++){\n\t\t\t\t$opacity = floor($shadingstrength * ($c - ($this->size[1] - floor(($this->size[1] * ($this->Shading[2] / 100))))));\n\t\t\t\timagecopymerge($this->im, $this->newimage, 0, $c, 0, 0, $this->size[0], 1, max(min($opacity, 100), 0));\n\t\t\t}\n\t\t}\n\t\timagedestroy($this->newimage);\n\n\t}", "public function color ($x, $y, $paintMethod) {}", "function Stroke()\r\n\t{\r\n\t\tif ( $this->ErrorReporting )\r\n\t\t$this->printErrors('GD');\r\n\r\n\t\t/* Save image map if requested */\r\n\t\tif ( $this->BuildMap )\r\n\t\t$this->SaveImageMap();\r\n\r\n\t\theader('Content-type: image/png');\r\n\t\timagepng($this->Picture);\r\n\t}", "function drawFromJPG($FileName,$X,$Y,$Alpha=100)\r\n\t{ $this->drawFromPicture(3,$FileName,$X,$Y,$Alpha); }", "function drawFromGIF($FileName, $X, $Y, $Alpha = 100) {\r\n\t\t$this->drawFromPicture ( 2, $FileName, $X, $Y, $Alpha );\r\n\t}", "public function draw()\n\t{\n\t\techo \"\\033[\" . $this->positionX . \";\" . $this->positionY . \"f fish #\" . $this->name;\n\t}", "protected function drawGraphArea()\n {\n $this->chart->drawGraphArea(\n $this->getGraphAreaColor(RED),\n $this->getGraphAreaColor(GREEN),\n $this->getGraphAreaColor(BLUE),\n FALSE\n );\n\n if ($this->settings['gradientIntensity'] > 0)\n $this->chart->drawGraphAreaGradient(\n $this->getGraphAreaGradientColor(RED),\n $this->getGraphAreaGradientColor(GREEN),\n $this->getGraphAreaGradientColor(BLUE),\n $this->settings['gradientIntensity']\n );\n else\n $this->chart->drawGraphArea(\n $this->getGraphAreaGradientColor(RED),\n $this->getGraphAreaGradientColor(GREEN),\n $this->getGraphAreaGradientColor(BLUE)\n );\n\n }", "private function draw() {\n $this->perc = floor(($this->done / $this->total) * 100);\n $bar_perc = floor(($this->done / $this->total) * $this->bar_length);\n $left = $this->bar_length - $bar_perc;\n\n $write = sprintf(\"\\033[0G\\033[2K $this->done/$this->total [%'={$bar_perc}s>%-{$left}s] - $this->perc%%\", \"\", \"\");\n if ($this->done >= $this->total) $write .= \"\\n\";\n fwrite(STDERR, $write);\n }", "public function show() {\n\n\t\t//header (\"Content-type: image/png\");\n\n\t\t$img\t\t= imagecreate( $this->width , $this->height );\n\n\t\t$this -> fonts = Functions::GetFileList(FILEBASE . '/fonts/');\n\n\t\tif( count( $this->fonts ) == 0 ) {\n\n\t\t\tImageColorAllocate ($img, 255, 0, 0);\n\t\t\timagePNG( $img );\n\t\t\treturn;\n\n\t\t}\n\n\t\tImageColorAllocate ($img, 255, 255, 255);\n\n\t\t$bgcolors\t\t= array();\n\n\t\tfor( $i = 0; $i < $this->level; $i++ ) {\n\n\t\t\t$c1\t\t= mt_rand( 127 ,255 - (127 / $this->maxlevel) * $this->level );\n\t\t\t$c2\t\t= mt_rand( 127 , 255 - (127 / $this->maxlevel) * $this->level );\n\t\t\t$c3\t\t= mt_rand( 127 ,255 - (127 / $this->maxlevel) * $this->level );\n\t\t\t$bgcolors[] \t= ImageColorAllocate($img, $c1, $c2, $c3);\n\n\t\t}\n\n\t\t//set random background\n\t\tfor( $i = 0; $i < $this->width; $i = $i + 1 ) {\n\t\t\tfor( $j = 0; $j < $this->height; $j = $j + 1 ) {\n\t\t\t\t$ck\t= mt_rand( 0 , count( $bgcolors ) - 1 );\n\t\t\t\t$flag\t= mt_rand( 1 , $this->level );\n\t\t\t\tif( $flag > 1 ) {\n\t\t\t\t\timagesetpixel( $img , $i , $j , $bgcolors[$ck] );\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t//draw text\n\t\t$fontcolors\t\t= array();\n\n\t\tfor( $i = 0; $i < $this->level; $i++ ) {\n\n\t\t\t$c1\t\t= mt_rand( (127 / $this->maxlevel) * $this->level , 126 );\n\t\t\t$c2\t\t= mt_rand( (127 / $this->maxlevel) * $this->level , 126 );\n\t\t\t$c3\t\t= mt_rand( (127 / $this->maxlevel) * $this->level , 126 );\n\t\t\t$fontcolors[] \t= ImageColorAllocate($img, $c1, $c2, $c3);\n\n\t\t}\n\n\t\t$string\t\t= substr( sha1( $this->publicKey . $this->privateKey ) , 0 , $this->charCount );\n\n\t\tfor( $i = 0; $i < strlen( $string ); $i++ ) {\n\n\t\t\t$char\t= $string{$i};\n\n\t\t\t$ck\t= mt_rand( 0 , count( $fontcolors ) - 1 );\n\n\t\t\t$size\t= mt_rand( $this->height * ( (90 - $this->level * 7) / 100 ) , $this->height * ( (95 - $this->level * 6) / 100 ) );\n\n\t\t\t$posX\t= $i * ($this->width / $this->charCount );\n\t\t\t$posY\t= mt_rand( $this->height , $size );\n\n\t\t\t$angle\t= mt_rand( $this->level * -4 , $this->level * 4 );\n\n\t\t\t$fk\t= mt_rand( 0 , $this->level - 1 ) % count( $this->fonts );\n\n\t\t\timagettftext($img , $size , $angle , $posX , $posY , $fontcolors[ $ck ] , $this->fonts[ $fk ] , $char);\n\n\t\t}\n\n\t\t//draw lines\n\t\tfor( $i = 0; $i < $this->level / ($this->maxlevel / 5); $i++ ) {\n\n\t\t\t$ck\t= mt_rand( 0 , count( $bgcolors ) - 1 );\n\n\t\t\t$start\t= mt_rand( 0 , $this->width + $this->height - 1 );\n\n\t\t\tif( $start < $this->width ) {\n\n\t\t\t\t//top to bottom\n\t\t\t\t$x1\t= $start;\n\t\t\t\t$y1\t= 0;\n\n\t\t\t\t$x2\t= mt_rand( 0 , $this->width - 1 );\n\t\t\t\t$y2\t= $this->height;\n\n\t\t\t} else {\n\n\t\t\t\t//left to right\n\t\t\t\t$x1\t= 0;\n\t\t\t\t$y1\t= $start - $this->width;\n\n\t\t\t\t$x2\t= $this->width;\n\t\t\t\t$y2\t= mt_rand( 0 , $this->height );\n\n\t\t\t}\n\n\t\t\tfor( $j = 0; $j < $this->width * 0.02; $j++ ) {\n\n\t\t\t\timageline( $img , $x1++ , $y1 , $x2++ , $y2 , $bgcolors[ $ck ] );\n\n\t\t\t}\n\n\t\t}\n\n\t\t$path = './temp/captcha/' . rand(0, 5000) . '.png';\n\t\timagePNG($img, $path);\n\n\t\treturn $path;\n\n\t}", "public function draw($filename = null)\n {\n header(\"Content-type: image/png\");\n imagepng($this->getImage(),$filename);\n }", "public function paint()\n {\n }", "function genimage()\n {\n $im = imagecreatetruecolor($this->pObj->stageWidth,$this->pObj->stageHeight);\n $white = imagecolorallocate ($im,0xff,0xff,0xff);\n $black = imagecolorallocate($im,0x00,0x00,0x00);\n $gray_lite = imagecolorallocate ($im,0xee,0xee,0xee);\n $gray_dark = imagecolorallocate ($im,0x7f,0x7f,0x7f);\n\n // Fill in the background of the image\n imagefilledrectangle($im, 0, 0, $this->pObj->stageWidth+100, $this->pObj->stageHeight+100, $white);\n\n foreach ($this->pObj->delaunay as $key => $arr)\n {\n foreach ($arr as $ikey => $iarr)\n {\n list($x1,$y1,$x2,$y2) = $iarr;\n imageline($im,$x1+5,$y1+5,$x2+5,$y2+5,$gray_dark);\n\t }\n }\n\n ob_start();\n imagepng($im);\n $imagevariable = ob_get_contents();\n ob_clean();\n\n // write to file\n $filename = $this->path.\"tri_\". rand(0,1000).\".png\";\n $fp = fopen($filename, \"w\");\n fwrite($fp, $imagevariable);\n if(!$fp)\n {\n $this->errwrite();\n }\n fclose($fp);\n }", "public function run()\n {\n $data = [\n 'linear-gradient(225deg, #B8C1CC 0%, #99A2AD 100%)',\n 'linear-gradient(225deg, #FA646E 0%, #E6404B 100%)',\n 'linear-gradient(225deg, #FFA252 0%, #FA7F14 100%)',\n 'linear-gradient(225deg, #FFCF4D 0%, #F0B30E 100%)',\n 'linear-gradient(225deg, #85D69A 0%, #46B864 100%)',\n 'linear-gradient(225deg, #85D69A 0%, #46B864 100%)',\n 'linear-gradient(225deg, #80A1FF 0%, #5D84F5 100%)',\n 'linear-gradient(225deg, #F04394 0%, #D10866 100%)',\n 'linear-gradient(225deg, #EBA0A6 0%, #EB848D 100%)',\n 'linear-gradient(225deg, #E6A965 0%, #D18E43 100%)',\n 'linear-gradient(225deg, #805253 0%, #432324 100%)',\n 'linear-gradient(225deg, #8F8F8F 0%, #666666 100%)',\n ];\n\n foreach ($data as $item) {\n \\App\\Color::query()->create([\n 'value' => $item\n ]);\n }\n }", "function printer_create_pen($style, $width, $color)\n{\n}" ]
[ "0.6073994", "0.60288495", "0.5757669", "0.54230666", "0.54230666", "0.5128775", "0.49857554", "0.49763203", "0.4925785", "0.48948818", "0.48947555", "0.48869008", "0.48827353", "0.4801758", "0.4796772", "0.47965884", "0.47901973", "0.47685227", "0.47630578", "0.47589076", "0.46871507", "0.4665274", "0.46616852", "0.46331367", "0.46280655", "0.46085164", "0.45924672", "0.45835716", "0.4575464", "0.45749733" ]
0.6055837
1
Show the form for creating a new CatEscolaridad.
public function create() { return view('cat_escolaridads.create'); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function create()\n\t{\n\t\t//\n return view('masterdata/agent-cat-form',\n ['form_action'=>action('AgentCatController@store')]\n );\n\t}", "public function create()\n {\n return view('admin/category.form');\n }", "public function create()\n {\n return view('category.form_create');\n\n }", "public function create()\n {\n return view('codebook::categories.form');\n }", "public function create()\n {\n return view('admin/gallaryCategory/form');\n }", "public function create() //metodo para mostrar formulario\n {\n return view('admin.categories.create');\n }", "public function create()\n {\n $cats = Category::all();\n return view('admin.product.form',compact('cats'));\n }", "public function create(){\n\t\t$data=['url'=>'categoria', 'method'=>'POST'];\n\n\t\treturn View::make('categoria.form', compact('data'));\n\t\t//\n\t}", "public function create()\n {\n return view('admin.cats.create');\n }", "public function create()\n {\n $cathegories = Cathegory::all();\n return view('admin.anekdot.create', compact('cathegories'));\n }", "public function create()\n {\n return view('admin.category.catCreate');\n }", "public function create()\n {\n return view('kategori.createform');\n }", "public function create()\n {\n return view(\"omnomcom.categories.edit\", ['category' => null]);\n }", "public function create()\n {\n return view('composants.create')->with([\"CatCom\"=>CategoryComposant::all()]);\n }", "public function create()\n {\n\n return view('forms.catalogue');\n }", "public function create()\n {\n return view('categoria.addCategoria');\n }", "public function create()\n {\n return view ('encategory.create-category');\n }", "public function create()\n {\n //\n return view('/almacen/productos/editarCategorias');\n }", "public function create()\n {\n return view('admin.categoryAdd');\n }", "public function create()\n {\n return view('category.add-edit')->with(['category' => null]);\n }", "public function newAction()\n {\n $entity = new DatosEducacion();\n $form = $this->createCreateForm($entity);\n\n return $this->render('FocalAppBundle:DatosEducacion:new.html.twig', array(\n 'entity' => $entity,\n 'form' => $form->createView(),\n ));\n }", "public function create()\r\n {\r\n //mostrar vista de crear\r\n return view(\"admin.almacen.categoria.create\");\r\n }", "public function create()\n {\n return view('backend.category.add');\n }", "public function create()\n {\n return view('admin.categoria.create');\n }", "public function create()\n {\n return view('cats.create');\n }", "public function create()\n {\n return view('cats.create');\n }", "public function create()\n {\n\n return view('categories.add');\n\n }", "public function create()\n {\n return view('backend.addcategory');\n }", "public function create()\n {\n return view('categoria.create');\n }", "public function create()\n {\n return view('categoria.create');\n }" ]
[ "0.74061906", "0.73311096", "0.73232687", "0.73120415", "0.72170997", "0.72111404", "0.7190072", "0.7146166", "0.71424806", "0.71250623", "0.71228343", "0.7117203", "0.7111642", "0.71107405", "0.7105894", "0.7065926", "0.70637256", "0.70551467", "0.7051304", "0.70501924", "0.7033125", "0.70274574", "0.70137507", "0.69878536", "0.69837123", "0.69837123", "0.6980418", "0.6974887", "0.69713354", "0.69713354" ]
0.7430593
0
Store a newly created CatEscolaridad in storage.
public function store(CreateCatEscolaridadRequest $request) { $input = $request->all(); $catEscolaridad = $this->catEscolaridadRepository->create($input); Flash::success('Cat Escolaridad saved successfully.'); return redirect(route('catEscolaridads.index')); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function store(CategoryStoreRequest $request) //metodo para salvar datos\n {\n //validacion de campos con request\n\n $category = Category::create($request->all()); //se aceptan datos definidos en el modelo \n //Category, en array fillable y se validan con objeto $request->all()\n \n return redirect()->route('categories.edit', $category->id)\n ->with('info', \"Categoría creada con éxito\"); //para mostrar mensaje (se guada en sesion flash)\n }", "public function store()\n {\n $attributes = request()->validate([\n 'name' => ['string', 'required', 'max:255'],\n 'slug' => ['string', 'alpha_dash'],\n 'operator' => ['required', Rule::in(['root', 'after'])],\n 'picture' => ['file'],\n ]);\n\n $node = Category::create($attributes);\n\n if (request('operator') === 'root') {\n $node->saveAsRoot();\n } else {\n $parent = Category::find(request('existingCategory'));\n $node->parent()->associate($parent)->save();\n }\n\n if (request('picture')) {\n // Store the image\n $attributes['picture'] = request('picture')->store('images');\n\n // Image - Product association\n $node->image()->save(new Image(['location' => $attributes['picture']]));\n }\n\n return Redirect::route('categories.index')->with('success', 'Category added to database');\n }", "public function store(CategoriaCreateRequest $request)\n {\n #User data\n $id_user = Auth::User()->id;\n $user = Auth::User()->user;\n #\n $categ = categoria::create( $request->all() );\n #Personal Log\n $this->set_logs(['tipo'=>'PL','tipo_doc'=>'CA','key'=>$id_user,'evento'=>'make.Categoria','content'=>'Has creado una categoria '.$categ->nombre ,'res'=>'Creado', 'link_to' => $categ->id_categoria ]);\n #\n #Session::flash('message','Categoria creada correctamente');\n return redirect::to('/categoria')->with('message','Categoria creada correctamente');\n }", "public function store(Requests\\StoreCategoryRequest $request)\n {\n $this->categories->create($request->all());\n return redirect(route('categories.index'))->with('message', 'Запись добавлена в базу данных');\n }", "public function store()\n {\n //dd(request()->all());\n Cat_instituciones::create(request()->all());/*Metodo create*/\n\n flash(\"La institución se registro de manera exitosa!\")->success()->important();\n return redirect('instituciones');\n\n //return redirect('cat_perfiles.cat_perfiles')->with('Hecho', 'Capacitador guardado correctamente!');\n }", "public function store()\n\t{\n\t\t$this->categoryFormValidator->validate( \\Input::all() );\n\n\t\t$category = $this->categoriesRepository->getNew( \\Input::all() );\n\n\t\tif ( ! $category->save() ) return Redirect::back()->withInput()->withErrors([]);\n\n\t\treturn \\Redirect::back()->with('success', 'Se creo nueva categoría');\n\t}", "public function store(Requests\\CategoryStoreRequest $request)\n {\n Category::create($request->all());\n\n return redirect('/backend/categories')->with('message', 'Kategori berhasil di buat!.');\n }", "public function store(Store $request)\n {\n $user = $request->user();\n $currentCompany = $user->currentCompany();\n\n // Create Expense Category and Store in Database\n ExpenseCategory::create([\n 'name' => $request->name,\n 'company_id' => $currentCompany->id,\n 'description' => $request->description,\n ]);\n \n session()->flash('alert-success', __('messages.expense_category_added'));\n return redirect()->route('settings.expense_categories', ['company_uid' => $currentCompany->uid]);\n }", "public function store() {\n\t\t$id=Input::get('id');\n\t\t$inputs = Input::All();\n\t\t$rules = array(\n\t\t\t'nombre' => 'required',\n\t\t);\n\t\t$messages = array(\n\t\t\t'nombre.required' => '¡El campo \"Nombre\" es requerido!',\n\t\t);\n\t\t$validate = Validator::make($inputs, $rules, $messages);\n\t\tif ($validate->fails()) {\n\t\t\treturn Redirect::back()->withInput()->withErrors($validate);\n\t\t} else {\n\t\t\t$row = new CatAcabados;\n\t\t\t$row->nombre = $inputs[\"nombre\"];\n\t\t\t$row->estatus = isset($inputs[\"estatus\"]) ? $inputs[\"estatus\"] : 0;\n\t\t\t$row->created_at = date('Y-m-d H:i:s');\n\t\t\t$row->save();\n\t\t\treturn Redirect::to('corevat/CatAcabados/create')->with('success', '¡Se ha creado correctamente el registro!');\n\t\t}\n\t}", "public function store(Request $request)\n {\n \t$especie = new pesc_especie();\n \t$especie->cat = $request->cat; \t\n \t$especie->save();\n \treturn redirect('/especies')->with('success', 'Espécie inserida com sucesso!');\n }", "public function store (CategoriaFormRequest $request)\r\n {\r\n $categoria=new Categoria;\r\n $categoria->nombre=strtoupper($request->get('nombre'));\r\n $categoria->descripcion=strtoupper($request->get('descripcion'));\r\n $categoria->condicion='1';\r\n $categoria->save();\r\n\r\n //guardo el log de actividad\r\n $log=new Log;\r\n $log->id_user=Auth::user()->id;\r\n $log->tipo='Entrada_Categoria';\r\n $log->save();\r\n\r\n return Redirect::to('almacen-categoria');\r\n\r\n }", "public function store(Request $request)\n {\n $isExist=Category::whereSlug(str::slug($request->category))->first();\n if($isExist){\n toastr()->error('Zaten '.$request->category.' adında bir kategori bulunuyor!');\n return redirect()->back();\n }\n $category = new Category;\n $category->name=$request->category;\n $category->slug=str::slug($request->category);\n $category->save();\n toastr()->success('Başarıyla Yeni Bir Kategori Oluşturuldu!');\n return redirect()->back();\n }", "public function store()\n {\n //registrar\n //dd(request()->all()); ver datos\n $docente = new Docente;\n $docente->item = request()->item;\n $docente->ci = request()->ci;\n $docente->expedido = request()->expedido;\n $docente->aPaterno = request()->aPaterno;\n $docente->aMaterno = request()->aMaterno;\n $docente->nombre = request()->nombre;\n $docente->fechaNacimiento = request()->fechaNacimiento;\n $docente->genero = request()->genero;\n $docente->estadoCivil = request()->estadoCivil;\n $docente->fechaIngreso = request()->fechaIngreso;\n $docente->correo = request()->correo;\n $docente->direccion = request()->direccion;\n $docente->telefono = request()->telefono;\n $docente->celular = request()->celular;\n\n $userid = Usuario::where('usuario', request()->ci)->first();\n // $carreid = Carrera::where('id', request()->carrera_idCarrera)->first();\n $docente->usuario_id = $userid->id;\n\n // $docente->carreras()->attach($carreid);\n\n $docente->save();\n \n // return back();\n return redirect('/docentes');\n }", "public function store()\n\t{\n\t\tCategory::create([\n\t\t\t'category_name'=>Input::get('category_name'),\n\t\t\t'slug'=>Str::slug(Input::get('category_name')),\n\t\t\t'description'=>Input::get('description'),\n\t\t\t'parent_id'=>Input::get('parent_id'),\n\t\t\t'category_status'=>1\n\t\t\t]);\n\t\t\treturn Redirect::to('/admin/category');\n\n\n\t\t\n\t}", "public function store(StoreCarreraRequest $request)\n\t\t\t\t\t{\n\t\t\t\t\t\t$usuario = Auth::user();\n\t\t\t\t\t\t$carrera = new \\App\\Carrera;\n\n\t\t\t\t\t\t$carrera->codigo = $request->input('codigo');\n\t\t\t\t\t\t$carrera->nombre = ucwords($request->input('nombre'));\n\t\t\t\t\t\t$carrera->escuela_id = $request->input('escuela_id');\n\t\t\t\t\t\t$carrera->descripcion = ucfirst($request->input('descripcion'));\n\n\t\t\t\t\t\t$carrera->save();\n\n\t\t\t\t\t\treturn redirect()->route('carreras.index')->with('message', 'Carrera Agregada')->with('usuario',$usuario);\n\t\t\t\t\t}", "public function store(Request $request)\n {\n $request->validate([\n 'description' => 'required',\n 'meta_title' => 'required',\n 'meta_description' => 'required',\n 'keywords' => 'required',\n ]);\n $data = $request->all();\n $multiStoreID = Store::where('main',1)->first()->id;\n if(isset($_GET['multistore'])) {\n $_GET['multistore'] = $multiStoreID;\n }\n $idParent = null;\n $category = new Category(array_merge($request->only([\n \"description\",\n \"meta_title\",\n \"meta_description\",\n \"keywords\",\n \"titleHelp\",\n \"isRoot\",\n \"discount\"\n ]), [\n \"parent_id\" => $idParent,\n \"name\"=>$request->get(\"title\"),\n \"slug\"=>self::createSlug($request)\n ],$this->createExportArrays($request)));\n $category->save();\n\n $stores = Store::all();\n foreach($stores as $store) {\n $this->addEditTransCategory(false, $category, $store->id, $category, $request);\n }\n\n $image = $request->get(\"image\");\n if ($image != null) {\n $image = $image[\"id\"];\n if ($image > 0) {\n $category->fill([\"image_id\" => $image]);\n }\n }\n $sub = $request->get(\"subCategories\");\n $category->save();\n foreach($data['xmlCategories'] as $selectedXml) {\n $xmlCategory = new XmlCategory();\n $xmlCategory->category_id = $category->id;\n $xmlCategory->xml_name = $selectedXml['xml_name'];\n $xmlCategory->xml_category_id = $selectedXml['xml_category_id'];\n $xmlCategory->xml_category_name = $selectedXml['xml_category_name'];\n $xmlCategory->save();\n }\n collect($sub)->each(function ($one, $key) use ($category){\n $cat = Category::find($one[\"id\"]);\n $cat->parent_id = $category->id;\n $cat->save();\n $subIds = [];\n $subIds[$cat->id] = ['sort' => $key];\n $category->subcategory_sort()->syncWithoutDetaching($subIds);\n });\n\n\n return new CategoryResource($category);\n }", "public function store(Request $request)\n {\n $reg = new Empresa();\n $reg->razao = $request->input('razao');\n $reg->fantasia = $request->input('fantasia');\n $reg->cnpj = $request->input('cnpj');\n $reg->responsavel = $request->input('responsavel');\n $reg->telefone_delivery = $request->input('telefone_delivery');\n $reg->telefone_delivery2 = $request->input('telefone_delivery2');\n $reg->taxa_entrega = $request->input('taxa_entrega');\n $reg->descricao = $request->input('descricao');\n $reg->pedido_medio = $request->input('pedido_medio');\n $reg->tempo_medio = $request->input('tempo_medio');\n $reg->timestamps = true;\n $reg->save();\n\n foreach($request->input('categorias') as $cat) {\n $empCat = new EmpresaCategoria();\n $empCat->empresa_id = $reg->id;\n $empCat->categoria_id = $cat;\n $empCat->save();\n\n $cats[] = $cat;\n }\n\n return $reg;\n }", "public function store(Request $request)\n {\n $request->validate([\n 'name' => 'required|string|max:255|unique:cooperatives',\n 'nik' => 'required|string|unique:cooperatives',\n 'village_id' => 'required',\n 'district_id' => 'required',\n 'category' => 'required',\n 'alamat' => 'required|unique:cooperatives'\n ]);\n\n $new = Cooperative::create([\n 'name' => $request->name,\n 'nik' => $request->nik,\n 'village_id' => $request->village_id,\n 'district_id' => $request->district_id,\n 'alamat' => $request->alamat,\n 'slug' => Str::slug($request->name),\n ]);\n\n $new->kategori()->attach($request->category);\n\n if ($new->save()) {\n return redirect()\n ->back()\n ->with('success', 'Data koperasi berhasil ditambahkan, hubungi admin / dinas untuk verifikasi data.');\n }\n }", "public function store(CategoryRequest $request)\n {\n $cate = new Category;\n $cate->name = $request->txtNameCate;\n $cate->user_id = Auth::user()->id;\n $cate->parent_id = $request->sltParentCate;\n $cate->kind = $request->sltKindCate;\n $cate->save();\n return redirect()->route('category.index')->with(['flash-level' => 'success', 'flash-message' => 'You have been added successful']);\n \n }", "public function store(Request $request)\n {\n try{\n\n DB::beginTransaction();\n\n $slug = Str::slug($request->input('category.title'), '-');\n\n $hasSlug = Category::where('slug', $slug)->first();\n\n if($hasSlug) $slug = $slug . Str::random(3);\n\n\n // Se enviar categoria pai\n if($request->input('category.parent_id')){\n\n // valida se o id enviado pertence a empresa\n $parent = Category::where('id', $request->input('category.parent_id'))\n ->first();\n\n if($parent){\n $parent = $parent->id;\n }\n else {\n return response()->json([\n 'message' => \"A categoria pai não existe.\"\n ], 500);\n }\n\n } else {\n $parent = 0;\n }\n\n $category = Category::create([\n 'title' => $request->input('category.title'),\n 'description' => $request->input('category.description'),\n 'parent_id' => $request->input('category.parent_id'),\n 'slug' => $slug,\n 'showing' => $request->input('category.showing'),\n ]);\n\n DB::commit();\n\n return response()->json([\n 'success' => true\n ], 200);\n\n }catch(\\Exception $e){\n\n $errorLog = ErrorsLog::create([\n 'description' => $e->getMessage(),\n ]);\n\n return response()->json([\n 'message' => 'Não foi possivel cadastrar a categoria.',\n 'errors' => [\n 'message' => $e->getMessage(),\n 'line' => $e->getLine()\n ]\n ], 500);\n }\n }", "public function store()\n\t{\n\t\t$reglas = array(\n\t\t\t'descripcion' => 'required|min:5|max:200',\n\t\t\t'tipo'\t\t => 'required|min:5|max:200|unique:categorias,tipo'\n\t\t);\n\n\t\t$validar = Validator::make(Input::all(), $reglas);\n\n\t\tif ($validar->fails()) {\n\t\t\treturn Redirect::to('admin/categoria/crear')->withErrors($validar);\n\t\t} else {\n\t\t\t$categorias = new Categoria;\n\t\t\t$categorias->descripcion = Input::get('descripcion');\n\t\t\t$categorias->tipo = Input::get('tipo');\n\t\t\t$categorias->save();\n\n\t\t\treturn Redirect::to('admin/categoria/index')->with('mensaje', 'Categoria creada correctamente');\n\t\t}\n\t\t\n\t}", "public function store(Request $request)\n\n {\n\n $this->validate($request,['namecat'=>'required']);\n\n $categories = new category(['namecat'=> $request->get('namecat'),'idcattype'=>$request->get('sel_idcattype'),'idparent'=> $request->get('sel_idparent')]);\n\n $categories->save();\n\n return redirect()->route('admin.category.index')->with('success','data added');\n\n }", "public function store()\t{\n\t\t$input =Input::all();\n\t\t$validator =Validator::make($input,CategoriaValidator::rules(null),CategoriaValidator::messages());\n\t\tif($validator->passes()){\n\t\t\tDB::beginTransaction();\n\t\t\ttry{\n\t\t\t\t$categoria= new Categoria;\n\t\t\t\t$categoria->fill($input)->save();\n\t\t\t}catch(\\Exception $e){\n\t\t\t\treturn $e->getMessage();\n\t\t\t\tDB::rollback();\n\t\t\t}\n\t\t\tDB::commit();\n\t\t\treturn Redirect::to('categoria/create')->with('success', 'Categoria cadastrada com sucesso!');\n\n\t\t}\n\t\t$validator->getMessageBag()->setFormat('<div class=\"alert alert-danger\">:message</div>');\n\t\treturn Redirect::to('categoria/create')->withErrors($validator)->withInput();\n\t}", "public function store() {\n try {\n\n $rules = array(\n 'name' => 'required|unique:documentcategory'\n );\n\n $validation = Validator::make(Input::all(), $rules);\n\n if ($validation->fails()) {\n return Redirect::back()->withInput()->withErrors($validation->messages());\n }\n\n $docCat = new DocumentCategory();\n\n $docCat->name = Input::get('name');\n $docCat->slug = Str::slug(Input::get('name'));\n $docCat->parent = is_numeric(Input::get('parent')) ? Input::get('parent') : 0;\n\n\n if ($docCat->save()) {\n return Redirect::back()->with('message', 'A dokumentum kategória feltöltése sikerült!');\n } else {\n return Redirect::back()->withInput()->withErrors('A dokumentum kategória feltöltése nem sikerült!');\n }\n } catch (Exception $e) {\n if (Config::get('app.debug')) {\n return Redirect::back()->withInput()->withErrors($e->getMessage());\n } else {\n return Redirect::back()->withInput()->withErrors('A dokumentum kategória feltöltése nem sikerült!');\n }\n }\n }", "public function store(Request $request)\n {\n $cates = new Category();\n $cate = $request ->all();\n if($request->hasFile('image')){\n $file = $request->image;\n $oriName = $request->image-> getClientOriginalName();\n $filename = str_replace(' ','-',$oriName);\n $filename = uniqid().'-'.$filename;\n $path = $request->file('image')->storeAs('images/category', $filename);\n $destinationPath = public_path() . '/images/category/';\n $file->move($destinationPath,$filename);\n $cate['image'] = $path;\n }\n \n // dd($cate);\n\n $cates -> fill($cate);\n $cates->save();\n return redirect('/cate');\n }", "public function store(Request $request)\n {\n $new_barang = new \\App\\Barang;\n $new_barang->nama = $request->get('nama');\n // $new_barang->description = $request->get('description');\n $new_barang->spek = $request->get('spek');\n $new_barang->status_barang = $request->get('status_barang');\n $new_barang->harga = $request->get('harga');\n $new_barang->stock = $request->get('stock');\n\n $new_barang->status = $request->get('save_action');\n\n $gambar = $request->file('gambar');\n\n if($gambar){\n $gambar_path = $gambar->store('barang-gambar', 'public');\n\n $new_barang->gambar = $gambar_path;\n }\n\n $new_barang->slug = str_slug($request->get('nama'));\n\n $new_barang->created_by = \\Auth::user()->id;\n\n $new_barang->save();\n\n $new_barang->categories()->attach($request->get('categories'));\n\n if($request->get('save_action') == 'DIJUAL'){\n return redirect()\n ->route('barang.create')\n ->with('status', 'Barang berhasil disimpan dan dijual');\n } else {\n return redirect()\n ->route('barang.create')\n ->with('status', 'Barang tersimpan di Draft');\n }\n }", "public function store(Request $request)\n {\n $soussouscategorie_name =$request->input('NomSousScatg');\n $soussouscategorie_idsouscatg =$request->input('idsouscatg');\n $new_soussouscategorie =new S_scategorie; \n \n $new_soussouscategorie->name =$soussouscategorie_name;\n $new_soussouscategorie->stug =str_replace(' ','_',$soussouscategorie_name);\n $new_soussouscategorie->id_souscatg =$soussouscategorie_idsouscatg;\n $new_soussouscategorie->save();\n\n\n session()->push('m','success');\n session()->push('m','Sous sous categorie Enregistrer avec success !');\n \n return redirect('indexsoussouscategorie');\n }", "public function store(Request $request)\n {\n $souscategorie_name =$request->input('nomcatg');\n $souscategorie_idcatg =$request->input('idcatg');\n $new_souscategorie =new Souscategorie;\n \n $new_souscategorie->name =$souscategorie_name;\n $new_souscategorie->stug =str_replace(' ','_',$souscategorie_name);\n $new_souscategorie->idcatg =$souscategorie_idcatg;\n $new_souscategorie->save();\n\n\n session()->push('m','success');\n session()->push('m','Sous categorie Enregistrer avec success !');\n \n return redirect('indexsouscategorie');\n }", "public function store(Request $request)\n {\n //\n\n DB::beginTransaction();\n try{\n $menuItemCategory = MenuItemCategory::create($request->all());\n if($request->hasFile('content_file')){\n $file = $request->file('content_file');\n $ext = $file->getClientOriginalExtension();\n Storage::makeDirectory(date('Y-m'));\n $filename = Carbon::now()->timestamp . '.' . $ext;\n $file_path = Storage::disk('public')->putFileAs('uploads/' . date('Y-m'), $file, $filename);\n if ($file_path) {\n $menuItemCategory->item_category_picture_url = 'storage/'.$file_path;\n }\n }\n $menuItemCategory->save();\n\n DB::commit();\n return redirect('menu-items-category')->withStatus('Menu Item Category Saved Successfully');\n }catch(\\Exception $e){\n DB::rollBack();\n return redirect()->back()->withStatus('An error occurred while creating the menu item category. '.$e->getMessage());\n }\n }", "public function store()\n {\n if( $this->categoryForm->save( Input::all() ) )\n {\n // Success!\n return Redirect::to('admin/dashboard#categories')\n ->with('status', 'success');\n } else {\n return Redirect::to('admin/dashboard#categories/create')\n ->withInput()\n ->withErrors( $this->categoryForm->errors() )\n ->with('status', 'error');\n }\n }" ]
[ "0.64409316", "0.63325197", "0.6313452", "0.62578905", "0.6240744", "0.62357575", "0.6206778", "0.6205361", "0.6193416", "0.6167442", "0.61570406", "0.6151997", "0.6148372", "0.6140784", "0.6133124", "0.6122811", "0.6113831", "0.6110732", "0.6093459", "0.60886025", "0.60828876", "0.6076598", "0.6076217", "0.6068758", "0.60682714", "0.60662884", "0.6057397", "0.60478014", "0.6046863", "0.6044616" ]
0.7254637
0
Display the specified CatEscolaridad.
public function show($id) { $catEscolaridad = $this->catEscolaridadRepository->findWithoutFail($id); if (empty($catEscolaridad)) { Flash::error('Cat Escolaridad not found'); return redirect(route('catEscolaridads.index')); } return view('cat_escolaridads.show')->with('catEscolaridad', $catEscolaridad); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function show(Cidade $cidade)\n {\n //\n }", "function show() {\n\t\t\t$categorias = CatDAO::select();\n\t\t\t$subCat = SubCatDAO::select();\n\t\t\t$data = $this->pushSubCategories($categorias, $subCat);\n\t\t\tView::set(\"categorias\", $data);\n\t\t\tView::render('admin' . DS . 'categorias');\n\t\t}", "public function show(CargosAbonosArrendatarios $cargosAbonosArrendatarios) {\n //\n }", "public function show(NivelInteres $nivelInteres)\n {\n //\n }", "public function show(Cat $cat)\n {\n //\n }", "public function show(escecoment $escecoment)\n {\n //\n }", "public function show(factura $factura)\n {\n //\n }", "public function show(Categoria $categoria)\n {\n //\n }", "public function show(Categoria $categoria)\n {\n //\n }", "public function show(Categoria $categoria)\n {\n //\n }", "public function show(Contato $contato)\n {\n //\n }", "public function show(Contato $contato)\n {\n //\n }", "public function show(Caja $caja)\n {\n //\n }", "public function show(Centrotrabajo $centrotrabajo)\n {\n //\n }", "public function show(Causal $causal)\n {\n }", "public function show(Cuentasporcobrar $cuentasporcobrar)\n {\n //\n }", "public function show( Contrat $contrat ) {\n //\n }", "public function index() {\n\t\t$title = 'COREVAT';\n\t\t$title_section = 'Catálogo de Acabados';\n\t\t$titleGrid = 'Catálogo de Acabados';\n\t\t$row = $this->catalogo;\n\t\t$rows = CatAcabados::orderBy('nombre')->get();\n\t\treturn View::make('CorevatCatalogos.CatAcabados.index', compact('title', 'title_section', 'row', 'rows', 'titleGrid'));\n\t}", "public function show(Cocina $cocina)\n {\n //\n }", "public function display() {\n $listeEspeces = $this->model->getEspeces();\n $this->view->displayListEspeces($listeEspeces);\n }", "public function show(Carreras $carreras)\n { }", "public function showAction($id)\n {\n $em = $this->getDoctrine()->getManager();\n\n $entity = $em->getRepository('FocalAppBundle:DatosEducacion')->find($id);\n\n if (!$entity) {\n throw $this->createNotFoundException('Unable to find DatosEducacion entity.');\n }\n\n $deleteForm = $this->createDeleteForm($id);\n\n return $this->render('FocalAppBundle:DatosEducacion:show.html.twig', array(\n 'entity' => $entity,\n 'delete_form' => $deleteForm->createView(),\n ));\n }", "public function show($id)\n {\n $dato = $this->gen_section();\n try {\n\n $facturacionelectronica = FacturacionElectronica::findOrFail($id);\n $this->genLog(\"Visualizó Facturación electrónica\"); \n\n } catch (\\Exception $e) {\n\n $this->genLog(\"Visualizó Facturación electrónica error: \".$e); \n }\n\n return view('admin.facturacion-electronica.show', compact('facturacionelectronica','dato'));\n }", "public function show(ComplaintCategory $complaintCategory)\n {\n //\n }", "public function show(Establecimiento $establecimiento)\n {\n //\n }", "public function show(Encargado $encargado)\n {\n //\n }", "function ShowArticleCat($cat = NULL)\n {\n $settings = $this->GetSettings();\n\n $q = \"SELECT `\" . TblModArticleCat . \"`.*\n FROM `\" . TblModArticleCat . \"`\n WHERE 1 AND `lang_id`='\" . $this->lang_id . \"'\n AND `name`!=''\n ORDER BY `move` ASC \";\n $res = $this->db->db_Query($q);\n $rows = $this->db->db_GetNumRows();\n for ($i = 0; $i < $rows; $i++) {\n $arr_res[] = $this->db->db_FetchAssoc();\n }\n\n if ($rows > 0) {\n ?>\n <div style=\"width:300px;\"><?= $this->multi[\"TXT_ARTICLE_CAT\"]; ?>:\n <ul><?\n for ($i = 0; $i < $rows; $i++) {\n $row = $arr_res[$i];\n $name = $row['name'];\n $q1 = \"select * from \" . TblModArticle . \" where category='\" . $row['cod'] . \"' and status!='i' \";\n $res1 = $this->db->db_Query($q1);\n $rows1 = $this->db->db_GetNumRows();\n\n if ($rows1) {\n $link = $this->Link($row['cod'], NULL);\n ?>\n <li>\n <a href=\"<?= $link; ?>\"><?= $name; ?></a>\n </li>\n <?\n } // end if\n } // end for\n ?>\n </ul>\n </div>\n <?\n }\n }", "public function showAction(Paquet_Colis $paquet_Coli)\n {\n $deleteForm = $this->createDeleteForm($paquet_Coli);\n\n return $this->render('paquet_colis/show.html.twig', array(\n 'paquet_Coli' => $paquet_Coli,\n 'delete_form' => $deleteForm->createView(),\n ));\n }", "public function show(HistoriaEspaniol $historiaEspaniol)\n {\n //\n }", "public function displayAddAnnonce(){\n\t\t//session_start(); \n\t\t$categories = Categorie::all();\n\t\t//creer vue\n\t\t$v = new ViewAddAnnonce($categories); //n'est censé prendre aucun parametre\n\t\t$v->display();\n\t}" ]
[ "0.618222", "0.61770934", "0.61462325", "0.5944819", "0.5934816", "0.59231377", "0.5901696", "0.58971626", "0.58971626", "0.58971626", "0.58855534", "0.58855534", "0.5874365", "0.5857997", "0.5852922", "0.5846951", "0.58021325", "0.57655305", "0.5755305", "0.5752023", "0.573637", "0.5730336", "0.5724707", "0.5707636", "0.57042605", "0.5685493", "0.5671325", "0.56645614", "0.56551325", "0.56518584" ]
0.6234057
0
Update the specified CatEscolaridad in storage.
public function update($id, UpdateCatEscolaridadRequest $request) { $catEscolaridad = $this->catEscolaridadRepository->findWithoutFail($id); if (empty($catEscolaridad)) { Flash::error('Cat Escolaridad not found'); return redirect(route('catEscolaridads.index')); } $catEscolaridad = $this->catEscolaridadRepository->update($request->all(), $id); Flash::success('Cat Escolaridad updated successfully.'); return redirect(route('catEscolaridads.index')); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function Editar() {\n $Update = new Update;\n $Update->ExeUpdate(self::Tabela, $this->dados, \"WHERE categoria_id = :catid\", \"catid={$this->categoriaId}\");\n\n //Se o if retornar é porque atualizou corretamente a categoria\n if ($Update->getResult()):\n $tipo = (empty($this->dados['categoria_pai']) ? 'seção' : 'categoria');\n $this->error = [\"<b>Sucesso:</b> {$tipo} <b>{$this->dados['categoria_titulo']}</b> foi atualizada com sucesso no sistema\", ZT_ACCEPT];\n $this->result = true;\n endif;\n }", "public function update(CatUpdateRequest $request, $id)\n {\n $cat = Cat::findOrFail($id);\n\n $cat->name= $request->input('name');\n $cat->meta_description=$request->input('meta_description');\n $cat->image_class= $request->input('image_class');\n \n $cat->save();\n /* $sub_cats= $request->input('sub_cats');\n $real= [];\n\n // dd($cat->subcats);\n $cat->subcats()->delete();\n foreach ($sub_cats as $sub) {\n if( $existingCat = SubCat::where('name', $sub)->first()) {\n $real[]= $existingCat;\n }\n else{\n $newCat = new SubCat();\n $newCat ->name = $sub;\n $newCat->save();\n $real[]=$newCat;\n }\n }\n $cat->subcats()->saveMany($real); */\n\n\n return redirect(\"/admin/cat/\")\n ->withSuccess(\"Changes saved.\");\n }", "public function updatecats(Request $request, $id)\n {\n\n\n $cat = Categoria::find($id);\n\n $data = $request->all();\n\n $update = $cat->update($data);\n\n\n if($update)\n return redirect()\n ->route('admin.acessar.cats')\n ->with('success', 'Sucesso ao atualizar!');\n\n return redirect()\n ->back()\n ->with('error', 'Falha ao atualizar o perfil...');\n\n\n\n }", "public function update(CategoryUpdateRequest $request)\n {\n $category = Category::find($request->id);\n //dd($category->id);\n $category->title = $request->title;\n if($request->hasFile('logo')){\n Storage::delete('/'.$request->old_logo);\n $logoPath = $request->logo->store('public/images/category');\n $category->logo = $logoPath;\n }else{\n $category->logo = $request->old_logo;\n }\n\n if($request->hasFile('banner')){\n Storage::delete('/'.$request->old_banner);\n $bannerPath = $request->banner->store('public/images/category');\n $category->banner = $bannerPath;\n }else{\n $category->banner = $request->old_banner;\n }\n\n $category->save();\n return redirect()->to(route('category.index'));\n }", "public function update(Request $request, $id)\n {\n \t$especie = pesc_especie::find($id);\n \t$especie->cat = $request->cat;\n \t$especie->save();\n \treturn redirect('/especies')->with('success', 'Espécie Editada com sucesso!');\n }", "public function update(StoreCategory $request, $id)\n {\n $category = Category::find($id);\n $category->fill([\n 'name' => $request->name,\n 'description' => $request->description,\n 'is_active' => $request->is_active\n ]);\n $category->save();\n\n \n session()->flash('alert', 'Categoria alterada com sucesso!');\n return back();\n }", "public function update(Request $request)\n {\n $catId = ChildCategory::where('id',$request->edit_child_category_id)->get();\n foreach ($catId as $key => $value) {\n $id = $value->category_id;\n }\n\n SubChildCategory::find($request->id)->update([\n 'category_id'=>$id,\n 'child_category_id'=>$request->edit_child_category_id,\n 'sub_child_name'=>$request->edit_sub_child_name,\n 'slug'=>Str::slug($request->sub_child_name)\n ]);\n\n toast('Sub Sub-Category updated successfully','success')->padding('10px')->width('270px')->timerProgressBar()->hideCloseButton();\n return redirect()->back();\n }", "public function actualizar(){\n $id = $this->request->getPost('idcategoria');\n $valores = [\n 'nombre' => $this->request->getPost('nombre')\n ];\n $this->categorias->update($id, $valores);\n \n return redirect()->to(base_url().\"/public/Categorias\");\n }", "public function update(Request $request)\n {\n $isExist=Category::whereSlug(str::slug($request->category))->whereNotIn('id',[$request->id])->first();\n if($isExist){\n toastr()->error('Zaten '.$request->category.' adında bir kategori bulunuyor!');\n return redirect()->back();\n }\n $category = Category::find($request->id);\n $category->name=$request->category;\n $category->slug=str::slug($request->category);\n $category->save();\n toastr()->success('Başarıyla Bir Kategori Güncellendi!');\n return redirect()->back();\n }", "public function update(Request $request, $id)\n {\n $cat = Especialidade::find($id);\n if(isset($cat)) {\n $cat->nome = $request->input('nome_espec');\n $cat->save();//atualiza os dados\n }\n return redirect('/especialidades');//redireciona para a view especialidades\n }", "public function update(Request $request, Category $category )\n {\n $category_ar=new category_ar;\n $category_ar=$category_ar->find($category->id);\n $category_en=new category_en;\n $category_en=$category_en->find($category->id);\n \n $category->setConnection('mysql');\n if($request->hasFile('image')) {\n $image = $request->file('image');\n $filename =rand() . '.' . $image->getClientOriginalExtension();\n $image->move(public_path('categoryimg/'), $filename);\n $filename='categoryimg/'.$filename;\n \n }\n $category->update([\n \n \"image\"=>$filename\n\n ]);\n \n \n \n $category->category_en()->update([\n \"name\"=>$request[\"nameEN\"],\n \n ]); \n\n \n $category->category_ar()->update([\n \"name\"=>$request[\"nameAR\"],\n \n ]); \n \n \n \n return redirect(route(\"category.index\",[\"category\"=>$category]));\n\n\n }", "public function update(CategoriaRequest $request, $ID)\n {\n $categoria = new categoria();\n $categoria=$categoria->find($ID);\n $categoria->fill($request->all());\n $categoria->save();\n Flash::warning('La categoria '. $categoria-> NOMBRE. ' ha sido editada exitosamente..');\n return redirect()->route('categoria.index');\n }", "function update_categoria_egreso($id_categr,$params)\r\n {\r\n $this->db->where('id_categr',$id_categr);\r\n return $this->db->update('categoria_egreso',$params);\r\n }", "public function updateCategory()\n\t{\n\t}", "public function update(StoreCategory $request, $id){\n $category = Category::findOrFail( $id );\n $category->update( $request->input() );\n return redirect()->route('admin.category.index');\n }", "public function update(AddFormRequest $request)\n {\n $cates = Category::find($request->id);\n $cate = $request ->all();\n if($request->hasFile('image')){\n $file = $request->image;\n $oriName = $request->image-> getClientOriginalName();\n $filename = str_replace(' ','-',$oriName);\n $filename = uniqid().'-'.$filename;\n $path = $request->file('image')->storeAs('images/category', $filename);\n $destinationPath = public_path() . '/images/category/';\n $file->move($destinationPath,$filename);\n $cate['image'] = $path;\n }\n \n // dd($cate);\n\n $cates -> fill($cate);\n $cates->save();\n return redirect('/cate');\n }", "public function myupdate(Request $request)\n {\n $id=$request->get('id');\n $kala=kala::find($id);\n $kalaid=$kala->id=$request->get('id');\n $kala->name=$request->get('name');\n $kala->description=$request->get('description');\n $categoryid=$request->get('categoryid');\n $cat=category::where('categoryname',$categoryid)->first();\n $kala->categoryid=$cat->id;\n $kala->price=$request->get('price');\n $kala->num=$request->get('num');\n $image=$kala->fileimage;\n $kala->fileimage=$image;\n $kala->save();\n return redirect('kalatables');\n }", "public function update(Request $request, $id)\n {\n try {\n DB::beginTransaction();\n\n $category = Category::find($id);\n\n $data = $request->only('name');\n\n if ($request->hasFile('img')) {\n if ($category->img && file_exists(storage_path('app/public/'.$category->img))) {\n Storage::delete('public/'.$category->img);\n }\n\n $img_path = $request->file('img')->store('category/img', 'public');\n $data['img'] = $img_path;\n $data['img_url'] = url('/storage/'.$img_path);\n }\n\n $category = $category->fill($data);\n $category->save();\n\n DB::commit();\n\n return redirect()->route('category.index')->with('success', 'Successfully updated category !');\n\n } catch (\\Exception $error) {\n DB::rollBack();\n return $error->getMessage();\n }\n }", "public function update(Request $request, jobcategory $jobcategory)\n {\n //dd($request);\n $request->validate([\n 'name' => 'required|min:0',\n // 'logo' => 'sometimes|mimes:jpeg,jpg,png'\n ]);\n\n // // upload\n // if($request->file()) {\n // // 624872374523_a.jpg\n // $fileName = time().'_'.$request->logo->getClientOriginalName();\n\n // // categoryimg/624872374523_a.jpg\n // $filePath = $request->file('logo')->storeAs('jobcategoryimg', $fileName, 'public');\n\n // $path = '/storage/'.$filePath;\n\n // // delete old image\n\n\n // // $category->logo = $path;\n\n // }\n // else {\n // $path=$request->oldlogo;\n // }\n\n //$jobcategory=jobcategory::find($id);\n // update data\n $jobcategory->name = $request->name;\n // $jobcategory->logo = $path;\n $jobcategory->save();\n\n // redirect\n return redirect()->route('jobcategory.index');\n }", "public function update (CategoriaStoreRequest $request, $id)\n {\n $validated = collect($request->validated());\n $categoria = Categoria::findOrFail($id);\n if ($categoria->update($validated->toArray())) {\n return redirect()->route('categoria.show', $categoria);\n }\n return redirect()->route('categoria.update', $id);\n }", "public function update(Request $request, $id)\n {\n $cat = $this->categoryRepo->findByID($id);\n\n if ($request->parent_id == 0) {\n $data = $request->except('_token', '_method', 'parent_id', '_wysihtml5_mode', 'ar', 'en');\n $data['parent_id'] = null;\n } else {\n $data = $request->except('_token', '_method', '_wysihtml5_mode', 'ar', 'en');\n\n }\n $cat_trans = $request->only('ar', 'en');\n\n\n if ($request->hasFile('photo')) {\n\n// delete old photo\n\n $oldPath = public_path('/images/categories/' . $cat->photo);\n $oldThumbPath = public_path('/images/categories/thumb/' . $cat->photo);\n\n $this->categoryRepo->deleteOldPhoto($id, $oldPath, $oldThumbPath);\n\n// upload new photo\n $image = $this->upload($request->photo, 'categories', true);\n $data['photo'] = $image;\n }\n $category = $this->categoryRepo->update($id, $data, $cat_trans);\n\n return redirect()->route('categories.index')->with('update', 'data updated sucessfully');\n\n\n }", "public function update(Request $request, $id)\n {\n $category = Category::findOrFail($id);\n\n\n $category->category = Input::get('category');\n $category->slug = str_slug(Input::get('category'), \"-\");\n\n // process image logo\n if(Input::hasFile('foto')) {\n $file = $request->file('foto');\n $fotoName = 'CAT' . $category->id . '.' . $file->getClientOriginalExtension();\n Storage::put('category/'.$fotoName, File::get($file));\n $img = Image::make(storage_path('app/category/' . $fotoName));\n $img->resize(160, null, function ($constraint) {\n $constraint->aspectRatio();\n });\n $img->save();\n $category->foto = $fotoName;\n }\n\n $category->save();\n\n Session::flash('message', 'Ganti Kategori Produk Sukses');\n return Redirect::to('dashboard/admin/category');\n }", "public function update(Request $request, $id){\n $categoria = Categorias::findOrFail($id);\n $inputs = request()->validate([\n 'nombre' => 'required|min:3',\n 'orden' => 'required',\n 'mostrar' => 'required'\n ]);\n $categoriesSameOrder = Categorias::where('orden', $inputs['orden'])->get();\n if(count($categoriesSameOrder) > 0){\n foreach ($categoriesSameOrder as $cat) {\n $cat->orden = $categoria['orden'];\n $cat->save();\n }\n }\n if($categoria->update($inputs)){\n session()->flash('success','Category updated!');\n return Redirect::to('Plataforma/Categorias');\n }else{\n session()->flash('notice','An error occurred when updating the category, try again!');\n return Redirect::to('Plataforma/Categorias');\n }\n }", "public function update(Request $request, $id)\n {\n //\n // dd($id);\n //验证数据是否存在\n $cate = Cates::find($id);\n // dd($cate);\n if ($request -> has('cat_name')) {\n\n // dump($request -> has('cat_name'));\n // dd($data);\n $cate -> cat_name = $request -> input('cat_name');\n } \n\n\n if ($request -> has('cat_pid')) {\n \n // dump($request -> has('cat_pid'));\n // dd($data);\n $cate -> cat_pid = $request -> input('cat_pid');\n\n if ($request['cat_pid'] == 0) {\n \n $cate -> cat_path = '0';\n }else{\n\n $res = Cates::where('cat_id',$request['cat_pid']) -> first();\n $cate -> cat_path = $res->cat_path.','.$res->cat_id;\n // $cate -> cat_path = $res[''];\n }\n\n } \n \n \n\n $res = $cate -> save();\n if ($res) {\n \n return redirect('/Admin/cate') -> with('success','分类修改成功!');\n }else{\n\n return back() -> with('error','分类修改失败!');\n }\n\n }", "public function update(Request $request, $id)\n {\n $nombre = $request->input('nombre');\n $imagen = $request->file('imagen');\n $descripcion = $request->input('descripcion');\n\n $ruta = \"-\";\n if($imagen){\n $ruta = $imagen->store('public'); \n $ruta = str_replace('public','storage',$ruta);\n }\n\n $categoria = Categoria::findOrFail($id);\n\n if($ruta!==\"-\"){\n $img = str_replace(\"storage/\", \"public/\", $categoria->imagen);\n $img = \"storage/\".$img;\n Storage::delete(asset('/storage/9yBlOG6KxNwaRoIrAKNpbBRr16q5PQyohbflIDcp.png'));\n }else{\n $ruta = $categoria->imagen;\n }\n\n $categoria->nombre = $nombre;\n $categoria->descripcion = $descripcion;\n $categoria->imagen = $ruta;\n $categoria->update();\n\n return redirect()->route('categoria.index');\n }", "public function update(Request $request, $id)\n {\n $category = Category::findorFail($id);\n $category->name = $request->input('name');\n\n $category->slug = Str::slug($request->input('name'));\n\n if ($request->hasFile('new_image')) { // kiểm tra xem có image có đc chọn ko\n // xóa file cũ\n @unlink(public_path($category->image));\n // get file\n $file = $request->file('new_image');\n // dặt tên cho file image\n $filename = time().'_'.$file->getClientOriginalName(); //tên ban đầu của file\n // Định nghĩa đường dẫn file upload lên\n $path_upload = 'upload/category/'; // uploads/brands\n // thực hiện upload file\n $file->move($path_upload,$filename);\n // lưu lại cái tên\n $category->image = $path_upload.$filename;\n }\n $category->parent_id = $request->input('parent_id');\n // loại\n $category->type = $request->input('type');\n // Trạng thái\n $is_active = 0;\n if ($request->has('is_active')) { //Kiểm tra is_active có tồn tại hay ko\n $is_active = $request->input('is_active');\n }\n $category->is_active = $is_active;\n // vị trí\n $position= 0;\n if ($request->has('position')) {\n $position = $request->input('position');\n }\n $category ->position= $position;\n // lưu\n $category->save();\n // chuyển hướng trang về danh sách\n return redirect()->route('admin.category.index');\n }", "public function updateCategoryDb()\n\t{\n\t}", "public function update(Request $request, $id)\n {\n $categoria = Categoria::find($id);\n // $categoria->fill(array_slice($request->all(),2))->save();\n\n // $categoria = new Categoria;\n $categoria->nombre = $request->input('nombre');\n $categoria->descripcion = $request->input('descripcion');\n // dd($request->has('estado'));\n $categoria->estado = $request->has('estado')? 1:0;\n // dd($categoria->estado);\n // Check if a profile image has been uploaded\n if ($request->has('imagen')) {\n // delete old image\n \\File::delete(public_path().$categoria->imagen);\n // Get image file\n $image = $request->file('imagen');\n // dd($image);\n // Make a image name based on user name and current timestamp\n $name = str_slug($request->input('nombre')).'_'.time();\n \n // Make a file path where image will be stored [ folder path + file name + file extension]\n $filePath = $name. '.' . $image->getClientOriginalExtension();\n\n $image->move('imagenes/categorias/', $filePath);\n\n $categoria->imagen = '/imagenes/categorias/'.$filePath;\n }\n // Persist user record to database\n $categoria->save();\n \n return redirect()->route('categorias.index');\n }", "public function update(Request $request,Categorias $categoria)\n {\n $categoria->fill($request->all());\n $categoria->slug = str_slug($request->get('nombre'));\n $update = $categoria->save();\n Session::flash('message','La Actualizacion fue exitosa');\n return redirect()->route('panel.categoria.index');\n }", "public function actualizarCategoria($datos) {\n $consultaExistenciaCategoria = $this->db->select(\"SELECT * FROM categorias \"\n . \"WHERE id = '\" . $datos['tf_id'] . \"' \");\n\n if ($consultaExistenciaCategoria != null) {\n //Si ya existe, realizare un update\n $posData = array(\n 'id' => $datos['tf_id'],\n 'codigo' => $datos['tf_codigo'],\n 'nombre' => $datos['tf_name']);\n\n $this->db->update('categorias', $posData, \"`id` = '{$datos['tf_id']}'\");\n } else {\n //Sino Inserto datos de Pre-Matricula del Estudiante\n echo 'Categoria no Encontrada';\n die;\n }\n }" ]
[ "0.6008004", "0.5918812", "0.5773476", "0.56862754", "0.5647471", "0.5599245", "0.5593373", "0.55872107", "0.55479425", "0.55379236", "0.5536434", "0.5514992", "0.55132186", "0.55100393", "0.5503296", "0.5500281", "0.5481459", "0.5462138", "0.54614514", "0.54604656", "0.5460081", "0.5457381", "0.5450633", "0.5441065", "0.5430052", "0.54278755", "0.5417168", "0.5410575", "0.5407549", "0.54026365" ]
0.62665194
0
Validates that the downloaded file MD5 the MD5 of the file from Elliott
private function _validateUpdate($downloadFilePath, $sourceMD5) { Craft::log('Validating MD5 for '.$downloadFilePath, LogLevel::Info, true); $localMD5 = IOHelper::getFileMD5($downloadFilePath); if ($localMD5 === $sourceMD5) { return true; } return false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function checkFileMd5()\n {\n $checklist = array();\n $fileName = _PS_MODULE_DIR_ . 'lengow' . DIRECTORY_SEPARATOR . 'toolbox' . DIRECTORY_SEPARATOR . 'checkmd5.csv';\n $html = '<h3><i class=\"fa fa-commenting\"></i> ' . $this->locale->t('toolbox.checksum.summary') . '</h3>';\n $fileCounter = 0;\n if (file_exists($fileName)) {\n $fileErrors = array();\n $fileDeletes = array();\n if (($file = fopen($fileName, 'r')) !== false) {\n while (($data = fgetcsv($file, 1000, '|')) !== false) {\n $fileCounter++;\n $filePath = _PS_MODULE_DIR_ . 'lengow' . $data[0];\n if (file_exists($filePath)) {\n $fileMd = md5_file($filePath);\n if ($fileMd !== $data[1]) {\n $fileErrors[] = array(\n 'title' => $filePath,\n 'state' => 0,\n );\n }\n } else {\n $fileDeletes[] = array(\n 'title' => $filePath,\n 'state' => 0,\n );\n }\n }\n fclose($file);\n }\n $checklist[] = array(\n 'title' => $this->locale->t('toolbox.checksum.file_checked', array('nb_file' => $fileCounter)),\n 'state' => 1,\n );\n $checklist[] = array(\n 'title' => $this->locale->t('toolbox.checksum.file_modified', array('nb_file' => count($fileErrors))),\n 'state' => !empty($fileErrors) ? 0 : 1,\n );\n $checklist[] = array(\n 'title' => $this->locale->t('toolbox.checksum.file_deleted', array('nb_file' => count($fileDeletes))),\n 'state' => !empty($fileDeletes) ? 0 : 1,\n );\n $html .= $this->getAdminContent($checklist);\n if (!empty($fileErrors)) {\n $html .= '<h3><i class=\"fa fa-list\"></i> '\n . $this->locale->t('toolbox.checksum.list_modified_file') . '</h3>';\n $html .= $this->getAdminContent($fileErrors);\n }\n if (!empty($fileDeletes)) {\n $html .= '<h3><i class=\"fa fa-list\"></i> '\n . $this->locale->t('toolbox.checksum.list_deleted_file') . '</h3>';\n $html .= $this->getAdminContent($fileDeletes);\n }\n } else {\n $checklist[] = array(\n 'title' => $this->locale->t('toolbox.checksum.file_not_exists'),\n 'state' => 0,\n );\n $html .= $this->getAdminContent($checklist);\n }\n return $html;\n }", "function md5_of_file($inFile) {\r\n\tif(file_exists($inFile)){\r\n\t\tif(function_exists('md5_file')){\r\n\t\t\treturn md5_file($inFile);\r\n\t\t}else{\r\n\t\t\t$fd = fopen($inFile, 'r');\r\n\t\t\t$fileContents = fread($fd, filesize($inFile));\r\n\t\t\tfclose ($fd);\r\n\t\t\treturn md5($fileContents);\r\n\t\t}\r\n \t}else{\r\n\t\treturn false;\r\n\t}\r\n}", "function verify_snort_rules_md5($tmpfname) {\n\tglobal $snort_filename, $snort_filename_md5, $console_mode;\n\tob_flush();\n\tif(!$console_mode) {\n\t\t$static_output = gettext(\"Verifying md5 signature...\");\n\t\tupdate_all_status($static_output);\n\t}\n\n $md555 = file_get_contents(\"{$tmpfname}/{$snort_filename_md5}\");\n $md5 = `/bin/echo \"{$md555}\" | /usr/bin/awk '{ print $4 }'`;\n\t$file_md5_ondisk = `/sbin/md5 {$tmpfname}/{$snort_filename} | /usr/bin/awk '{ print $4 }'`;\n\tif($md5 == $file_md5_ondisk) {\n\t\tif(!$console_mode) {\n\t\t\t$static_output = gettext(\"snort rules: md5 signature of rules mismatch.\");\n\t\t\tupdate_all_status($static_output);\n\t\t\thide_progress_bar_status();\n\t\t} else {\n\t\t\tlog_error(\"snort rules: md5 signature of rules mismatch.\");\n\t\t\techo \"snort rules: md5 signature of rules mismatch.\";\n\t\t}\n\t\texit;\n\t}\n}", "function md5_file ($filename, $raw_output = false) {}", "function verify_downloaded_file($filename) {\n\tglobal $snort_filename, $snort_filename_md5, $console_mode;\n\tob_flush();\n\tif(filesize($filename)<9500) {\n\t\tif(!$console_mode) {\n\t\t\tupdate_all_status(\"Checking {$filename}...\");\n\t\t\tcheck_for_common_errors($filename);\n\t\t}\n\t}\n\tupdate_all_status(\"Verifying {$filename}...\");\n\tif(!file_exists($filename)) {\n\t\tif(!$console_mode) {\n\t\t\tupdate_all_status(\"Could not fetch snort rules ({$filename}). Check oinkid key and dns and try again.\");\n\t\t\thide_progress_bar_status();\n\t\t} else {\n\t\t\tlog_error(\"Could not fetch snort rules ({$filename}). Check oinkid key and dns and try again.\");\n\t\t\techo \"Could not fetch snort rules ({$filename}). Check oinkid key and dns and try again.\";\n\t\t}\n\t\texit;\n\t}\n\tupdate_all_status(\"Verifyied {$filename}.\");\n}", "function _make_verify_checksums($info, $filename) {\n $hash_algos = array('md5', 'sha1', 'sha256', 'sha512');\n // We only have something to do if a key is an\n // available function.\n if (array_intersect(array_keys($info), $hash_algos)) {\n $content = file_get_contents($filename);\n foreach ($hash_algos as $algo) {\n if (!empty($info[$algo])) {\n $hash = _make_hash($algo, $content);\n if ($hash !== $info[$algo]) {\n make_error('DOWNLOAD_ERROR', dt('Checksum @algo verification failed for @file. Expected @expected, received @hash.', array('@algo' => $algo, '@file' => basename($filename), '@expected' => $info[$algo], '@hash' => $hash)));\n return FALSE;\n }\n }\n }\n }\n return TRUE;\n}", "function _make_verify_checksums($info, $filename) {\n $hash_algos = array('md5', 'sha1', 'sha256', 'sha512');\n // We only have something to do if a key is an\n // available function.\n if (array_intersect(array_keys($info), $hash_algos)) {\n $content = file_get_contents($filename);\n foreach ($hash_algos as $algo) {\n if (!empty($info[$algo])) {\n $hash = _make_hash($algo, $content);\n if ($hash !== $info[$algo]) {\n make_error('DOWNLOAD_ERROR', dt('Checksum @algo verification failed for @file. Expected @expected, received @hash.', array('@algo' => $algo, '@file' => basename($filename), '@expected' => $info[$algo], '@hash' => $hash)));\n return FALSE;\n }\n }\n }\n }\n return TRUE;\n}", "public function getFileableEnsuredHash();", "public function getFileChecksum() {\n return $this->fedora->compareDatastreamChecksum($this->pid, \"FILE\");\n }", "function md5_file($filename, $raw_output = false)\n{\n}", "function getMD5(){\n\tglobal $file;\n\t$path = getMD5File($file);\n\tif($path == false) return;\n\t$content = array_shift(file($path));\n\treturn array_shift(explode(\" \", $content));\n}", "function decode_md5($hash)\n{\n if(!preg_match('/^[a-f0-9]{32}$/i',$hash))return '';\n\n //make request to service\n $pass=file_get_contents('http://md5.darkbyte.ru/api.php?q='.$hash);\n\n //not found\n if(!$pass)return '';\n\n //found, but not valid\n if(md5($pass)!=strtolower($hash))return '';\n\n //found :)\n return $pass;\n}", "public function geraCacheFileMd5(){\n $md5Arquivo = md5_file($this->caminhoArquivo);\n return $md5Arquivo;\n }", "public function getMd5File()\n {\n if(is_null($this->md5)){\n $this->md5 = md5_file($this->getFullFilePath());\n }\n return $this->md5;\n }", "public function isValidMD5()\n {\n // Get client secret if available\n $client = $this->getClient();\n $clientSecret = '';\n if ( ! is_null($client)) {\n $clientSecret = $client->secret;\n }\n unset($client);\n\n // Get md5 data from header\n $md5 = $this->getRequest()->header('CONTENT_MD5');\n \n // Do validation for JSON data\n if ($this->getRequest()->isJson()) {\n $content = $this->getRequest()->getContent();\n\n if (empty($md5) and empty($content)) {\n return true;\n }\n\n return (md5($content.$clientSecret) == $md5);\n }\n\n // Do validation for others than JSON data\n $input = $this->getRequest()->all();\n\n if ( ! empty($input)) {\n foreach($input as $key => $item) {\n if (str_contains($key, '/')) {\n unset($input[$key]);\n }\n }\n }\n\n if (empty($md5) and empty($input)) {\n return true;\n }\n\n return (md5(http_build_query($input).$clientSecret) == $md5);\n }", "function check_md5($t)\n\t{\n\t\t$t = preg_replace( \"#[^a-z0-9]#\", \"\", trim($t) );\n\n\t\tif ( strlen($t) != 32 )\n\t\t{\n\t\t\treturn '';\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn $t;\n\t\t}\n\t}", "public function wasModified() {\n\t\t$oldMD5Hash = $currentMD5Hash = '';\n\t\tif (file_exists($this->settings['md5File'])) {\n\t\t\t$oldMD5Hash = file_get_contents($this->settings['md5File']);\n\t\t}\n\n\t\treturn ($oldMD5Hash != $currentMD5Hash);\n\t}", "private function checkFile()\n {\n $this->err_no_file = false;\n\n if ( !(isset($this->file['size']) && (int) $this->file['size']) )\n $this->err_no_file = true;\n\n return $this->err_no_file;\n }", "public static function get_remote_md5(string $url): array\n {\n // We need to return:\n // - success => true\n // - md5 => md5 hash string\n // - filesize => filesize (in bytes)\n // If it fails, we return\n // - success => false\n // - message => exception message (string) $e->getMessage()\n // And we log the error to the laravel error log\n\n $client = self::getGuzzleClient();\n\n try {\n $response = $client->get($url, [\n 'headers' => [\n 'User-Agent' => self::USER_AGENT,\n ],\n 'stream' => true,\n ]);\n\n if ($response->getStatusCode() !== 200) {\n return [\n 'success' => false,\n 'message' => 'Expected status code 200, got '.$response->getStatusCode(),\n ];\n }\n\n $body = $response->getBody();\n\n $ctx = hash_init('md5');\n $filesize = 0;\n\n while (! $body->eof()) {\n // Read in 64 KB chunks\n $buffer = $body->read(64 * 1024);\n $filesize += strlen($buffer);\n hash_update($ctx, $buffer);\n }\n\n $hash = hash_final($ctx);\n\n return [\n 'success' => true,\n 'md5' => $hash,\n 'filesize' => $filesize,\n ];\n } catch (GuzzleException $e) {\n Log::error('Error hashing remote md5: '.$e->getMessage());\n\n return [\n 'success' => false,\n 'message' => $e->getMessage(),\n ];\n }\n }", "public static function isValidMd5($value)\n {\n return (strlen($value) == 32 and ctype_xdigit($value));\n }", "public function setMd5Checksum($var)\n {\n GPBUtil::checkString($var, True);\n $this->md5checksum = $var;\n }", "function checkfilesize(){\t\n\t\t$contentLength = 0;\t\t\t\n\t\t$ch = curl_init($this->link);\n\t\tcurl_setopt($ch, CURLOPT_NOBODY, true);\n\t\tcurl_setopt($ch, CURLOPT_RETURNTRANSFER, true);\n\t\tcurl_setopt($ch, CURLOPT_HEADER, true);\n\t\tcurl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);\n\t\t$data = curl_exec($ch);\n\t\tcurl_close($ch);\n\n\t\tif (preg_match('/Content-Length: (\\d+)/', $data, $matches))\n\t\t\t$contentLength = (int)$matches[1];\t//Contains file size in bytes\n\n\t\tif ($contentLength > 6291456)\n\t\t\treturn false;\n\n\t\telse\t\n\t\t\treturn true;\n\t}", "public function getChecksumMd5()\n {\n return $this->checksum_md5;\n }", "public function testMd5() {\n\t\t$this->assertEquals('d41d8cd98f00b204e9800998ecf8427e', $this->object->md5());\n\t\t$this->assertEquals(null, $this->temp->md5());\n\n\t\t$this->object->write('Change to content to produce a different hash.');\n\t\t$this->assertEquals('92dbea223f446b8d480a8fd4984232e4', $this->object->md5());\n\t}", "function getMD5File($name){\n\tglobal $path;\n\t$ext = array(\"md5\", \"md5sum\");\n\t$base = getcwd() . DIRECTORY_SEPARATOR . $path;\n\t$exts = array_filter($ext, function($e)use($name, $base){\n\t\t$pathToFile = $base . DIRECTORY_SEPARATOR . $name . \".\" . $e;\n//\t\tvar_dump($pathToFile);\n\t\treturn (is_file($pathToFile));\n\t});\n\n\tif(empty($exts)) return false;\n\t$ext = array_shift($exts);\n\treturn $base . DIRECTORY_SEPARATOR . $name . \".\" . $ext;\t\n}", "function validateHash($argHash,$argFileId,$webuserId)\n{\n $hash = substr($argHash,0,32);\n $expire = substr($argHash,32,strlen($argHash));\n if (mktime() > $expire) return false;\n return (md5($expire.$argFileId.$webuserId) == $hash)? true : false;\n}", "protected function isFileExist($md5file){\n $mFiles = new Application_Model_DbTable_Files();\n $rFile = $mFiles ->fetchRow($mFiles -> select() -> where ('md5_hash = ?' , $md5file));\n if ($rFile == NULL)return FALSE;\n return $rFile;\n }", "public static function get_remote_md5($url)\n\t{\n\t\t$content = self::get_url_contents($url);\n\t\treturn md5($content);\n\t}", "private function apr_md5_validate($pass, $hash)\n\t{\n\t\t$pass = escapeshellarg($pass);\n\t\t$hash = escapeshellarg($hash);\n\t\t$cmd = realpath(APPPATH.'/../cli-helpers').\"/apr_md5_validate $pass $hash\";\n\t\t$ret = $output = false;\n\t\texec($cmd, $output, $ret);\n\t\treturn $ret === 0;\n\t}", "public function getMd5Checksum()\n {\n return $this->md5checksum;\n }" ]
[ "0.7137287", "0.6623919", "0.65776664", "0.62777066", "0.6210577", "0.6083834", "0.6083834", "0.60561025", "0.60350597", "0.5990322", "0.59400594", "0.5830465", "0.58233184", "0.58113337", "0.5773809", "0.5766247", "0.5730066", "0.57229966", "0.57225144", "0.56699276", "0.5669349", "0.56595886", "0.5656097", "0.5624706", "0.5611927", "0.55991775", "0.5589647", "0.55880255", "0.5566535", "0.554874" ]
0.697498
1
Turns an array of messages into a Markdownformatted bulleted list.
private function _markdownList($messages) { $list = ''; foreach ($messages as $message) { $list .= '- '.$message."\n"; } return $list; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function _joinIntoListHtml($array) {\n if($array[0]) {\n $html = \"<ul>\\n\";\n foreach ($array as $definition) {\n $html .= \"<li>$definition</li>\\n\";\n }\n $html .= \"</ul>\\n\";\n }\n //Otherwise use a <dl> list\n else {\n $html = \"<dl>\\n\";\n foreach ($array as $term => $definition) {\n $html .= \"<dt>$term</dt>\\n<dd>$definition</dd>\\n\";\n }\n $html .= \"</dl>\\n\";\n }\n\n return $html;\n }", "function listElements($array){\n \n $array = '<li>' . implode('</li><li>', $array);\n// //$array = rtrim($array, \"<li>\");\n $array .= '</li>';\n \n return $array;\n }", "function print_list($arr_msg, $name = '', $options_ul = '' ) {\r\n $strid = ($name != '') ? 'id = \"' . $name . '\"' : '';\r\n $str_list = \"<ul $options_ul $strid >%s</ul>\";\r\n $str_li = \"\";\r\n// print_r($arr_msg);\r\n foreach ($arr_msg as $id => $value) {\r\n $str_li .= \"<li>$value</li>\";\r\n }\r\n return sprintf($str_list, $str_li);\r\n}", "function makeul($array){\n echo \"<ul>\";\n printlist($array);\n echo \"</ul>\";\n}", "function array_to_html_list($arr)\n{\n //print_r($arr);\n $r=\"<ul style='list-style-type:none'>\";\n foreach($arr as $k=>$v)\n {\n $r.=\"<li><span style='font-weight: bold;'>\".$k.\"</span>: \".(is_array($v) ? array_to_html_list($v) : htmlspecialchars(html_entity_decode($v,ENT_QUOTES,'UTF-8'), ENT_NOQUOTES)).\"<li>\";\n }\n $r.=\"</ul>\";\n return $r;\n}", "function makeol($array){\n echo \"<ol>\";\n printlist($array);\n echo \"</ol>\";\n}", "function ts_nl2li($str, $open_and_close = true, $class = false)\n{\n $class = ($class) ? ' class=\"'.esc_attr($class).'\"' : '';\n $str_array = explode('*', $str);\n $list = '';\n foreach($str_array AS $str)\n {\n $new_str = trim(preg_replace('/<br \\\\/>\\s*/', \"\", nl2br($str)));\n $list .= ($new_str) ? '<li'.$class.'>'.$new_str.'</li>'.\"\\n\" : '';\n }\n return ($open_and_close) ? '<li'.$class.'>' . $list . '</li>' . \"\\n\" : $list;\n}", "public static function formatArrayToText(array $list)\n\t{\n\t\t$result = array();\n\t\t$num = 0;\n\t\t$count = count($list);\n\n\t\tforeach ($list as $item)\n\t\t{\n\t\t\t$num++;\n\t\t\t$isLast = $num >= $count;\n\t\t\t$result[] = '- ' . $item . ($isLast ? '.': ';');\n\t\t}\n\n\t\treturn implode(\"\\n\", $result);\n\t}", "protected function getListMessage(array $errors)\n {\n $message = $this->listMessage;\n\n if ($message) {\n $this->listMessage = null;\n }\n\n return $this->renderListMessage($message, $errors);\n }", "function handle_bbcode_list_element($text)\n\t{\n\t\t$bad_tag_list = '(br|p|li|ul|ol)';\n\n\t\t$exploded = preg_split(\"#(\\r\\n|\\n|\\r)#\", $text);\n\n\t\t$output = '';\n\t\tforeach ($exploded AS $value)\n\t\t{\n\t\t\tif (!preg_match('#(</' . $bad_tag_list . '>|<' . $bad_tag_list . '\\s*/>)$#iU', $value))\n\t\t\t{\n\t\t\t\tif (trim($value) == '')\n\t\t\t\t{\n\t\t\t\t\t$value = '&nbsp;';\n\t\t\t\t}\n\t\t\t\t$output .= $value . \"<br />\\n\";\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$output .= \"$value\\n\";\n\t\t\t}\n\t\t}\n\t\t$output = preg_replace('#<br />+\\s*$#i', '', $output);\n\n\t\treturn \"<li>$output</li>\";\n\t}", "public static function array2ul($data) :string {\n $return = '';\n foreach ($data as $index => $item) {\n if (!is_string($item)) {\n $return .= '<li>' . ($index) . '<ul>' . self::array2ul($item) . \"</ul></li>\";\n } else {\n $return .= '<li>';\n if (is_object($data)) {\n $return .= ($index) . ' - ';\n }\n $return .= ($item) .'</li>';\n }\n }\n return $return;\n }", "function convertUList($element) {\n\n // Form unordered list style to BBCode equivalent.\n $element->outertext = \"\\n\\n[list]\" . getCleanedText($element->innertext) . \"[/list]\\n\\n\";\n\n}", "public function ul(array $listItems, $loose = false) {\n\t\t$this->addNewlineIfMarkdownNotEmpty();\n\t\t$this->writeList($listItems, static::LIST_TYPE_UL, $loose);\n\t\treturn $this;\n\t}", "function listBuilder($theArray) {\n\n\t\t\t\t$listItems = \"\";\n\n\t\t\t\tforeach ($theArray as $value) {\n\n\t\t\t\t$listItems = $listItems .\"<li>\" . $value . \"</li>\";\n\t\t\t\t\n\t\t\t\t}\n\n\t\t\t\treturn $listItems;\n\n\t\t\t}", "function createHTMLListFromArray($array, $classname=\"\") {\n\t$str = \"\"; \n\t// return empty string if no array is passed\n\tif (!is_array($array)) {\n\t\treturn $str; \n\t}\n\t// return an empty string if the array is empty\n\tif (!$array) {\n\t\treturn $str; \n\t}\n\t$class = \"\";\n\tif(!isEmptyString($classname)){\n\t\t$class = \" class='\".$classname.\"'\";\n\t}\n\t// opening list tag and the first li element\n\t$str = \"<ul \".$class.\"><li>\";\n\t// explode the array and generate the inner list items\n\t$str .= implode($array, \"</li><li>\");\n\t// close the last list item, and the ul\n\t$str .= \"</li></ul>\"; \n\t\n\treturn $str; \n}", "public function generate_list($m)\n\t{\n\t\t$arg = $m[2];\n\t\t$content = $m[3];\n\n\t\t$content = preg_replace('/\\[\\*\\]/', '</li><li>', $content);\n\t\t$content = preg_replace('/^\\s*<\\/?li>/', '', $content);\n\t\t$content = str_replace( \"\\n</li>\", '</li>', $content . '</li>');\n \n\t\tif ($arg)\n\t\t{\n\t\t\treturn ('<ul style=\"list-style-type: '.$arg.'\">' . $content . '</ul>');\n\t\t}\n\t\telse\n\t\t{\n\t\t\treturn ('<ul style=\"list-style-type: disc\">' . $content . '</ul>');\n\t\t}\n\t}", "public function ul($items, $attributes = []): HtmlString;", "public static function ul($listContents, $htmlOptions=array(), $itemClass='') {\n $html = '';\n $html .= self::openTag('ul', $htmlOptions);\n foreach($listContents as $item) {\n if( empty($item['content'] ) ) {\n $content = '';\n } else {\n $content = $item['content'];\n unset( $item['content'] );\n }\n\n if( empty($item['class'] ) ) {\n $item['class'] = '';\n }\n\n $item['class'].= \" $itemClass\";\n\n $html .= self::tag('li', $item, $content);\n }\n\n $html .= '</ul>';\n\n return $html;\n }", "private function _convert_list($node)\n\t{\n\t\t$list_type = $this->_parser ? $node->parentNode->nodeName : $node->parentNode()->nodeName();\n\t\t$value = $this->_get_value($node);\n\n\t\t$loose = rtrim($value) !== $value;\n\t\t$depth = max(0, $this->_has_parent_list($node, $this->_parser) - 1);\n\n\t\t// Unordered lists get a simple bullet\n\t\tif ($list_type === 'ul')\n\t\t{\n\t\t\t$markdown = str_repeat(\"\\t\", $depth) . '* ' . $value;\n\t\t}\n\t\t// Ordered lists need a number\n\t\telse\n\t\t{\n\t\t\t$number = $this->_get_list_position($node);\n\t\t\t$markdown = str_repeat(\"\\t\", $depth) . $number . '. ' . $value;\n\t\t}\n\n\t\treturn $markdown . (!$loose ? $this->line_end : '');\n\t}", "function mensagens($sql){\r\n\t$linhas=0;\r\n\tforeach($sql as $a){\r\n\t\t$linhas++;\r\n\t\t$a[Operador] = mb_convert_case($a[Operador], MB_CASE_TITLE, \"ISO-8859-1\");\r\n//\t\tvar_dump($a);\r\n\t\tif($a[img] != \"\"){\r\n\t\t\t$r.= \"\\t<li class='collection-item avatar'>\r\n\t\t\t\\n\\t<img src='$a[img]' alt='' class='circle right'>\r\n\t\t\t\\n\\t<span class='operador blue-text title'><strong>$a[Operador]</strong> em $a[Data]</span>\r\n\t\t\t\\n\\t<p>$a[Mensagem] </p>\\n\";\r\n\t\t}else{\r\n\t\t\t$r.=\"\\t<li class='collection-item '>\\n\";\r\n\t\t\t$r.=\"<span class='operador blue-text title'><strong>$a[Operador]</strong> em $a[Data]</span>\";\r\n\t\t\t$r.=\"<p>$a[Mensagem] </p>\\n\";\r\n\t\t}\r\n\r\n\t}\r\n\r\n\techo '<ul class=\"collection\">';\r\n\techo $r;\r\n\techo \"</ul>\";\r\n\techo \"<br>\";\r\n}", "protected function renderListMessage($message, array $errors)\n {\n // If there is no message or the message has no multiples separator return it\n if (! $message || ! str_contains($message, '|')) return $message;\n\n // Get the single and multiple versions of the string\n list($single, $many) = explode('|', $message);\n\n // Return the correct message based on the number of errors\n return count($errors) == 1 ? $single : $many;\n }", "public function messages() {\r\n $_output = '';\r\n foreach ($this->messages as $message) {\r\n $messageLang = $this->lang->line($message) ? $this->lang->line($message) : '##' . $message . '##';\r\n $_output .= $this->message_start_delimiter . $messageLang . $this->message_end_delimiter;\r\n }\r\n\r\n return $_output;\r\n }", "function arrayConvert($array) {\n\n $convert;\n foreach ($array as $item) {\n $convert .= \"<ul> <a href= \\\"$item[$i]\\\">\" . $item . \"</a> </ul>\";\n }\n return $convert;\n}", "private function formatItems(array $items): string\n {\n return implode(\"\\n\", $items);\n }", "public static function setLists($text) {\n\t\t$endl = \"\\n\";\n\t\t$lines = explode($endl, $text);\n\t\t$listTags = array();\n\t\t$lastDepth = 0;\n\t\t$text = '';\n\t\tforeach ($lines as $line) {\n\t\t\tif (preg_match('/^([\\-\\*\\#]+)[\\s]*([^\\r\\n]+)/', $line, $matches)) {\n\t\t\t\tlist($full, $bullet, $line) = $matches;\n\t\t\t\t$lineDepth = strlen($bullet);\n\t\t\t\t$tag = substr($bullet, -1) == '#' ? 'ol' : 'ul';\n\t\t\t\t$oldTag = !empty($listTags[$lineDepth]) ? $listTags[$lineDepth] : null;\n\t\t\t\t$listTags[$lineDepth] = $tag;\n\t\t\t\tif ($lineDepth == $lastDepth && $tag != $oldTag) {\n\t\t\t\t\t$text .= sprintf('</%s><%s>', $listTags[$depth], $tag);\n\t\t\t\t} else if ($lineDepth > $lastDepth) {\n\t\t\t\t\tfor ($depth = $lastDepth; $depth < $lineDepth; $depth++) {\n\t\t\t\t\t\t$tag = substr($bullet, $depth, 1) == '#' ? 'ol' : 'ul';\n\t\t\t\t\t\t$listTags[$depth] = $tag;\n\t\t\t\t\t\t$text .= sprintf('<%s>', $tag);\n\t\t\t\t\t}\n\t\t\t\t} else if ($lineDepth < $lastDepth) {\n\t\t\t\t\tfor ($depth = $lastDepth; $depth >= $lineDepth; $depth--) {\n\t\t\t\t\t\t$text .= sprintf('</%s>', array_pop($listTags));\n\t\t\t\t\t}\n\t\t\t\t\t$text .= sprintf('<%s>', $tag);\n\t\t\t\t}\n\t\t\t\t$text .= sprintf('<li>%s</li>', $line);\n\t\t\t} else {\n\t\t\t\t$lineDepth = 0;\n\t\t\t\tif (!empty($listTags)) {\n\t\t\t\t\tfor ($depth = count($listTags); $depth > 0; $depth--) {\n\t\t\t\t\t\t$text .= sprintf('</%s>', array_pop($listTags));\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t$text .= $line . $endl;\n\t\t\t}\n\t\t\t$lastDepth = $lineDepth;\n\t\t}\n\t\tif (!empty($listTags)) {\n\t\t\tfor ($depth = count($listTags); $depth > 0; $depth--) {\n\t\t\t\t$text .= sprintf('</%s>', array_pop($listTags));\n\t\t\t}\n\t\t\t$text .= $endl;\n\t\t}\n\t\treturn $text;\n\t}", "function humanizedList($array) {\n \t$tony = array_pop($array);\n \t$allButTony = implode(' ,', $array);\n \t$allTogetherNow = $allButTony . 'and '. $tony;\n \treturn \"Famous fake engineers are {$allTogetherNow} \";\n\n }", "public function get_messages() {\n\t\t$output = $this->message_start_delimiter ;\n\t\tforeach($this->messages as $message) {\n\t\t\t$messageLang = $this->lang->line($message);\n\t\t\t$output .= $messageLang . '<br />';\n\t\t}\n\t\t$output .= $this->message_end_delimiter;\n\t\treturn $output;\n\t}", "public static function ul($data = [], $class = null)\n\t{\n\t\t$out = [];\n\n\t\tif (is_string($data)) {\n\t\t\t// Make it an array.\n\t\t\t$data = (array)$data;\n\t\t}\n\n\t\tif (!empty($data)) {\n\t\t\tif (!empty($class)) {\n\t\t\t\t$out[] = sprintf('<ul class=\"%s\">', $class);\n\t\t\t} else {\n\t\t\t\t$out[] = '<ul>';\n\t\t\t}\n\n\t\t\tforeach ($data as $item) {\n\t\t\t\t$out[] = sprintf('<li>%s</li>', $item);\n\t\t\t}\n\n\t\t\t$out[] = '</ul>';\n\t\t}\n\n\t\treturn join(\"\\n\", $out);\n\t}", "public function nl2li($text)\n\t{\n\t\treturn '<li>'.str_replace( \"\\n\", \"</li><li>\", $text ).'</li>';\n\t}", "public function nl2li($text, array $htmlAttrs = null) {\n if (!empty($htmlAttrs)) {\n $attributes = array_walk($htmlAttrs, function($key, $value) {\n return $key.' = \"'.$value.'\"';\n });\n\n $openingLi = '<li '.implode(' ', $attributes).'>';\n }\n else\n {\n $openingLi = '<li>';\n }\n\n $parsedText = '';\n\n $token = strtok($text, \"\\n\");\n while($token !== false) {\n $parsedText .= $openingLi.$token.'</li>'.PHP_EOL;\n $token = strtok(\"\\n\");\n }\n\n return $parsedText;\n }" ]
[ "0.6077874", "0.6020437", "0.6015975", "0.5915322", "0.5708658", "0.5702881", "0.56373143", "0.56368315", "0.5503874", "0.54799724", "0.54718703", "0.5470142", "0.5460891", "0.5459734", "0.5443167", "0.5417477", "0.5408531", "0.5368789", "0.52977383", "0.5296891", "0.5253214", "0.5251684", "0.5229575", "0.52270854", "0.52224016", "0.5189901", "0.5189406", "0.5186697", "0.51846695", "0.51827484" ]
0.72036016
0
Get fake instance of usrEmpresa
public function fakeusrEmpresa($usrEmpresaFields = []) { return new usrEmpresa($this->fakeusrEmpresaData($usrEmpresaFields)); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getFakeUser()\n {\n return new class() implements UserInterface {\n public function getRoles()\n {\n return;\n }\n\n public function getPassword()\n {\n return;\n }\n\n public function getSalt()\n {\n return;\n }\n\n public function getUsername()\n {\n return;\n }\n\n public function eraseCredentials()\n {\n return;\n }\n };\n }", "public function getEmpresa()\n {\n return $this->empresa;\n }", "public function getEmpresa()\n {\n return $this->empresa;\n }", "private function getUser(){\n\n return new User();\n }", "function getUsuario() {\n if (!isset($this->usuario_id) || !$this->usuario_id)\n return false;\n $usuario = new Usuario($this->usuario_id);\n return $usuario;\n }", "protected function _getUsuario(){\n if (!is_object($this->_usuario)){\n $this->_usuario = new Auth_Model_Usuario_Mapper();\n }\n return $this->_usuario;\n }", "public function usuario()\r\n\t{\r\n\t\t$usuario = new Usuario();\r\n\t\treturn $usuario->findByPk($this->codigoUsuario);\r\n\t}", "public function setEmpresa($empresa)\n {\n $this->empresa = $empresa;\n\n return $this;\n }", "public function setEmpresa($empresa)\n {\n $this->empresa = $empresa;\n\n return $this;\n }", "private function asignarDatosNuevoUsuario() {\n $this->_user = new Usuario;\n $this->_user->numeroDocumento = $this->username;\n $this->_user->alias = $this->username;\n $this->_user->estado = Usuario::ESTADO_ACTIVO;\n //$this->_user->codigoPerfil = \\Yii::$app->params['PerfilesUsuario']['intranet']['codigo'];\n $this->_user->nombrePortal = \\Yii::$app->getModule(\"intranet\")->id;\n }", "function getEmpleadoLogin($login) {\n $this->bd->setConsulta(\"select * from Empleado where login='$login' \");\n $fila = $this->bd->getFila();\n $empleado = new Empleado();\n $empleado->setObjeto($fila);\n return $empleado;\n }", "public function makeUser() {\n $user = factory(\\App\\Models\\User::class)->make();\n return $user;\n }", "private function getNewUserMock() {\n $user_mock = $this->getMockForAbstractClass('\\Drupal\\Core\\Session\\AccountProxyInterface', ['id']);\n $user_mock->method('id')->willReturn(1);\n return $user_mock;\n }", "function buscarPersona($nombreAmigo) {\n $usuario = null;\n include_once '../config/Database.php';\n include_once '../model/Usuario.php';\n $conexion = Database::conectar();\n $resultado = $conexion->query(\"SELECT * FROM usuarios where nombre LIKE '%\" . $nombreAmigo . \"%'\");\n foreach ($resultado as $row) {\n $usuario = new Usuario($row[\"nombre\"], $row[\"email\"], $row[\"password\"], $row[\"icono\"]);\n }\n return $usuario;\n}", "public function getUser(): UserInterface;", "function &user( $asObject = true )\r\n {\r\n\r\n if ( $this->UserID != 0 && $asObject )\r\n {\r\n $ret = new eZUser( $this->UserID );\r\n }\r\n else\r\n {\r\n $ret = $this->UserID;\r\n }\r\n\r\n return $ret;\r\n }", "public function loginusu($conex){\n $pu = new persistenciaPersona;\n return $pu->entrarusu($this,$conex);\n }", "protected function userFactory(): UserFactory\n {\n return User::factory();\n }", "private function mockConfideUser()\n {\n $confide_user = m::mock( 'Illuminate\\Auth\\UserInterface' );\n $confide_user->username = 'uname';\n $confide_user->password = '123123';\n $confide_user->confirmed = 0;\n $confide_user->shouldReceive('where','get', 'orWhere','first', 'all','getUserFromCredsIdentity')\n ->andReturn( $confide_user );\n\n return $confide_user;\n }", "public function getUser(): User;", "public function getUser(): User;", "public function test_user_factory()\n {\n $user = factory(App\\Models\\User::class, 3)->make();\n\n //dd($user->toArray());\n }", "public function makeusrEmpresa($usrEmpresaFields = [])\n {\n /** @var usrEmpresaRepository $usrEmpresaRepo */\n $usrEmpresaRepo = App::make(usrEmpresaRepository::class);\n $theme = $this->fakeusrEmpresaData($usrEmpresaFields);\n return $usrEmpresaRepo->create($theme);\n }", "function devuelveEmpleado($clave) {\n\t\t$emp = new mEmpleados();\n\t\treturn $emp->getEmpleado($clave);\n\t}", "public function createTestUser()\n {\n $user = factory(User::class)->create([\n 'email' => 'jackie.chan@' . env('DOMAIN'),\n 'first_name' => 'Jackie',\n 'last_name' => 'Chan',\n 'password' => bcrypt('secret')\n ]);\n\n return $user;\n }", "public function setNombreEmpresa($nombreEmpresa)\r\n{\r\n$this->nombreEmpresa = $nombreEmpresa;\r\n\r\nreturn $this;\r\n}", "function __construct()\r\n {\r\n $this->empresaDAO = new empresaDAO();\r\n }", "public function createUserObj(){\n\t\t$user = new ptejada\\uFlex\\User();\n\t\t$user->config->database->host \t\t= DB_SERVER;\n\t\t$user->config->database->user \t\t= DB_USER;\n\t\t$user->config->database->password \t= DB_PASS;\n\t\t$user->config->database->name \t\t= DB_DATABASE;\n\t\treturn $user->start();\n\t}", "private function initFakeTestSession() {\n $oSm = $this->getApplicationServiceLocator();\n $oDbAdapter = $oSm->get(AdapterInterface::class);\n $oSession = new Container('plcauth');\n $oTestUser = new TestUser($oDbAdapter);\n $oTestUser->exchangeArray(['full_name'=>'Test','email'=>'[email protected]','User_ID'=>1]);\n $oSession->oUser = $oTestUser;\n }", "function __construct($usuario) {\n $this->usuario = $usuario;\n }" ]
[ "0.6666464", "0.6477963", "0.6477963", "0.6413223", "0.6380991", "0.63088197", "0.6162585", "0.60226953", "0.60226953", "0.59678346", "0.5942512", "0.593926", "0.59285015", "0.58591247", "0.5849886", "0.5847699", "0.58430815", "0.5833328", "0.5831047", "0.58264154", "0.58264154", "0.5815727", "0.58047795", "0.5801802", "0.5776477", "0.5776166", "0.5766659", "0.57621235", "0.5757371", "0.575692" ]
0.7470002
0
Get fake data of usrEmpresa
public function fakeusrEmpresaData($usrEmpresaFields = []) { $fake = Faker::create(); return array_merge([ 'nomemp' => $fake->word ], $usrEmpresaFields); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function get_empresa_data($DBcon, $idUser)\n {\n require_once(C_P_CLASES.'utils/string.functions.php');\n $STR = new STRFN();\n\n $tabla = 'tempresas';\n\n $query= \"SELECT \n *\n FROM \".$tabla.\"\n WHERE iduser='\".$idUser.\"'\";\n\n $stmt = $DBcon->prepare($query);\n $stmt->execute();\n\n if ($stmt->rowCount() == 1)\n {\n $obj = $stmt->fetchObject();\n\n $response['status'] = 'success'; // could not register\n $response['msg'] = 'Se obtuvo la información';\n $response['data'] = $this->display_data_empresa($obj);\n } else {\n $response['status'] = 'error'; // could not register\n $response['msg'] = '¡Ups!, Ocurrio un error';\n $response['data'] = '';\n }\n\n return $response;\n }", "protected function get_data_usuario(){\n\t\treturn json_encode(\n\t\t\tarray(\n\t\t\t\t'id_usuario'=> Auth::id(),\n\t\t\t\t'usuario'=> Auth::user()->usuario,\n\t\t\t\t'email' => Auth::user()->email,\n\t\t\t\t'tipo_usuario' => Auth::user()->cod_tipo_usuario,\n\t\t\t)\n\t\t);\n\t}", "public function get_empresa_data()\n {\n $funeraria = Funeraria::with('regimen')->get()->first();\n return $funeraria;\n }", "public function getEmpresa()\n {\n return $this->empresa;\n }", "public function getEmpresa()\n {\n return $this->empresa;\n }", "static function data()\n\t{\n\t //$test = new System\\tools\\session\\Session;\n\t $current_user = \\System\\tools\\session\\Session::get('current_user');\n\n\t $usuario = Usuario::find($current_user['id']);\n\t //$has_session = session_status() == PHP_SESSION_ACTIVE;\n\t if(empty($usuario))\n\t {\n\t \\System\\tools\\rounting\\Redirect::sendController('','info','Sesión ya expiro, porfavor vuelva a loguearse.');\n\t }\n\t else\n\t {\n\t return $usuario;\n\t }\n\t}", "private function datosuser()\n\t{\n\t\t$datos=TblConfigController::Geter('data_api');\n\t\t$res=(json_decode($datos->value));\n\t\treturn $res;\n\t}", "public function getUsuarioActual()\n {\n return response()->json([\n\t\t\t'status' => 'ok',\n\t\t\t'data'=>$this->guard()->user()\n\t\t]);\n\t}", "protected function getAllDataSesionUser()\n {\n \t$session = new Container('User');\n \t \n \t$data = array(\n \t\t\t\"userId\" => $session->offsetGet('userId'),\n \t\t\t\"id_company\" => $session->offsetGet('id_company'),\n \t\t\t\"user_email\" => $session->offsetGet('email'),\n \t\t\t\"roleId\" => $session->offsetGet('roleId'),\n \t\t\t\"rol_name\" => $session->offsetGet('roleName'),\n \t\t\t\"user_name\" => $session->offsetGet('name'),\n \t\t\t\"surname\" => $session->offsetGet('surname'),\n \t\t\t\"lastname\" => $session->offsetGet('lastname'),\n \t\t\t\"brand\" => $session->offsetGet('brand'),\n \t\t\t\"logo\" => $session->offsetGet('logo'),\n \t\t\t\"photofile\" => $session->offsetGet('photofile'),\n \t\t\t\"name_job\" => $session->offsetGet('name_job'),\n \t\t\t\"sexo\" => $session->offsetGet('sexo'),\n \t\t\t\"trim\" => $session->offsetGet('trim')\n \t);\n \t\n \treturn $data;\n }", "public function fakeusrEmpresa($usrEmpresaFields = [])\n {\n return new usrEmpresa($this->fakeusrEmpresaData($usrEmpresaFields));\n }", "public function data_user(){\n\t\t$data = json_decode(json_encode($_SESSION['USER']),true);\n\n\t\t$qr = \"SELECT startdate, from_unixtime(startdate) as fecha FROM mdl_course \n\t\tWHERE id = '\".ID_CURSO.\"' LIMIT 1\";\n\n\t\t$result = $this->_db->query($qr);\n\t\t$login = $result->fetch_all(MYSQLI_ASSOC);\n\t\t$startdate = 0;\n\t\tif(count($login) > 0){\n\t\t\t$fecha = $login['0']['fecha'];\n\t\t\t$startdate = $login['0']['startdate'];\n\t\t}\n\n\t\t$usuario = array(\n\t\t\t\"id\" => $data['id'],\n\t\t\t\"nombre\" => $data['firstname'],\n\t\t\t\"apellido\" => $data['lastname'],\n\t\t\t\"codigo_estudiante\" => $data['idnumber'],\n\t\t\t\"fecha\" => $fecha,\n\t\t\t\"startdate\" => $startdate,\n\t\t);\n\n\n\t\treturn $usuario;\n\t}", "public function get_all_empresa()\n {\n $users = User::whereIn('rol_id', [2, 4])->orderBy('id', 'desc')->orderBy('name', 'asc')->get();\n\n $users->transform(function($user) {\n $user->rol = $user->rol->nombre;\n $user->estado_usuario = $user->estado_usuario->nombre;\n\n return $user;\n });\n\n return response()->json([\n 'users' => $users\n ], 200);\n }", "function obtenerDatoUsuario($usuario){\n $db = obtenerBaseDeDatos();\n $sentencia = $db->prepare(\"SELECT * FROM usuarios WHERE id = ?\");\n $sentencia->execute([$usuario]);\n return $sentencia->fetchObject();\n }", "public function payloadUser()\n {\n $result = mysqli_fetch_assoc($this->search_user_byEmail());\n unset($result[\"mdp\"]);\n return $result;\n }", "function rellenaDatos(){\n $stmt = $this->db->prepare(\"SELECT *\n\t\t\t\t\tFROM usuario\n\t\t\t\t\tWHERE login = ?\");\n\n $stmt->execute(array($this->login));\n $user = $stmt->fetch(PDO::FETCH_ASSOC);\n if($user != null){\n $usuario = new USUARIO_Model(\n $user['usuario_id'],$user['login'],$user['nombre']\n ,$user['apellidos'],$user['password'],$user['fecha_nacimiento'],$user['email_usuario']\n ,$user['telef_usuario'],$user['dni'],$user['rol'],$user['afiliacion'],$user['nombre_puesto']\n ,$user['nivel_jerarquia'],$user['depart_usuario'],$user['grupo_usuario'],$user['centro_usuario']\n );\n\n return $usuario;\n\n\n }else{\n return 'Error inesperado al intentar cumplir su solicitud de consulta';\n }\n\n }", "private function asignarDatosNuevoUsuario() {\n $this->_user = new Usuario;\n $this->_user->numeroDocumento = $this->username;\n $this->_user->alias = $this->username;\n $this->_user->estado = Usuario::ESTADO_ACTIVO;\n //$this->_user->codigoPerfil = \\Yii::$app->params['PerfilesUsuario']['intranet']['codigo'];\n $this->_user->nombrePortal = \\Yii::$app->getModule(\"intranet\")->id;\n }", "public function allUsersInfo(){\n $q = \"SELECT * FROM tab_uzivatele, tab_prava\n WHERE tab_prava.idprava = tab_uzivatele.idprava;\";\n $res = $this->executeQuery($q);\n $res = $this->resultObjectToArray($res);\n //print_r($res);\n if($res != null && count($res)>0){\n // vracim vse\n return $res;\n } else {\n return null;\n }\n }", "public function getUsuario(){\n\t\treturn $this->usuario;\n\t}", "function getDescUsuario() {\n return $this->descUsuario;\n }", "function listarEmpresas(){\r\n log_message('DEBUG','#TRAZA|EMPRESAS|listarEmpresas');\r\n $aux = $this->rest->callAPI(\"GET\",REST_CORE.\"/empresas\");\r\n $aux =json_decode($aux[\"data\"]);\r\n return $aux->empresas->empresa;\r\n }", "public function cargarDatosUsuario()\n\t{\n\t return $this->User_model->autenticarse();\n\t \n\t}", "public function getuser_post(){\n\t\t$datos=$this->post();\n\t\t$_data[\"ok\"]=$this->Model_Cliente->getUser($datos[\"id\"]);\n\t\t\n\t\t$this->response($_data);\n\t}", "public function user() {\n \t$userInfo = $this->bitcasaClientApi->getBitcasaAccountDataApi()->requestUserInfo();\n \treturn $userInfo;\n }", "public function devuelveUser()\n {\n $this->db->query(\"SELECT * FROM dato_persona as dato\n INNER JOIN tipo_documento as tipo ON dato.fk_tipo_documento= tipo.id_tipo_documento\n INNER JOIN rol ON dato.documento = rol.fk_documento\n INNER JOIN tipo_rol ON tipo_rol.id_tipo_rol = rol.fk_tipo_rol\n INNER JOIN ficha ON ficha.codigo_ficha = dato.fk_ficha \n INNER JOIN estado as esta ON esta.id_estado = dato.fk_estado\n \");\n $this->db->execute();\n return $this->db->objetos();\n }", "public function getUsuario_nombre(){\n return $this->usuario_nombre;\n }", "protected function getUser()\n \n {\n if ($this->_user === null) {\n \n //si existe obtiene un array con todos los datos\n $this->_user = Administrador::findByrut($this->rut);\n \n }\n \n \n return $this->_user;\n \n }", "public function getUsuario() {\n return $this->usuario;\n }", "public function obtenerDatosUsuario(){\n\n $idUsuario = $_GET['id'];\n\n $datosDeUsuario = array();\n \n //Se manda llamar el metodo del modelo pasandole como parametro la id del usuario a traer los datos\n $datosDeUsuario = Datos::obtenerDatosDeUsuarioId($idUsuario);\n\n return $datosDeUsuario;\n }", "static public function TraerLista_Empleadousuario()\n\t\t{\n\t\t\treturn self::from('empleado_usuarios AS eu')\n\t\t\t->select('p.nombre', 'p.apellidoPaterno','p.apellidoMaterno','c.nombre AS cargo','eu.ci','eu.fecha_registro','eu.hora_registro','eu.estado','eu.hash')\n\t\t\t->join('personas AS p', 'p.idPersona', '=', 'eu.idEmpleado')\n\t\t\t->join('cargos AS c', 'c.idCargo', '=', 'eu.idCargoFK')\n\t\t\t->get();\t\t\t\n\t\t}", "public function getUserData()\n {\n }" ]
[ "0.677099", "0.6761376", "0.669911", "0.66681105", "0.66681105", "0.66274047", "0.6461852", "0.6427295", "0.64236975", "0.6380242", "0.6285804", "0.62808704", "0.62645406", "0.6248716", "0.6206233", "0.61890626", "0.6172253", "0.612096", "0.6119066", "0.6099608", "0.60977596", "0.6052881", "0.60528743", "0.6048914", "0.6044097", "0.6034299", "0.6026693", "0.6026371", "0.6023195", "0.60117733" ]
0.69057965
0
/ $r = $this>mdl_product>queryData([ 'return_type' => 'ARR1', 'where' => [ 'method' => 'AND', 'set' => [[ 'item' => 'id', 'value' => 769 ]] ] ]); $r = $this>mdl_product>getRozCena( 769 ); echo ""; print_r( $r ); echo "";
public function test(){ /* $r = $this->mdl_product->queryData(); foreach( $r as $v ){ $this->mdl_product->getRozCena( $v['id'] ); } */ // /* echo "<pre>"; print_r( count( $r ) ); echo "</pre>"; foreach( $r as $v ){ $this->mdl_db->_update_db( "products", "id", $v['id'], [ 'price_zac' => ( $v['price_zac'] * 100 ), 'price_roz' => ( $v['price_roz'] * 100 ) ]); } */ }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function Find(){\n$productos = $this->db->query(\"SELECT * FROM productos WHERE id={$this->getId()}\"); \nreturn $productos->fetch_object(); \n}", "function product_getPrice($item_number, $key) {\n $result = performApiRequest($key, 0, 'GET', 'preis;WHERE `artikelnummer`=' . $item_number);\n if (sizeof($result) > 0) {\n return $result[0]->preis;\n } else {\n return null;\n }\n}", "public function listadoProductos(){\n\n$sql = \"select idProducto,desc_Prod,presentacion,IF(tipoProd = '1', 'No Perecible','Perecible') as tipoProd,stock,m.nomMarca,c.nomCategoria,estadoProd,precio from producto as p inner join Categoria as c ON c.idCategoria=p.idCategoria inner join Marca as m ON m.idMarca=p.idMarca where estadoProd=1 order by desc_Prod asc\";\n\t\n\n\n\t\treturn Yii::app()->db->createCommand($sql)->queryAll();\n\t}", "public function getSiege_sociale(){\n $param[0]['col']='online';\n $param[0]['val']=1;\n\n $param[1]['col']='siege_sociale';\n $param[1]['val']=1;\n\n $data_agence=$this->getAllByParam('agence',$param);\n return (!empty($data_agence)) ? $data_agence[0] : null ;\n \n \n}", "function product_getStock($item_number, $key) {\n $result = performApiRequest($key, 0, 'GET', 'bestand;WHERE `artikelnummer`=' . $item_number);\n if (sizeof($result) > 0) {\n return $result[0]->bestand == '1' ? 'true' : 'false';\n } else {\n return null;\n }\n}", "function getProduct();", "public function getBeneficio(\r\n $col=\"\", $ord=\"\", $loultimo=\"\", $beneficios=\"\", $categoria=\"\", $query=\"\", $awIds=\"\", $idSorteos=array()\r\n )\r\n {\r\n switch ($col) {\r\n case \"nombre\":\r\n $col = \"titulo\";\r\n break;\r\n case \"oferta\":\r\n $col = \"descripcioncorta\";\r\n break;\r\n case \"tipo\":\r\n $col = \"abreviado\";\r\n break;\r\n case \"categoria\":\r\n $col = \"c.nombre\";\r\n break;\r\n case \"fecha\":\r\n $col = \"bv.fecha_fin_vigencia\";\r\n break;\r\n default:\r\n $col = \"fecha_inicio_vigencia\";\r\n break;\r\n }\r\n //$col = $col==\"\"?\"fecha_inicio_vigencia\":$col;\r\n $ord = ($ord==\"\" || $ord==\"ASC\")?\"ASC\":\"DESC\";\r\n //$ord = ($ord==\"\" || $ord==\"a-z\")?\"ASC\":\"DESC\";\r\n\r\n $adapter=$this->getAdapter();\r\n $sql = $adapter->select()\r\n ->from(\r\n array(\"b\" => $this->_name),\r\n array(\r\n \"id\" => \"b.id\",\r\n \"establecimiento_id\" => \"b.establecimiento_id\",\r\n \"tipo_beneficio_id\" => \"b.tipo_beneficio_id\",\r\n \"titulo\" => \"b.titulo\",\r\n \"descripcioncorta\" => \"b.descripcion_corta\",\r\n \"valor\" => \"b.valor\",\r\n \"cuando\" => \"b.cuando\",\r\n \"direccion\" => \"b.direccion\",\r\n \"email_info\" => \"b.email_info\",\r\n \"telefono_info\" => \"b.telefono_info\",\r\n \"path_logo\" => \"b.path_logo\",\r\n \"maximo_por_subscriptor\" => \"b.maximo_por_subscriptor\",\r\n \"sin_stock\" => \"b.sin_stock\",\r\n \"es_destacado\" => \"b.es_destacado\",\r\n \"es_destacado_principal\" => \"b.es_destacado_principal\",\r\n \"activo\" => \"b.activo\",\r\n \"veces_visto\" => \"b.veces_visto\",\r\n \"fecha_registro\" => \"b.fecha_registro\",\r\n \"chapita\" => \"b.chapita\",\r\n \"chapita_color\" => \"b.chapita_color\",\r\n \"slug\" => \"b.slug\",\r\n \"fecha_inicio_publicacion\" => \"bv.fecha_inicio_publicacion\",\r\n \"fecha_fin_publicacion\" => \"bv.fecha_fin_publicacion\",\r\n \"fecha_fin_vigencia\" => \"bv.fecha_fin_vigencia\",\r\n \"stock_actual\" => \"bv.stock_actual\",\r\n \"stock\" => \"bv.stock\",\r\n \"nombre\" => \"tb.nombre\",\r\n \"cat_nombre\" => \"c.nombre\",\r\n \"idcategoria\" => \"c.id\",\r\n \"est_nombre\" => \"e.nombre\",\r\n \"abreviado\" => \"tb.abreviado\",\r\n \"ncuponesconsumidos\" => \"b.ncuponesconsumidos\",\r\n \"publicado\" => \"b.publicado\",\r\n \"generar_cupon\" => \"b.generar_cupon\"\r\n )\r\n )\r\n ->join(\r\n array(\"bv\" => \"beneficio_version\"),\r\n \"b.id = bv.beneficio_id\",\r\n array()\r\n )\r\n ->join(\r\n array(\"tb\" => \"tipo_beneficio\"),\r\n \"tb.id = b.tipo_beneficio_id\",\r\n array()\r\n )\r\n ->join(\r\n array(\"cb\" => \"categoria_beneficio\"),\r\n \"cb.beneficio_id = b.id\",\r\n array()\r\n )\r\n ->join(\r\n array(\"c\" => \"categoria\"),\r\n \"c.id = cb.categoria_id\",\r\n array()\r\n )\r\n ->join(\r\n array(\"e\" => \"establecimiento\"),\r\n \"e.id = b.establecimiento_id\",\r\n array()\r\n )\r\n ->where(\"b.activo = 1\")\r\n ->where(\"b.publicado = 1\")\r\n ->where(\"bv.activo = 1\")\r\n ->where(\r\n \"CURRENT_DATE()\r\n BETWEEN bv.fecha_inicio_publicacion AND bv.fecha_fin_publicacion\"\r\n )\r\n ->where('b.elog = ?', 0)\r\n ->group(\"b.id\")\r\n ->order($col.\" \".$ord);\r\n\r\n //FILTRO PARA EL QUERY\r\n if (Suscriptor_BeneficioController::$usarLucene) { // usando Lucene\r\n if ($awIds !== \"\") {\r\n if (is_array($awIds) && count($awIds) ) {\r\n $sql = $sql->where(\r\n $this->getAdapter()->quoteInto(\"b.id IN (?)\", $awIds)\r\n );\r\n } else {\r\n $sql = $sql->where(\"b.id IN (0)\");\r\n }\r\n }\r\n } else { // sin usar Lucene\r\n if ($query!=\"\") {\r\n $queryLow= strtolower($query);\r\n $sql=$sql->where(\r\n $this->getAdapter()->quoteInto(\r\n \"LOWER(CONCAT(b.titulo,' ',b.descripcion)) like ?\", \"%\".$queryLow.\"%\"\r\n )\r\n );\r\n }\r\n }\r\n\r\n //lo mas usado\r\n switch ($loultimo) {\r\n case 0:\r\n $sql = $sql->order(\"b.fecha_registro DESC\");\r\n break;\r\n case 1:\r\n $sql = $sql->order(\"b.veces_visto DESC\");\r\n break;\r\n case 2:\r\n $sql = $sql->order(\"b.ncuponesconsumidos DESC\");\r\n break;\r\n }\r\n \r\n //categoria\r\n if ($categoria != \"\") {\r\n $aCategoria = explode(\"-\", $categoria);\r\n $c = \"\";\r\n for ($i = 0; $i < count($aCategoria); $i++) {\r\n $c.=\"cb.categoria_id=\" . $aCategoria[$i].\" OR \";\r\n }\r\n $c = substr($c, 0, strlen($c) - 3);\r\n $sql = $sql->where($c);\r\n }\r\n \r\n //beneficios\r\n if ($beneficios!=\"\") {\r\n $sql = $sql->where(\"b.tipo_beneficio_id = ?\", $beneficios);\r\n } else {\r\n if ($categoria != \"\" && !empty($idSorteos)) {\r\n $aCategoria = explode(\"-\", $categoria);\r\n $valbolSD = array_search($idSorteos['idDisponible'], $aCategoria)!==false;\r\n $valbolSR = array_search($idSorteos['idResultado'], $aCategoria)!==false;\r\n if ((($valbolSD || $valbolSR) && count($aCategoria)==1) || \r\n ($valbolSD && $valbolSR && count($aCategoria)==2)) {\r\n \r\n } else {\r\n// $sql = $sql->where(\"lower(tb.nombre) <> 'sorteos'\", $beneficios);\r\n }\r\n } else {\r\n// $sql = $sql->where(\"lower(tb.nombre) <> 'sorteos'\", $beneficios);\r\n }\r\n }\r\n\r\n //echo $sql->assemble();exit;\r\n return $sql;\r\n\r\n /*\r\n //BUSCADOR SOLAMENTE CON LUCENE\r\n $col = $col == '' ? '' : $col.\" string \".$ord;\r\n $zl = new ZendLucene();\r\n $order = $col;\r\n $orderTwo = \"\";\r\n $q = \"activo:1 AND publicado:1\";\r\n\r\n //lomasusado\r\n if ($loultimo==0) {\r\n $orderTwo = \"fecharegistro string DESC\";\r\n }\r\n if ($loultimo==1) {\r\n $orderTwo = \"vecesvisto string DESC\";\r\n }\r\n if ($loultimo==2) {\r\n $orderTwo = \"ncuponesconsumidos string DESC\";\r\n }\r\n \r\n //beneficio\r\n if ($beneficios!=\"\") {\r\n $q.=' AND idtipobeneficio:'.$beneficios;\r\n }\r\n //categoria\r\n if ($categoria != \"\") {\r\n $aCategoria = explode(\"-\", $categoria);\r\n $c = \"\";\r\n for ($i = 0; $i < count($aCategoria); $i++) {\r\n $c.=\" idcategoria:\" . $aCategoria[$i] . \" OR\";\r\n }\r\n $c = substr($c, 0, strlen($c) - 3);\r\n $q.=\" AND ($c)\";\r\n }\r\n //query\r\n if ($query!=\"\") {\r\n $q .= ' AND '.$query;\r\n }\r\n \r\n $resultado = $zl->queryBeneficios(\r\n $q,\r\n array($order, $orderTwo)\r\n );\r\n return ($resultado==\"\")?array():$resultado;*/\r\n }", "function retour_montant_type_chambre_fiche($CODE_TYPE_CHAMBRE){\nreturn ResultatRequette(\"select MONTANT_TARIF_TYPECHAMBRE as info from viser where CODE_TYPE_CHAMBRE='$CODE_TYPE_CHAMBRE'\");\n}", "function readQuery() {\n\t\t$this->ProductID = $this->queryHelper(\"ProductID\", 0);\n\t\t$this->ProductNaam = $this->queryHelper(\"ProductNaam\", \"\");\n\t\t$this->ProductEenheid = $this->queryHelper(\"ProductEenheid\", \"\");\n\t}", "function obtenerSeries($idUnidad)\n{\n $sql = new Query(\"SG\");\n $sql->sql = \"SELECT id_serie_aer as id \n FROM serie_aer \n WHERE id_unidad = \".$idUnidad.\" and status = 1\n \";\n \n return $sql->select('obj');\n}", "function getCartItemByProduct($id_produs, $id_client)\r\n {\r\n $sql = $this->db->prepare(\"SELECT * FROM cos WHERE id_produs = ? AND id_client = ? AND starecomanda='necomandata' \");\r\n $sql->bind_param('ii',$id_produs,$id_client);\r\n $sql->execute();\r\n $result = $sql->get_result();\r\n $result=$result->fetch_assoc();\r\n\r\n if (!empty($result)) \r\n return $result;\r\n else\r\n \treturn false;\r\n }", "function get_list_by_distributor_id($distributor_id){\r\n $query = db_select('ebay_books_discount','ebd');\r\n $query->fields('ebd',array('publisher_name','category_id','discount'));\r\n $query->condition('distributor_id',$distributor_id, '='); \r\n $query = $query->extend('PagerDefault')->limit(10); \r\n $isbn_redsn_dist = $query->execute()->fetchAll();\r\n return $isbn_redsn_dist; \r\n}", "function get_pengaturan($id, $get = null)\n{\n $result = get_row_data('config_model', 'retrieve', array($id), $get);\n return $result;\n}", "public function obtenerProductoRequerido(){\t\t\t\n $cadena_sql=\"SELECT * FROM ec_mipro_ece.vw_productos_aleatorios limit 1\";\n return self::findBySql($cadena_sql)->one(); \t\t\t \n }", "public function consulta() {\n return $this->db\n ->select(format_select(array(\n 'sistema_material.idSistema_Material' => 'id_sistema',\n 'sistema_material.nombre' => 's_nombre',\n 'sistema_material.status' => 'status',\n 'proveedor.idproveedor' => 'id_proveedor',\n 'proveedor.nombre' => 'p_nombre',\n 'categorias_sis_materiales_vac.nombre' => 'c_nombre'\n )))\n // ->join('tipo_cirugia','tipo_cirugia.idTipo_Cirugia = sistema_material.idTipo_Cirugia A')\n ->join('proveedor','proveedor.idproveedor = sistema_material.idProveedor AND sistema_material.idModulo = \"'.$this->config->item('modulo')['materiales_consumo'].'\"')\n ->join('categorias_sis_materiales_vac','categorias_sis_materiales_vac.id = sistema_material.categoria')\n ->order_by('sistema_material.status','DESC')\n ->get('sistema_material')\n ->result_array();\n }", "public function get_prod_byId($id){\n \n return $this->db->get_where(\"produit\",array(\"id_prod\" => $id));\n }", "function retour_libebe_type_chambre_fiche($CODE_TYPE_CHAMBRE){\nreturn ResultatRequette(\"select LIBELLE_TYPE_CHAMBRE as info from type_chambre where CODE_TYPE_CHAMBRE='$CODE_TYPE_CHAMBRE'\");\n}", "function getdata(){\n\t\t$grid = $this->jqdatagrid;\n\n\t\t// CREA EL WHERE PARA LA BUSQUEDA EN EL ENCABEZADO\n\t\t$mWHERE = $grid->geneTopWhere('sprm');\n\n\t\t$response = $grid->getData('sprm', array(array()), array(), false, $mWHERE, 'id', 'desc' );\n\t\t$rs = $grid->jsonresult( $response);\n\t\techo $rs;\n\t}", "function retour_type_chambre_fiche($CODE_CHAMBRE){\nreturn ResultatRequette(\"select CODE_TYPE_CHAMBRE as info from chambre where CODE_CHAMBRE='$CODE_CHAMBRE'\");\n}", "function product_getType($item_number, $key) {\n $result = performApiRequest($key, 0, 'GET', 'art;WHERE `artikelnummer`=' . $item_number);\n if (sizeof($result) > 0) {\n return $result[0]->art;\n } else {\n return null;\n }\n}", "public function index()\r\n\t{\r\n\t $condition=array();\r\n\t $i=0;\r\n\t \r\n\t if(($invoice=Input::get(\"invoice\",false))!==false)\r\n\t {\r\n\t if(!empty($invoice) && $invoice!=\"undifined\")\r\n\t {\r\n\t $condition[$i]['field'] =\"customs_code\";\r\n\t $condition[$i]['opera']='like';\r\n\t $condition[$i]['value']='%'.$invoice.'%';\r\n\t $i++;\r\n\t }\r\n\t }\r\n\t \r\n\t if(($sku=Input::get(\"sku\",false))!==false)\r\n\t {\r\n\t if(!empty($sku) && is_numeric($sku))\r\n\t {\r\n\t $condition[$i]['field'] ='item_id';\r\n\t $condition[$i]['opera']='=';\r\n\t $condition[$i]['value']=$sku;\r\n\t $i++;\r\n\t \r\n\t }\r\n\t }\r\n\t \r\n\t if(($skuLike=Input::get(\"skuLike\",false))!==false)\r\n\t {\r\n\t if(!empty($skuLike) && $skuLike!=\"undifined\")\r\n\t {\r\n\t $ids=$this->service->findItemIdBySKULike($skuLike);\r\n\t \r\n\t if(!empty($ids) && $ids!==array() && count($ids)!==0)\r\n\t {\r\n\t \r\n\t $condition[$i]['field'] =\"item_id\";\r\n\t $condition[$i]['opera']='in';\r\n\t $condition[$i]['value']=array_values($ids);\r\n\t $i++;\r\n\t }\r\n\t }\r\n\t }\r\n\t \r\n\t \r\n\t \r\n\t if(($towarehouse=Input::get(\"country\",false))!==false)\r\n\t {\r\n\t if(!empty($towarehouse) && $skuLike!=\"undifined\")\r\n\t {\r\n\t $condition[$i]['field'] =\"country\";\r\n\t $condition[$i]['opera']='=';\r\n\t $condition[$i]['value']=$towarehouse;\r\n\t $i++;\r\n\t }\r\n\t }\r\n\t \r\n\t \r\n\t $list=array();\r\n\t \r\n\t $list=$this->service->findCustomsByCondition($condition)->get();\r\n\t foreach($list as $stock)\r\n\t {\r\n\t $stock->warehouse;$stock->user;$stock->item;\r\n\t }\r\n\t return $list;\r\n\t}", "public function indexAction($user, $id = 0, $order)\n {\n// $a = $a->execute();\n\n\n\n// foreach ($a as $item) {\n// var_dump($item->c->id);\n// //var_dump($item->toArray());\n//// echo $item->save(['base_price'=>0]);\n// }\n// var_dump($a);\n// var_dump($a->toArray());\n// var_dump($this->db->decrementAboveZero('we_order','allprice',1,'id=9423'));\n //$a=$this->db->fetchAll('select * from we_order where id <0 limit 5',\\Phalcon\\Db::FETCH_OBJ,['id'=>5]);\n// $a=$this->db->getInternalHandler()->prepare('select * from we_order where id < 0');\n// $a=$a->execute();\n /* var_dump(gettype($a));\n var_dump($a);\n $a=$this->modelsManager->createBuilder()\n ->from('Common\\Models\\WeComgoods')\n ->columns([\n 'id'=>'Common\\Models\\WeComgoods.id'\n ])\n ->leftJoin('Common\\Models\\WeGoods','Common\\Models\\WeGoods.id=Common\\Models\\WeComgoods.goodsid')\n ->limit(5)->getQuery()->execute();\n foreach ($a as $v){\n }\n\n $b=$a->filter(function ($aa){\n $aa->id.=\"===\";\n return $aa;\n });\n\n foreach ($b as $v){\n\n }*/\n\n /*$result = $user->getTopUser();\n $this->addData('rs', $result);*/\n return $this->render();\n }", "function product_getDescription($item_number, $key) {\n $result = performApiRequest($key, 0, 'GET', 'bezeichnung;WHERE `artikelnummer`=' . $item_number);\n if (sizeof($result) > 0) {\n return $result[0]->bezeichnung;\n } else {\n return null;\n }\n}", "function recupere_dddtest($g_code){\nreturn ResultatRequette(\"SELECT sum(QUANTITE) as info from consommation where CODE_SERVICE='$g_code'\");\n}", "public function getQueryProvider(){\n\t\t$q1 = new Query(1, \n\t\t\t\t\t'PREFIX views http://openvisko.org/rdf/ontology/visko-view.owl# \nPREFIX formats http://openvisko.org/rdf/pml2/formats/ \nPREFIX types http://rio.cs.utep.edu/ciserver/ciprojects/CrustalModeling/CrustalModeling.owl# \nPREFIX visko http://visko.cybershare.utep.edu:5080/visko-web/registry/module_webbrowser.owl# \nPREFIX params http://visko.cybershare.utep.edu:5080/visko-web/registry/grdcontour.owl# \nVISUALIZE http://visko.cybershare.utep.edu:5080/visko-web/test-data/gravity/gravityDataset.txt \nAS views:2D_ContourMap \nIN visko:web-browser \nWHERE\n\tFORMAT = http://openvisko.org/rdf/pml2/formats/SPACESEPARATEDVALUES.owl#SPACESEPARATEDVALUES\n\tAND TYPE = http://rio.cs.utep.edu/ciserver/ciprojects/CrustalModeling/CrustalModeling.owl#d19\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#G = lightgray\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/nearneighbor.owl#R = -109/-107/33/34\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#E = 200/30\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/nearneighbor.owl#S = 0.2\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#J = x6c\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#plotVariable = z\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#colorTable = WhiteBlueGreenYellowRed\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/nearneighbor.owl#I = 0.02\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#S = o0.1\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#R = -109/-107/33/34/-300/-100\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#lbOrientation = vertical\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#W = thinnest\n\tAND params:Wc = thinnest,black\n\tAND params:Wa = thinnest,black\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#cnLevelSpacingF = 10\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/surface.owl#I = 0.02\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/surface.owl#C = 0.1\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#font = helvetica\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#cnLinesOn = False\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/surface.owl#R = -109/-107/33/34\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#font = helvetica\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/surface.owl#T = 0.25\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#lonVariable = x\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#plotVariable = z\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#cnFillOn = True\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#B = 1/1/50\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#indexOfZ = -1\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#indexOfY = 1\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#indexOfY = 0\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#indexOfX = 1\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#indexOfX = 0\n\tAND params:S = 5\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/XYZDataFieldFilter.owl#indexOfY = 1\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#indexOfX = 1\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/XYZDataFieldFilter.owl#indexOfZ = 2\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#indexOfY = 0\n\tAND params:A = 20\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#lbOrientation = vertical\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#indexOfZ = -1\n\tAND params:B = 0.5\n\tAND params:C = 10\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/grd2xyz.owl#N = 0\n\tAND params:J = x4c\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#B = 1\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/grdimage.owl#R = -109/-107/33/34\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#latVariable = y\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#colorTable = WhiteBlueGreenYellowRed\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/grdimage.owl#T = -200/200/10\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/grd2xyz_esri.owl#N = 0\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#J = x4c\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#G = blue\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/XYZDataFieldFilter.owl#indexOfX = 0\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#lonVariable = x\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#JZ = 5c\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#R = -109/-107/33/34\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/grdimage.owl#B = 1\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/grdimage.owl#C = hot\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#latVariable = y\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/grdimage.owl#J = x4c\n\tAND http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#S = c0.04c',\n\t\t\t\t\tnull,\n\t\t\t\t\t'http://www.w3.org/2002/07/owl#Thing',\n\t\t\t\t\t'http://openvisko.org/rdf/ontology/visko-view.owl#2D_ContourMap',\n\t\t\t\t\t'http://visko.cybershare.utep.edu:5080/visko-web/registry/module_webbrowser.owl#web-browser',\n\t\t\t\t\t'http://visko.cybershare.utep.edu:5080/visko-web/test-data/gravity/gravityDataset.txt',\n\t\t\t\t\t[],\n\t\t\t\t\tnew DateTime('2014-04-17 17:20:12')\n\t\t\t\t\t,1\n\t\t\t\t);\n\t\t\n\t\t$q2 = new Query($q1->getID(), $q1->getQueryText(), $q1->getTargetFormatURI(), $q1->getTargetTypeURI(),\n\t\t\t\t$q1->getViewURI(), $q1->getViewerSetURI(), $q1->getArtifactURL(),\n\t\tarray(\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#G\"=>\"lightgray\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/nearneighbor.owl#R\"=>\"-109/-107/33/34\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#E\"=>\"200/30\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/nearneighbor.owl#S\"=>\"0.2\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#J\"=>\"x6c\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#plotVariable\"=>\"z\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#colorTable\"=>\"WhiteBlueGreenYellowRed\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/nearneighbor.owl#I\"=>\"0.02\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#S\"=>\"o0.1\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#R\"=>\"-109/-107/33/34/-300/-100\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#lbOrientation\"=>\"vertical\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#W\"=>\"thinnest\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdcontour.owl#Wc\"=>\"thinnest,black\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdcontour.owl#Wa\"=>\"thinnest,black\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#cnLevelSpacingF\"=>\"10\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/surface.owl#I\"=>\"0.02\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/surface.owl#C\"=>\"0.1\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#font\"=>\"helvetica\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#cnLinesOn\"=>\"False\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/surface.owl#R\"=>\"-109/-107/33/34\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#font\"=>\"helvetica\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/surface.owl#T\"=>\"0.25\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#lonVariable\"=>\"x\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#plotVariable\"=>\"z\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#cnFillOn\"=>\"True\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#B\"=>\"1/1/50\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#indexOfZ\"=>\"-1\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#indexOfY\"=>\"1\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#indexOfY\"=>\"0\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#indexOfX\"=>\"1\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#indexOfX\"=>\"0\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdcontour.owl#S\"=>\"5\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/XYZDataFieldFilter.owl#indexOfY\"=>\"1\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#indexOfX\"=>\"1\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/XYZDataFieldFilter.owl#indexOfZ\"=>\"2\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#indexOfY\"=>\"0\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdcontour.owl#A\"=>\"20\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#lbOrientation\"=>\"vertical\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#indexOfZ\"=>\"-1\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdcontour.owl#B\"=>\"0.5\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdcontour.owl#C\"=>\"10\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grd2xyz.owl#N\"=>\"0\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdcontour.owl#J\"=>\"x4c\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#B\"=>\"1\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdimage.owl#R\"=>\"-109/-107/33/34\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map_raster.owl#latVariable\"=>\"y\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#colorTable\"=>\"WhiteBlueGreenYellowRed\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdimage.owl#T\"=>\"-200/200/10\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grd2xyz_esri.owl#N\"=>\"0\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#J\"=>\"x4c\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#G\"=>\"blue\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/XYZDataFieldFilter.owl#indexOfX\"=>\"0\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#lonVariable\"=>\"x\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxyz.owl#JZ\"=>\"5c\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#R\"=>\"-109/-107/33/34\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdimage.owl#B\"=>\"1\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdimage.owl#C\"=>\"hot\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/gsn_csm_contour_map.owl#latVariable\"=>\"y\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/grdimage.owl#J\"=>\"x4c\",\n\t\t\t\t\"http://visko.cybershare.utep.edu:5080/visko-web/registry/psxy.owl#S\"=>\"c0.04c\",\n\t\t\t\t\"snakes\"=>\"are the best\"\n\t\t), new DateTime('2014-04-28 18:41:14'), 8);\n\t\t\n\t\treturn array(\n\t\t\t\tarray($q1),\n\t\t\t\tarray($q2)\n\t\t);\n\t\t\n\t}", "public function getProduct();", "function searchProduct()\n{\n echo '===================================== search Product ===================================' .PHP_EOL;\n global $ProductService;\n\n $param =\n [## ============================ *Required Parameters =============================\n # یکی از این چهار فیلد اجباری است\n 'offset' => 'Put offset',\n# 'firstId' => 'Put first id',\n# 'lastId' => 'Put last id',\n# 'id' => [Put product entity ids],\n ## ============================= Optional Parameters ==============================\n# \"token\" => \"{Put AccessToken | ApiToken}\", # for this service you can use AccessToken \n# 'query' => 'Put search query',\n# 'size' => 'Put output size',\n# 'businessId' => 'Put business id',\n# 'uniqueId' => 'Put product unique id',\n# 'categoryCode' => [{Put product category codes}],\n# 'guildCode' => [{Put guild codes}],\n# 'currencyCode' => 'Put currency code',\n# 'attributeTemplateCode' => 'Put attribute template code',\n# 'attributes' => [\n# [\n# 'attributeCode' => 'Put attribute code',\n# 'attributeValue' => 'Put attribute value',\n# ],\n# ],\n# 'orderBySale' => 'put asc/desc',\n# 'orderByLike' => 'put asc/desc',\n# 'orderByPrice' => 'put asc/desc',\n# 'tags' => ['Put tags1', 'Put tags2', ..],\n# 'tagTrees' => ['Put tags tree1', 'Put tags tree2', ..],\n# 'scVoucherHash' => ['Put Service Call Voucher Hashes'],\n# 'scApiKey' => 'Put service call Api Key',\n ];\n try {\n $result = $ProductService->searchProduct($param);\n print_r($result);\n }\n catch (ValidationException $e) {\n print_r($e->getResult());\n print_r($e->getErrorsAsArray());\n } catch (PodException $e) {\n print_r($e->getResult());\n }\n}", "function getOrderData($idOrden){\n $db = Xcrud_db::get_instance();\n $db->query(\"SELECT * FROM registroevento WHERE id =\" . $idOrden);\n $resultados = $db->row();\n\n /* echo \"Se asociaran al id-> \" . $resultados['id'];\n echo \"<br>Folio de Evento-> \" . $resultados['folioEP'];\n echo \"<br>Articulo-> \" . $resultados['nombreItem'];\n echo \"<br>Cantidad-> \" . $resultados['cantidadItem']; */\n\n return $resultados; \n}", "function product_getName($item_number, $key) {\n $result = performApiRequest($key, 0, 'GET', 'name;WHERE `artikelnummer`=' . $item_number);\n if (sizeof($result) > 0) {\n return $result[0]->name;\n } else {\n return null;\n }\n}", "public function getProduct($productid) {\n if($result = $this->connect()->query(\"select * from products where productid = '\" . $productid . \"';\")) {\n return $result;\n} else {\n throw new Exception();\n}\n}" ]
[ "0.62085676", "0.614606", "0.60915244", "0.607798", "0.60645574", "0.6035991", "0.59328204", "0.59160304", "0.5912673", "0.59064555", "0.5893923", "0.58912164", "0.5886729", "0.5884775", "0.58394754", "0.5823911", "0.582063", "0.5810683", "0.5810525", "0.5803409", "0.579888", "0.5787738", "0.5777351", "0.57766086", "0.5756551", "0.5755192", "0.57415897", "0.5740008", "0.5739653", "0.5731366" ]
0.6515646
0
Check if profile is complete
private function complete_profile(){ $this->load->model('resume_model'); $user = $this->session->userdata('user'); $profile_details = $this->resume_model->get_resume_details_by_user_id($user->id); $profile_education = $this->resume_model->get_resume_edu_by_user_id($user->id); $profile_experience = $this->resume_model->get_experience_by_id($user->id); return ($profile_details != null && ($profile_education != null) && ($profile_experience != null)) ? true : false; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function hasProfile()\n {\n return (bool)$this->getProfile();\n }", "public function isComplete();", "function checkProfileCompleted($user)\n{\n if ($user->userDetail->address && $user->userDetail->phone\n && $user->userDetail->country_id && $user->userDetail->province_id\n && $user->userDetail->city_id && $user->userDetail->district_id\n && $user->userDetail->village_id && $user->userDetail->searcher_cv_path) {\n return true;\n }\n\n return false;\n}", "function isComplete()\n\t{\n\t\treturn 0;\n\t}", "public function hasDoneTuto() {\n\t\t$infos = @unserialize(htmlspecialchars_decode($this->get('profile_fields')));\n\t\t\n\t\tif( !array_key_exists('tuto_done', $infos) ) {\n \t\t$infos['tuto_done'] = true;\n \t\t$this->profile_fields = serialize($infos);\n \t\t\n \t\t$this->save();\n\t\t}\n\t}", "public function hasProfile(): bool\n {\n return isset($this->columns['profile_id']);\n }", "private function should_show_incomplete_profile_message() {\n\n\t\t$show_message = false;\n\n\t\tif ( 'no' !== get_user_meta( get_current_user_id(), '_wc_memberships_show_user_incomplete_profile_notice', true ) ) {\n\n\t\t\tforeach ( $this->get_profile_fields_for_user() as $profile_field ) {\n\n\t\t\t\tif ( $profile_field->validate()->get_error_message( 'required_value' ) ) {\n\t\t\t\t\t$show_message = true;\n\t\t\t\t\tbreak;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\t/**\n\t\t * Filter whether we should show a message to encourage a user to fill incomplete profile fields.\n\t\t *\n\t\t * @since 1.19.0\n\t\t *\n\t\t * @param bool $display_message true if the user has required fields that need to be filled\n\t\t */\n\t\treturn (bool) apply_filters( 'wc_memberships_display_incomplete_profile_message', $show_message );\n\t}", "public function verify_profile_statuses() {\n print \"<pre>\\nVERIFYING THAT PROFILE STATUSES IN DATABASE MATCH PAYPAL STATUSES...\";\n $query = $this->db->select('*')\n ->from('billing_profiles')\n ->get();\n $profile = $query->result_array();\n $this->load->model('Billing_model');\n foreach ($profile as $p) {\n $result = $this->Billing_model->Get_recurring_payments_profile_details($p['profile_id']);\n if (!$result['success']) {\n print \"\\nERROR LOOKING UP PROFILE: \" . $p['profile_id'];\n } else {\n if ($result['PayPalResult'][\"STATUS\"] != $p['profile_status']) {\n print \"\\nSTATUS MISMATCH FOR PROFILE ID #\" . $p['profile_id'] . \": PayPal=\" . $result['PayPalResult'][\"STATUS\"] . \", DB=\" . $p['profile_status'];\n }\n }\n }\n print \"\\nDONE!</pre>\";\n }", "public function isComplete() {\n if ( !empty($this->username) && !empty($this->alias)) {\n return true;\n } else {\n return false;\n }\n }", "public function hasFinishedTutorial() : bool {\n return $this->getFetchedData()['Profile']['Settings']['Finished Tutorial'];\n }", "public function isComplete(){\n\t\treturn $this->Status == 'Captured' ||\n\t\t\t\t$this->Status == 'Refunded' ||\n\t\t\t\t$this->Status == 'Void';\n\t}", "function druid_should_user_completed_account($scope = null)\n {\n return !Identity::checkUserComplete($scope);\n }", "public function hasTutoDone() {\n\t $str = htmlspecialchars_decode($this->get('profile_fields'));\n\t\t$infos = @unserialize($str);\n\t\t\n\t\treturn (array_key_exists('tuto_done', $infos) && $infos['tuto_done']) ? true : false;\n\t}", "public function isComplete(): bool\n {\n return (bool) $this->data(\"_arcanist.{$this->slug}\", false);\n }", "public function markProfileAsCompleted()\n {\n return $this->forceFill([\n 'profile_updated_at' => $this->freshTimestamp(),\n ])->save();\n }", "function isComplete(){\n foreach( $this->aSteps as $step ){\n if( !$step->isComplete() ) return false;\n }\n return true;\n }", "public static function isComplete($id)\n {\n $optional = ['address_premise'];\n $fields = Profile::where('user_id', $id)->firstOrFail()->toArray();\n\n return fieldsAreComplete($fields, $optional);\n\n }", "function colibriv2_user_complete($course, $user, $mod, $colibriv2) {\n return true;\n}", "function isComplete()\n\t{\n\t\treturn ($this->isEmpty());\n\t}", "function is_applicant_user($user) {\n profile_load_data($user);\n if(property_exists($user, 'profile_field_applicationprogress')) {\n $is_applicant = strlen($user->profile_field_applicationprogress) > 0;\n if(!$is_applicant){\n redirect(PAGE_WWWROOT);\n }\n }\n if(isguestuser()) {\n redirect(PAGE_WWWROOT);\n }\n}", "public static function inProgress()\n {\n return isset($_SESSION['in-progress']);\n }", "public function isCompleted();", "function profile() {\n\t\t\n\t}", "public function isSetupComplete(): bool;", "public function isComplete(): bool\n {\n return $this->getCurrentFrame()->isComplete() && $this->getCurrentFrame()->isFinal();\n }", "public function profileExists($profile)\n {\n return isset($this->params[$profile]);\n }", "public static function official_profile_exists(): bool {\n global $DB;\n\n $usertablecolumns = $DB->get_columns('user', false);\n if (isset($usertablecolumns['moodlenetprofile'])) {\n return true;\n }\n return false;\n }", "public static function registerProfileCompleteness(\\Elgg\\Event $event) {\n\t\tif (elgg_get_plugin_setting('enable_profile_completeness_widget', 'profile_manager') !== 'yes') {\n\t\t\treturn;\n\t\t}\n\t\t\n\t\t$result = $event->getValue();\n\t\t\n\t\t$result[] = \\Elgg\\WidgetDefinition::factory([\n\t\t\t'id' => 'profile_completeness',\n\t\t\t'context' => ['profile', 'dashboard'],\n\t\t]);\n\t\t\n\t\treturn $result;\n\t}", "public function isComplete($settings, ActivityInstance $activityInstance, ModuleInstance $moduleInstance): bool\n {\n $description = UserSocieties::forResource($activityInstance->id, $moduleInstance->id)->first();\n\n if ($description === null ) {\n return false;\n } else {\n return true;\n }\n }", "public function isComplete()\n {\n if (in_array($this->status, array(self::STATUS_COMPLETE, self::STATUS_ERROR))) {\n return true;\n }\n \n return false;\n }" ]
[ "0.70497185", "0.6980973", "0.69637656", "0.6711231", "0.6495137", "0.6484922", "0.645034", "0.6414686", "0.64083785", "0.6394243", "0.6380892", "0.6358292", "0.6348551", "0.6250676", "0.618334", "0.6170992", "0.6139862", "0.61162025", "0.6099677", "0.6094169", "0.6080028", "0.6063174", "0.6056745", "0.6055375", "0.60437655", "0.6037687", "0.60310805", "0.6018354", "0.6017127", "0.601395" ]
0.80570865
0
Gets the CompilerPasses this extension requires.
public function getCompilerPasses() { return array( new RegisterTemplatingEnginesPass() ); }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getCompilerPasses()\n {\n return [];\n }", "public function getCompilerPasses(): array\n {\n return [\n new MysqlCompilerPass()\n ];\n }", "protected function registerCompilerPasses(): self\n {\n if (!$this->containerBuilder->hasParameter('kernel.compiler_pass')) {\n return $this; // @codeCoverageIgnore\n }\n\n $compilerPasses = (array) $this->containerBuilder->getParameter('kernel.compiler_pass');\n /** @var class-string<CompilerPassInterface> $compilerPass */\n foreach ($compilerPasses as $compilerPass) {\n if (!class_exists($compilerPass)) {\n continue;\n }\n $this->containerBuilder->addCompilerPass(new $compilerPass()); // @codeCoverageIgnore\n }\n\n return $this;\n }", "function getCompilerFunctions() {\n\t\treturn [];\n\t}", "public function getRequires(): array;", "public function requires()\n {\n return $this->_vars['imapflags']\n ? array('imapflags')\n : array('imap4flags');\n }", "public function getDependenciesRequired();", "public function getCompiler()\n {\n if ($this->compiler === null) {\n $this->compiler = $this->getObjectFactory()\n ->createInstance('compiler');\n }\n\n return $this->compiler;\n }", "public function getDevRequires(): array;", "public static function get_requirements(): array;", "public function getCompiler()\n\t{\n\t\tif (null === $this->compiler)\n\t\t{\n\t\t\t$this->compiler = new Compiler;\n\t\t\t$this->compiler->setFormatter('Leafo\\ScssPhp\\Formatter\\Compressed');\n\t\t}\n\n\t\treturn $this->compiler;\n\t}", "public static function get_all_passes() {\n $model = new LaterPay_Model_Pass();\n\n return $model->get_all_passes();\n }", "public function getRequirements() {\n return $this -> requirements;\n }", "public function get_dependencies()\n {\n return array(\n 'requires' => array(),\n 'recommends' => array(),\n 'conflicts_with' => array(),\n );\n }", "public static function get_tokenized_passes( $passes = null ) {\n if ( ! $passes ) {\n $passes = self::get_all_passes();\n }\n\n $result = array();\n foreach ( $passes as $pass ) {\n $result[] = self::get_tokenized_pass( $pass->pass_id );\n }\n\n return $result;\n }", "public function getRequirements()\n {\n return $this->requirements;\n }", "public function addPass(CompilerPassInterface $pass)\n {\n $this->passes[] = $pass;\n }", "public function get_dependencies()\n {\n return array(\n 'requires' => array(\n 'points',\n 'pointstore',\n 'chat',\n ),\n 'recommends' => array(),\n 'conflicts_with' => array()\n );\n }", "public function getNeeds(): array\n {\n return $this->needs;\n }", "public function get_dependencies()\n {\n return array(\n 'requires' => array(\n 'catalogues',\n ),\n 'recommends' => array(),\n 'conflicts_with' => array()\n );\n }", "public function tools()\n {\n return $this->tools;\n }", "public function register()\n {\n $tokens = [];\n foreach ($this->newConstructs as $token => $versions) {\n $tokens[] = \\constant($token);\n }\n return $tokens;\n }", "public function getRegisterRules()\n {\n return $this::$registerRules;\n }", "public function getDependencies()\n {\n return array(\n new ModuleDependency('module'),\n new ModuleDependency('db'),\n new ModuleDependency('fwexception'),\n new ModuleDependency('scriptcollector'),\n new ModuleDependency('scss'),\n new ModuleDependency('ui'),\n new ModuleDependency('validation'),\n new ModuleDependency('page'),\n new ModuleDependency('access'),\n new ModuleDependency('api')\n );\n }", "public static function listValidNeeds()\n\t{\n\t\t$refl = new ReflectionClass('OS_Needs');\n\t\treturn $refl->getConstants();\t\t\n\t}", "public function getRequirements();", "public function getRequirements()\n {\n return [\n // Insert your requirements here\n ];\n }", "public function requires();", "public function get_dependencies()\n {\n return array(\n 'requires' => array(\n 'tickets',\n 'stats',\n 'ecommerce',\n 'points',\n 'mysql',\n ),\n 'recommends' => array(\n 'composr_homesite',\n 'composr_release_build',\n 'composr_tutorials',\n ),\n 'conflicts_with' => array()\n );\n }", "public function getIncludedTargets()\n {\n return $this->included_targets;\n }" ]
[ "0.77784556", "0.69785494", "0.6481899", "0.57469445", "0.5625017", "0.54116887", "0.5166079", "0.5158056", "0.5114376", "0.50925034", "0.5058054", "0.5045702", "0.50198835", "0.49404654", "0.49256977", "0.4917343", "0.4850944", "0.48318788", "0.47971237", "0.47805282", "0.4778128", "0.4760642", "0.47528017", "0.47370914", "0.47314864", "0.4722376", "0.4721062", "0.46916464", "0.46682718", "0.46650428" ]
0.75341016
1
join SQL query to retrieve permissions according search criterias
function searchAndList( $where, $orderby = 'app_name', $ascdesc = 'ASC', &$first, $currentVal=0, &$countMax ) { $db = $GLOBALS['appshore']->db->execute(' SELECT * FROM permissions WHERE 1 = 1 '.$where.' ORDER BY app_name ' ); $db->Move($currentVal); $countMax = $db->RowCount(); while( !$db->EOF && $nbr < $GLOBALS['appshore_data']['current_user']['nbrecords']) { $result['permissions'][] = $db->GetRowAssoc(false); $db->MoveNext(); $nbr++; } $first = $currentVal + $nbr ; return $result['permissions']; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function get_all_permissions(){\n $permissions = $this->find('all',array('conditions'=>array('Permission.is_deleted'=>0,\"Permission.is_active\"=>1,'is_main_action'=>'1'),'fields'=>array('Permission.id','Permission.title')));\n return $permissions;\n }", "function acl_filter_where($where){\n global $wpdb;\n\n $current_user_id = get_current_user_id();\n\n //Берем из настроек нужные типы постов\n $post_types=get_post_types_for_acl_s();\n foreach($post_types as &$post_type){\n $post_type=\"'\".$post_type.\"'\";\n }\n $string_for_query=implode(',',$post_types);\n\n //Если это администратор, редактор или кто то с правом доступа, то отменяем контроль\n if (user_can($current_user_id, 'full_access_to_posts') or user_can($current_user_id, 'editor') or user_can($current_user_id, 'administrator')) return $where;\n\n $where .= \" AND\n if(\" . $wpdb->posts . \".post_type IN (\".$string_for_query.\"),\n if(\" . $wpdb->posts . \".ID IN (\n SELECT post_id\n FROM \" . $wpdb->postmeta .\"\n WHERE\n \" . $wpdb->postmeta .\".meta_key = 'acl_s_true'\n AND \" . $wpdb->postmeta .\".post_id = \" . $wpdb->posts . \".ID\n ),\n if(\" . $wpdb->posts . \".ID IN (\n SELECT post_id\n FROM \" . $wpdb->postmeta .\"\n WHERE\n \" . $wpdb->postmeta .\".meta_key = 'acl_users_s'\n AND \" . $wpdb->postmeta .\".post_id = \" . $wpdb->posts . \".ID\n AND \" . $wpdb->postmeta .\".meta_value = \" . $current_user_id .\"\n )\n ,1,0),1),\n 1)=1\";\n\n return $where;\n}", "function permissions($info)\n\t{\t\n\t\t$this->db->select('*');\n\t\t$this->db->where('role_id',$info);\n\t\t$qry=$this->db->get('ssr_t_role_permission');\n\t\treturn $qry->result();\n\t}", "public function getPermisosSearch($permission)\n {\n $roles = $this->_db->query(\"select *, permission as nombre, id_permission as id from my_permissions where permission like '%$permission%'\");\n return $roles->fetchall();\n }", "public function & GetPermissions();", "protected function get_filter_sql_permissions() {\n global $USER;\n $ctxlevel = 'cluster';\n $perm = 'local/elisprogram:userset_view';\n $additionalfilters = array();\n $additionalparams = array();\n $associatectxs = pm_context_set::for_user_with_capability($ctxlevel, $perm, $USER->id);\n $associatectxsfilerobject = $associatectxs->get_filter('id', $ctxlevel);\n $associatefilter = $associatectxsfilerobject->get_sql(false, 'element', SQL_PARAMS_QM);\n if (isset($associatefilter['where'])) {\n $additionalfilters[] = $associatefilter['where'];\n $additionalparams = array_merge($additionalparams, $associatefilter['where_parameters']);\n }\n return array($additionalfilters, $additionalparams);\n }", "function get_user_permissions($role_id = null){\n \n $role_permission_join = array(\"table\"=>\"role_permissions\",\"alias\"=>\"RolePermission\",\"type\"=>\"inner\",\"foreignKey\"=>false,\"conditions\"=>array(\"RolePermission.permission_id = Permission.id\",\"RolePermission.role_id\"=>$role_id,\"RolePermission.is_active\"=>\"1\",\"RolePermission.is_deleted\"=>\"0\"));\n\t\t\n $permissions = $this->find('all',array('conditions'=>array('Permission.is_deleted'=>0,\"Permission.is_active\"=>1),'fields'=>array('Permission.id','Permission.title','Permission.parent_id','Permission.is_main_action'),'joins'=>array($role_permission_join),\"recursive\"=>-1));\n \n $new_permissions = $permissions;\n $new_arr = array();\n $j = 0;\n foreach($permissions as $k=>$v){\n if($v['Permission']['is_main_action'] == '1'){\n $new_arr[$j]['Permission']['id'] = $v['Permission']['id'];\n $new_arr[$j]['Permission']['title'] = $v['Permission']['title'];\n }\n $i = 0;\n foreach($new_permissions as $k1=>$v1){\n if($v1['Permission']['parent_id'] == $v['Permission']['id'] && ($v1['Permission']['is_main_action'] != \"1\")){\n $new_arr[$j]['SubPermission'][$i]['id'] = $v1['Permission']['id'];\n $new_arr[$j]['SubPermission'][$i]['title'] = $v1['Permission']['title'];\n $i++;\n }\n }\n $j++;\n }\n\tif($role_id == '3'){\n\t foreach($permissions as $K2=>$v2){\n\t\tif($v2['Permission']['id'] == '2'){\n\t\t break;\n\t\t}else{\n\t\t if($v2['Permission']['id'] == '9'){\n\t\t\t$new_arr[$j]['Permission']['id'] = $v2['Permission']['id'];\n\t\t\t$new_arr[$j]['Permission']['title'] = $v2['Permission']['title'];\n\t\t\tbreak;\n\t\t }\n\t\t}\n\t }\n\t}\n\t\n\treturn $new_arr;\n }", "public function searchdatas()\r\n\t{\r\n\t\t// should not be searched.\r\n\t\t$conditions=array();\r\n\t\t$params=array();\r\n\t\t$page_params=array();\r\n $permissions_name=$_REQUEST['permissions_name'];\r\n \tif(!empty($permissions_name)){\r\n\t\t\t array_push($conditions,\"permissions_name LIKE :permissions_name\");\r\n\t\t\t $params[':permissions_name']=\"%$permissions_name%\";\r\n\t\t\t $page_params['permissions_name']=$permissions_name;\r\n\t\t}\r\n\t\t\r\n\t\t$validate_search_user=Yii::app()->getController()->validate_search_user();\r\n\t\tif(!empty($validate_search_user)){\r\n\t\t\t array_push($conditions,$validate_search_user);\r\n\t\t}\r\n\t\t$criteria=new CDbCriteria;\r\n\t\t$sort=new CSort();\r\n \t$sort->attributes=array();\r\n \t$sort->defaultOrder=\"t.id ASC\";\r\n \t$sort->params=$page_params;\r\n\t\treturn new CActiveDataProvider(get_class($this), array(\r\n\t\t\t'criteria'=>array(\r\n\t\t\t 'condition'=>implode(' AND ',$conditions),\r\n\t\t\t 'params'=>$params,\r\n\t\t\t 'with'=>array(\"User\"),\r\n\r\n\t\t\t),\r\n\t\t\t'pagination'=>array(\r\n 'pageSize'=>'20',\r\n 'params'=> $page_params,\r\n ),\r\n 'sort'=>$sort,\r\n\t\t));\r\n\t}", "function getPermissionData($levelId){\n\t\t\n\t\t $sql = \"SELECT UAP.*\n FROM user_access as UA RIGHT JOIN \n\t\t\t\tuser_access_permission as UAP ON\n\t\t\t\tUA.user_access_id = UAP.user_access_id \n WHERE UA.access_level_id = \" . $levelId . \"\n \n \";\n\t\t\t\n\t\t\t$query = $this->db->query($sql);\n\n if ($query->num_rows() > 0)\n\t\t\t{\n\t\t\t\t$results_t = $query->result_array();\n\t\t\t\tforeach($results_t as $result){ \n\t\t\t\t\t$results[$result['menu_id']] = $result; \n\t\t\t\t}\n\t\t\t}\n\t\t\telse\n\t\t\t{\n\t\t\t\t$results = NULL;\n\t\t\t} \n\t\t\t \n\t\t\treturn $results;\n\t\t\n\t}", "public function permissions();", "public function permissions();", "public function permissions();", "abstract protected function getPermissions();", "public function permission()\n {\n return $this->hasManyThrough(SystemPermission::class, SystemRolePermission::class, 'role_id', 'permission_id', 'role_id', 'permission_id')->select(['system_permissions.permission_id', 'system_permissions.slug']);\n }", "function rs_search_perm() {\n return array(\n 'search Rocketseed data',\n );\n}", "public function userPermissions()\n {\n return array_map(function ($item) {\n return $item[\"name\"];\n }, $this->db\n ->select(\"permissions.*\")\n ->from(\"permissions\")\n ->join(\"permission_roles\", \"permissions.id = permission_roles.permission_id\", \"inner\")\n ->where_in(\"permission_roles.role_id\", $this->roles())\n ->where(array(\"permissions.status\" => 1, \"deleted_at\" => null))\n ->group_by(\"permission_roles.permission_id\")\n ->get()->result_array());\n }", "private function getACL(){\n //Get security setting list of user (USER_SECURITY) \n $roles = array();\n $userSecurity = new User($this->getTenantId());\n $uSecurityCriteria = new CriteriaOption();\n $uSecurityCriteria->where(User::FIELD_RECORD_TYPE, $userSecurity->getRecordType());\n $uSecurityCriteria->where(User::FIELD_TENANT, $userSecurity->getTenantId());\n $uSecurityCriteria->where(\"_user\", $this->user->id);\n $userSecurity->pushCriteria($uSecurityCriteria);\n $userSecurity->applyCriteria();\n $objUserSecurity = $userSecurity->readOne();\n if($objUserSecurity){\n //Get specific roles assigned to user\n if($objUserSecurity->_role != null){\n $roles = array_merge($roles, $objUserSecurity->_role);\n }\n //If user has been assigned to any groups \n //we need to get roles of the groups too\n if($objUserSecurity->_group != null){\n $groupSecurity = new Group($this->getTenantId());\n $gSecurityCriteria = new CriteriaOption();\n $gSecurityCriteria->where(Group::FIELD_RECORD_TYPE, $groupSecurity->getRecordType());\n $gSecurityCriteria->where(Group::FIELD_TENANT, $groupSecurity->getTenantId());\n $gSecurityCriteria->whereIn('name', $objUserSecurity->_group);\n $groupSecurity->pushCriteria($gSecurityCriteria);\n $groupSecurity->applyCriteria();\n $objGroupSecurity = $groupSecurity->readAll();\n if($objGroupSecurity){\n foreach($objGroupSecurity as $itemGroupSecurity){\n if($itemGroupSecurity->_role != null){\n $roles = array_merge($roles, $itemGroupSecurity->_role);\n }\n }\n }\n }\n //Remove duplicate roles by using method array_unique\n $roles = array_unique($roles);\n }\n //Get all permissions from roles resulting from above process\n $rowPermission = new RowPermission($this->getTenantId());\n $permissionList = new PermissionLibrary($this->getTenantId());\n $pListCriteria = new CriteriaOption();\n $pListCriteria->where(PermissionLibrary::FIELD_RECORD_TYPE, $permissionList->getRecordType());\n $pListCriteria->where(PermissionLibrary::FIELD_TENANT, $permissionList->getTenantId());\n $pListCriteria->where('resource', $this->schema->getPluralName());\n $pListCriteria->whereIn(PermissionLibrary::FIELD_PERMISSION_TYPE, [\n $rowPermission->getType()\n ]);\n $pListCriteria->whereIn(\"name\", $roles);\n $permissionList->pushCriteria($pListCriteria);\n $permissionList->applyCriteria();\n $objRolePermissions = $permissionList->readAll();\n //Get all permisions assigned specific to the user\n $perList = new PermissionLibrary($this->getTenantId());\n $pListCrt = new CriteriaOption();\n $pListCrt->where(PermissionLibrary::FIELD_RECORD_TYPE, $perList->getRecordType());\n $pListCrt->where(PermissionLibrary::FIELD_TENANT, $perList->getTenantId());\n $pListCrt->where('resource', $this->schema->getPluralName());\n $pListCrt->whereIn(PermissionLibrary::FIELD_PERMISSION_TYPE, [\n $rowPermission->getType()\n ]);\n $pListCrt->where(\"name\", $this->user->id);\n $perList->pushCriteria($pListCrt);\n $perList->applyCriteria();\n $objUserPermissions = $perList->readAll();\n //PROCESS TO OVERWRITE PERMISSIONS ASSIGNED TO USER OVER\n //PERMISSIONS ASSIGNED TO ROLE BELONG TO THAT USER\n $aclList = array();\n if(count($objUserPermissions) > 0){\n foreach($objRolePermissions as $itemRolePermission){\n $bool = true;\n foreach($objUserPermissions as $itemUserPermission){\n if(($itemUserPermission->type['code'] == $itemRolePermission->type['code'])\n && ($itemUserPermission->resource == $itemRolePermission->resource)\n && ($itemUserPermission->field == $itemRolePermission->field)){\n //Excluded this permission from permissions of role\n $bool = false;\n }\n }\n if($bool){ $aclList[] = $itemRolePermission; }\n }\n $aclList[] = $objUserPermissions;\n return $aclList[0];\n }\n return $objRolePermissions;\n /*\n |--------------------------------------------------------------------------\n | End Module of getting ACL permission of requested user\n |--------------------------------------------------------------------------\n */\n }", "protected function get_filter_sql_permissions() {\n global $USER;\n $ctxlevel = 'cluster';\n $perm = 'local/elisprogram:userset_edit';\n $additionalfilters = array();\n $additionalparams = array();\n $associatectxs = pm_context_set::for_user_with_capability($ctxlevel, $perm, $USER->id);\n $associatectxsfilerobject = $associatectxs->get_filter('id', $ctxlevel);\n $associatefilter = $associatectxsfilerobject->get_sql(false, 'element', SQL_PARAMS_QM);\n if (isset($associatefilter['where'])) {\n $additionalfilters[] = $associatefilter['where'];\n $additionalparams = array_merge($additionalparams, $associatefilter['where_parameters']);\n }\n return array($additionalfilters, $additionalparams);\n }", "public function allPermissions();", "function qry_all_grant_category()\n {\n $user_id = Session::get('user_id');\n $granted_group = Session::get('arr_all_grant_group_code');\n $arr_super_group = array('ADMINISTRATORS');\n $arr_i = array_intersect($arr_super_group, $granted_group);\n if (!empty($arr_i))\n {\n $detect = new Mobile_Detect();\n if ($detect->isMobile())\n {\n //Mobile thi lay tat ca\n $sql = ' Select PK_CATEGORY From t_ps_category';\n }\n else\n {\n $sql = ' Select PK_CATEGORY From t_ps_category Where FK_WEBSITE = ' . Session::get('session_website_id');\n }\n \n }\n else\n {\n $sql = 'Select FK_CATEGORY From t_ps_user_category Where FK_USER = ' . $user_id;\n if (!empty($granted_group))\n {\n $granted_group = \"'\" . implode(\" ', '\", $granted_group) . \"'\";\n $sql .= ' Union(Select GC.FK_CATEGORY \n From t_ps_group_category GC\n Inner Join t_cores_group G \n On G.PK_GROUP = GC.FK_GROUP\n Where G.C_CODE In (' . $granted_group . ')\n )';\n }\n }\n $arr = $this->db->getCol($sql);\n if (!empty($arr))\n {\n return $arr;\n }\n else\n {\n return array();\n }\n }", "function sql_perm()\n{\n\tif(!in_group('admin'))\n\t{\n\t\t$str_where_perm = \"(\".PREFIX.\"first_lev_album.groups LIKE '%;public;%'\";\n\t\tif(isset($_SESSION[\"user_groups\"]))\n\t\t{\n\t\t\t$str_groups = substr($_SESSION[\"user_groups\"],0,strlen($_SESSION[\"user_groups\"])-1);\t// remove last ';'\n\t\t\t$group_member_of=explode(\";\",$str_groups);\n\t\t\t$group_member_of = addslashes_array($group_member_of);\n\t\t\t\n\t\t\t$str_perm = implode(\";%' OR \".PREFIX.\"first_lev_album.groups LIKE '%;\",$group_member_of);\n\t\t\t$str_perm = PREFIX.\"first_lev_album.groups LIKE '%;\".$str_perm.\";%'\";\n\t\t\t\n\t\t\t$str_where_perm .= \" OR \".$str_perm;\n\t\t}\n\t\t$str_where_perm .= \")\";\n\t}\n\telse\n\t{\n\t\t$str_where_perm = \"1=1\";\n\t}\n\t\n\treturn $str_where_perm;\n}", "function accessPermission($userTypeId, $menuId, $actionType){\n\t\t \n\t\t $sql = \"SELECT $actionType as permission\n FROM user_access as UA RIGHT JOIN \n\t\t\t\tuser_access_permission as UAP ON\n\t\t\t\tUA.user_access_id = UAP.user_access_id \n WHERE \n\t\t\t\tUA.access_level_id = \" . $userTypeId . \" AND\n\t\t\t\tUAP.menu_id = \" . $menuId . \" \n \";\n\t\t \n\t\t//echo $sql;\n\t\t//die;\n\t\t$query = $this->db->query($sql);\n\t\t$rws = $query->row_array(); \n \n\t\treturn $rws['permission'];\n\t}", "public function getPermissionModel(Request $request)\n {\n\n $user_id = $request->user_id;\n if ($user_id == 0) {\n return \"Not selected\";\n }\n $user = User::find($user_id);\n $permissions_exists = $user->permissions;\n $permission_names = DB::select(\"select * from model_has_roles as mhr inner join role_has_permissions as rhp on mhr.role_id=rhp.role_id inner join permissions as p on p.id=rhp.permission_id where mhr.model_id='$user_id'\");\n $permissions = DB::table('permissions')->get();\n $permissions_exist_id = array();\n foreach ($permissions_exists as $key => $permissions_exist) {\n $permissions_exist_id[] = $permissions_exist->id;\n }\n $datas = array();\n foreach ($permission_names as $key => $permission_name) {\n $datas[] = $permission_name->name;\n }\n $match = array();\n $not_matches = array();\n foreach ($permissions as $key => $permission) {\n if (in_array($permission->name, $datas)) {\n\n $match[] = $permission;\n } else {\n $not_matches[] = $permission;\n }\n }\n $all_permissions_for_user= $user->getAllPermissions();\n \n \n $users_name = DB::select(\"select permissions.name as permission_name, roles.name as role_name from model_has_roles as mhr inner join roles on mhr.role_id=roles.id inner join role_has_permissions as rhp on rhp.role_id=roles.id inner join permissions on permissions.id = rhp.permission_id where model_id = $user_id \");\n\n $all_permissions_for_user_array=array();\n foreach ($all_permissions_for_user as $all_permission_for_user) {\n $all_permissions_for_user_array[]=$all_permission_for_user->name;\n }\n return response()->json([\n 'all_permissions_for_user_array'=>$all_permissions_for_user_array,\n 'permissions_exist_id' => $permissions_exist_id, \n 'users_name' => $users_name,\n 'permissions' => $permissions,\n 'not_matches' => $not_matches\n ]);\n\n }", "public function get_list_of_users_has_permissions($permission_name, $conditions = null) {\n $this->db->select('users.user_name, users.id,electronic,software,external_repair');\n $this->db->from('users');\n $this->db->distinct();\n $this->db->where('users.Activated', 1);\n $this->db->where('users.Absent', 0);\n $this->db->join('users_has_groups', 'users.id = users_has_groups.users_id');\n $this->db->join('groups', 'groups.id = users_has_groups.groups_id');\n $this->db->join('groups_has_permissions', 'groups.id = groups_has_permissions.groups_id');\n $this->db->join('permissions', 'permissions.id = groups_has_permissions.permissions_id');\n $this->db->where('permissions.name', $permission_name);\n $query = $this->db->get();\n return($query->result());\n }", "private function getPermissions(){\n if(!isset($this->permissions)) {\n $this->permissions = array();\n $authorized = RolePermission::getListByExample(\n new DBExample(array(\n 'value' => 1,\n 'roleId' => $this->roleId\n )),\n 'permissionId'\n );\n\n if(!empty($authorized)) {\n $permissions = Permission::getListByExample(\n new DBExample(array(\n 'id' => array(\n '$in' => array_keys($authorized)\n )\n )),\n Permission::getPrimaryColumn()\n );\n\n foreach($permissions as $id => $permission){\n // Register the permission by it id\n $this->permissions['byId'][$id] = 1;\n\n // Regoster the permission by it name\n $this->permissions['byName'][$permission->plugin][$permission->key] = 1;\n }\n }\n }\n }", "public function index(Request $request)\n {\n $keyword = $request->get('search');\n $perPage = 10;\n\n if (!empty($keyword)) {\n $permissions = Permission::where(function ($q) use ($keyword) {\n $columns = Schema::getColumnListing('permissions');\n foreach ($columns as $key => $column) {\n if ($key==0) {\n $q->where($column, 'like', \"%$keyword%\");\n } else {\n $q->orWhere($column, 'like', \"%$keyword%\");\n }\n }\n })->paginate($perPage);\n } else if ($request->get('all')) {\n $permissions = Permission::latest()->get();\n } else {\n $permissions = Permission::latest()->paginate($perPage);\n }\n\n return $permissions;\n }", "public function search (Request $request) \n {\n $theme = 'dore';\n\n $action = $request->input('action');\n if ($action == 'reset') \n {\n $this->destroyControllerStateSession('permissions','search');\n }\n else\n {\n $kriteria = $request->input('cmbKriteria');\n $isikriteria = $request->input('txtKriteria');\n $this->putControllerStateSession('permissions','search',['kriteria'=>$kriteria,'isikriteria'=>$isikriteria]);\n } \n $this->setCurrentPageInsideSession('permissions',1);\n $data=$this->populateData();\n \n $datatable = view(\"pages.$theme.setting.permissions.datatable\")->with(['page_active'=>'permissions',\n 'search'=>$this->getControllerStateSession('permissions','search'),\n 'numberRecordPerPage'=>$this->getControllerStateSession('global_controller','numberRecordPerPage'),\n 'column_order'=>$this->getControllerStateSession('permissions.orderby','column_name'),\n 'direction'=>$this->getControllerStateSession('permissions.orderby','order'),\n 'data'=>$data])->render(); \n return response()->json(['success'=>true,'datatable'=>$datatable],200); \n }", "static function getSqlSearchResult ($count = true, $right = \"all\", $entity_restrict = -1, $value = 0,\n array $used = [], $search = '', $start = 0, $limit = -1,\n $inactive_deleted = 0) {\n global $DB;\n\n // No entity define : use active ones\n if ($entity_restrict < 0) {\n $entity_restrict = $_SESSION[\"glpiactiveentities\"];\n }\n\n $joinprofile = false;\n $joinprofileright = false;\n $WHERE = [];\n\n switch ($right) {\n case \"interface\" :\n $joinprofile = true;\n $WHERE = [\n 'glpi_profiles.interface' => 'central'\n ] + getEntitiesRestrictCriteria('glpi_profiles_users', '', $entity_restrict, 1);\n break;\n\n case \"id\" :\n $WHERE = ['glpi_users.id' => Session::getLoginUserID()];\n break;\n\n case \"delegate\" :\n $groups = self::getDelegateGroupsForUser($entity_restrict);\n $users = [];\n if (count($groups)) {\n $iterator = $DB->request([\n 'SELECT' => 'glpi_users.id',\n 'FROM' => 'glpi_groups_users',\n 'LEFT JOIN' => [\n 'glpi_users' => [\n 'FKEY' => [\n 'glpi_groups_users' => 'users_id',\n 'glpi_users' => 'id'\n ]\n ]\n ],\n 'WHERE' => [\n 'glpi_groups_users.groups_id' => $groups,\n 'glpi_groups_users.users_id' => ['<>', Session::getLoginUserID()]\n ]\n ]);\n while ($data = $iterator->next()) {\n $users[$data[\"id\"]] = $data[\"id\"];\n }\n }\n // Add me to users list for central\n if (Session::getCurrentInterface() == 'central') {\n $users[Session::getLoginUserID()] = Session::getLoginUserID();\n }\n\n if (count($users)) {\n $WHERE = ['glpi_users.id' => $users];\n }\n break;\n\n case \"groups\" :\n $groups = [];\n if (isset($_SESSION['glpigroups'])) {\n $groups = $_SESSION['glpigroups'];\n }\n $users = [];\n if (count($groups)) {\n $iterator = $DB->request([\n 'SELECT' => 'glpi_users.id',\n 'FROM' => 'glpi_groups_users',\n 'LEFT JOIN' => [\n 'glpi_users' => [\n 'FKEY' => [\n 'glpi_groups_users' => 'users_id',\n 'glpi_users' => 'id'\n ]\n ]\n ],\n 'WHERE' => [\n 'glpi_groups_users.groups_id' => $groups,\n 'glpi_groups_users.users_id' => ['<>', Session::getLoginUserID()]\n ]\n ]);\n while ($data = $iterator->next()) {\n $users[$data[\"id\"]] = $data[\"id\"];\n }\n }\n // Add me to users list for central\n if (Session::getCurrentInterface() == 'central') {\n $users[Session::getLoginUserID()] = Session::getLoginUserID();\n }\n\n if (count($users)) {\n $WHERE = ['glpi_users.id' => $users];\n }\n\n break;\n\n case \"all\" :\n $WHERE = [\n 'glpi_users.id' => ['>', 0],\n 'OR' => [\n 'glpi_profiles_users.entities_id' => null\n ] + getEntitiesRestrictCriteria('glpi_profiles_users', '', $entity_restrict, 1)\n ];\n break;\n\n default :\n $joinprofile = true;\n $joinprofileright = true;\n if (!is_array($right)) {\n $right = [$right];\n }\n $forcecentral = true;\n\n $ORWHERE = [];\n foreach ($right as $r) {\n switch ($r) {\n case 'own_ticket' :\n $ORWHERE[] = [\n [\n 'glpi_profilerights.name' => 'ticket',\n 'glpi_profilerights.rights' => ['&', Ticket::OWN]\n ] + getEntitiesRestrictCriteria('glpi_profiles_users', '', $entity_restrict, 1)\n ];\n break;\n\n case 'create_ticket_validate' :\n $ORWHERE[] = [\n [\n 'glpi_profilerights.name' => 'ticketvalidation',\n 'OR' => [\n ['glpi_profilerights.rights' => ['&', TicketValidation::CREATEREQUEST]],\n ['glpi_profilerights.rights' => ['&', TicketValidation::CREATEINCIDENT]]\n ]\n ] + getEntitiesRestrictCriteria('glpi_profiles_users', '', $entity_restrict, 1)\n ];\n $forcecentral = false;\n break;\n\n case 'validate_request' :\n $ORWHERE[] = [\n [\n 'glpi_profilerights.name' => 'ticketvalidation',\n 'glpi_profilerights.rights' => ['&', TicketValidation::VALIDATEREQUEST]\n ] + getEntitiesRestrictCriteria('glpi_profiles_users', '', $entity_restrict, 1)\n ];\n $forcecentral = false;\n break;\n\n case 'validate_incident' :\n $ORWHERE[] = [\n [\n 'glpi_profilerights.name' => 'ticketvalidation',\n 'glpi_profilerights.rights' => ['&', TicketValidation::VALIDATEINCIDENT]\n ] + getEntitiesRestrictCriteria('glpi_profiles_users', '', $entity_restrict, 1)\n ];\n $forcecentral = false;\n break;\n\n case 'validate' :\n $ORWHERE[] = [\n [\n 'glpi_profilerights.name' => 'changevalidation',\n 'glpi_profilerights.rights' => ['&', ChangeValidation::VALIDATE]\n ] + getEntitiesRestrictCriteria('glpi_profiles_users', '', $entity_restrict, 1)\n ];\n break;\n\n case 'create_validate' :\n $ORWHERE[] = [\n [\n 'glpi_profilerights.name' => 'changevalidation',\n 'glpi_profilerights.rights' => ['&', ChangeValidation::CREATE]\n ] + getEntitiesRestrictCriteria('glpi_profiles_users', '', $entity_restrict, 1)\n ];\n break;\n\n case 'see_project' :\n $ORWHERE[] = [\n [\n 'glpi_profilerights.name' => 'project',\n 'glpi_profilerights.rights' => ['&', Project::READMY]\n ] + getEntitiesRestrictCriteria('glpi_profiles_users', '', $entity_restrict, 1)\n ];\n break;\n\n case 'faq' :\n $ORWHERE[] = [\n [\n 'glpi_profilerights.name' => 'knowbase',\n 'glpi_profilerights.rights' => ['&', KnowbaseItem::READFAQ]\n ] + getEntitiesRestrictCriteria('glpi_profiles_users', '', $entity_restrict, 1)\n ];\n\n default :\n // Check read or active for rights\n $ORWHERE[] = [\n [\n 'glpi_profilerights.name' => $r,\n 'glpi_profilerights.rights' => [\n '&',\n READ | CREATE | UPDATE | DELETE | PURGE\n ]\n ] + getEntitiesRestrictCriteria('glpi_profiles_users', '', $entity_restrict, 1)\n ];\n }\n if (in_array($r, Profile::$helpdesk_rights)) {\n $forcecentral = false;\n }\n }\n\n if (count($ORWHERE)) {\n $WHERE[] = ['OR' => $ORWHERE];\n }\n\n if ($forcecentral) {\n $WHERE['glpi_profiles.interface'] = 'central';\n }\n }\n\n if (!$inactive_deleted) {\n $WHERE = array_merge(\n $WHERE, [\n 'glpi_users.is_deleted' => 0,\n 'glpi_users.is_active' => 1,\n [\n 'OR' => [\n ['glpi_users.begin_date' => null],\n ['glpi_users.begin_date' => ['<', new QueryExpression('NOW()')]]\n ]\n ],\n [\n 'OR' => [\n ['glpi_users.end_date' => null],\n ['glpi_users.end_date' => ['>', new QueryExpression('NOW()')]]\n ]\n ]\n\n ]\n );\n }\n\n if ((is_numeric($value) && $value)\n || count($used)) {\n\n $WHERE[] = [\n 'NOT' => [\n 'glpi_users.id' => $used\n ]\n ];\n }\n\n $criteria = [\n 'FROM' => 'glpi_users',\n 'LEFT JOIN' => [\n 'glpi_useremails' => [\n 'ON' => [\n 'glpi_useremails' => 'users_id',\n 'glpi_users' => 'id'\n ]\n ],\n 'glpi_profiles_users' => [\n 'ON' => [\n 'glpi_profiles_users' => 'users_id',\n 'glpi_users' => 'id'\n ]\n ]\n ]\n ];\n if ($count) {\n $criteria['SELECT'] = ['COUNT' => 'glpi_users.id AS CPT'];\n $criteria['DISTINCT'] = true;\n } else {\n $criteria['SELECT'] = 'glpi_users.*';\n $criteria['DISTINCT'] = true;\n }\n\n if ($joinprofile) {\n $criteria['LEFT JOIN']['glpi_profiles'] = [\n 'ON' => [\n 'glpi_profiles_users' => 'profiles_id',\n 'glpi_profiles' => 'id'\n ]\n ];\n if ($joinprofileright) {\n $criteria['LEFT JOIN']['glpi_profilerights'] = [\n 'ON' => [\n 'glpi_profilerights' => 'profiles_id',\n 'glpi_profiles' => 'id'\n ]\n ];\n }\n }\n\n if (!$count) {\n if ((strlen($search) > 0)) {\n $txt_search = Search::makeTextSearchValue($search);\n\n $firstname_field = $DB->quoteName(self::getTableField('firstname'));\n $realname_field = $DB->quoteName(self::getTableField('realname'));\n $fields = $_SESSION[\"glpinames_format\"] == self::FIRSTNAME_BEFORE\n ? [$firstname_field, $realname_field]\n : [$realname_field, $firstname_field];\n\n $concat = new \\QueryExpression(\n 'CONCAT(' . implode(',' . $DB->quoteValue(' ') . ',', $fields) . ')'\n . ' LIKE ' . $DB->quoteValue($txt_search)\n );\n $WHERE[] = [\n 'OR' => [\n 'glpi_users.name' => ['LIKE', $txt_search],\n 'glpi_users.realname' => ['LIKE', $txt_search],\n 'glpi_users.firstname' => ['LIKE', $txt_search],\n 'glpi_users.phone' => ['LIKE', $txt_search],\n 'glpi_useremails.email' => ['LIKE', $txt_search],\n $concat\n ]\n ];\n }\n\n if ($_SESSION[\"glpinames_format\"] == self::FIRSTNAME_BEFORE) {\n $criteria['ORDERBY'] = [\n 'glpi_users.firstname',\n 'glpi_users.realname',\n 'glpi_users.name'\n ];\n } else {\n $criteria['ORDERBY'] = [\n 'glpi_users.realname',\n 'glpi_users.firstname',\n 'glpi_users.name'\n ];\n }\n\n if ($limit > 0) {\n $criteria['LIMIT'] = $limit;\n $criteria['START'] = $start;\n }\n }\n $criteria['WHERE'] = $WHERE;\n return $DB->request($criteria);\n }", "public function buildWherePermission( array $ids, $field='', $incStarCheck=true );", "public function getPermissions() {\n\t\t$sql = \"SELECT * FROM {$this->cTableName} ORDER BY systemcode ASC\";\n\t\t$statement = $this->prepare($sql);\n\t\t$statement->execute();\n\t\treturn $this->fetchObjects($statement);\n\t}" ]
[ "0.5734076", "0.56868434", "0.5652567", "0.5626669", "0.5621263", "0.5607916", "0.5550242", "0.5537679", "0.5520083", "0.5508549", "0.5508549", "0.5508549", "0.55021656", "0.550062", "0.54809135", "0.54325867", "0.54311144", "0.5420534", "0.54176164", "0.5408598", "0.54075974", "0.5387814", "0.5387493", "0.53765786", "0.53653574", "0.5338875", "0.5331042", "0.53286874", "0.5325911", "0.5320664" ]
0.5836129
0
Set a fallback route to the router.
public function setFallback($route) { if (isset($this->fallback)) { throw new LogicException('The fallback Route is already set.'); } $this->fallback = $route; $this->allRoutes[] = $route; // Add the Route instance to lookup lists. $this->addLookups($route); return $route; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setRoutingFallback($enable)\n {\n $this->routeFallback = $enable;\n }", "function setDefaultRoute($route) {\r\n\t\t\t$this->default_route = $route;\r\n\t\t}", "public function setFallback($fallback)\n {\n $this->fallback = $fallback;\n }", "public function otherwise($callback) {\n $this->routes['/^(.*)$/'] = $callback;\n }", "public function setFallback(string $fallback = null)\n\t{\n\t\t$this->fallback = $fallback;\n\t}", "public function enableFallbackView() {\n\t\t$this->fallbackViewEnabled = TRUE;\n\t}", "public function initCrossRouting()\n {\n if($this->pattern == null) {\n return;\n }\n\n $route = swPatternRouting::getCrossApplicationRouteInstance($this->options['encapsulated']['name']);\n $this->setRoute($route->getRoute());\n }", "protected function iniRoutes() {\n \n }", "public function fallback(string $fallback): self\n {\n $this->fallback = $fallback;\n return $this;\n }", "public function isFallback(): bool\n {\n return $this->route && $this->route->isFallback;\n }", "public static function withoutRoutes()\n {\n self::$withDefaultRoutes = false;\n }", "public static function getConfigDefaultRoute($route){ \n route::set($route, function($route){\n $route::index();\n });\n }", "public function route($default = ViewRoutes::_default) {\n\t\t// set from route\n\t\t$this->set(GetDirVar(0, $default), GetDirVar(1, false));\n\t}", "public function disableFallbackView() {\n\t\t$this->fallbackViewEnabled = FALSE;\n\t}", "public function fallback($fallback)\n {\n $this->fallback = $fallback;\n\n return $this;\n }", "public function init() {\r\n $this->_router->route();\r\n }", "public function testNoFallbackOnEmptyCustomFallbacks() {\n $opts = [\n 'key' => 'fake.key:veryFake',\n 'httpClass' => 'tests\\HttpMockInitTestTimeout',\n 'restHost' => 'custom.host.com',\n 'fallbackHosts' => [],\n ];\n $ably = new AblyRest( $opts );\n try {\n $ably->time(); // make a request\n $this->fail('Expected the request to fail');\n } catch(AblyRequestException $e) {\n $this->assertCount(1, $ably->http->visitedHosts);\n $this->assertEquals( [ 'custom.host.com' ], $ably->http->visitedHosts, 'Expected to have tried only the custom host' );\n }\n }", "protected function setRouter()\n {\n $eventsDispatcher = new EventsDispatcher($this->container);\n\n $this->router = new Router($eventsDispatcher, $this->container);\n $this->router->allowAdapters([\n MainAdapter::name,\n JsonRpcAdapter::name,\n SoapAdapter::name,\n 'Rest'\n ]);\n }", "public function routeUrlDestinationAutodetect()\n {\n\n }", "public function initializeRouter()\r\n {\r\n $this->route = trim($this->app->request->get('route') , '/');\r\n\r\n $this->route = $this->route ? explode('/' , $this->route) : false;\r\n\r\n $this->setScript();\r\n\r\n $this->establishRoutes();\r\n\r\n $this->setRouteKey();\r\n\r\n $this->setRouteController();\r\n\r\n $this->setControllerMethod();\r\n\r\n $this->setControllerArguments();\r\n\r\n }", "public function bootstrapRouter()\n {\n $this->router = new Router($this, false);\n }", "public function setRoutes(): void\n {\n $versions = $this->_versions;\n $default = 'api/v1/v0';\n\n Router::scope('/api', function ($routes) use ($versions, $default) {\n // Setting up fallback non-versioned API url calls.\n // It can handle `api/controller/index.json` as well\n // as `api/controller.json` calls.\n Router::prefix('api', function ($routes) use ($default) {\n $routes->setExtensions(['json']);\n $routes->connect('/:controller', ['prefix' => $default], ['routeClass' => DashedRoute::class]);\n $routes->connect('/:controller/:action/*', ['prefix' => $default], ['routeClass' => DashedRoute::class]);\n $routes->fallbacks(DashedRoute::class);\n });\n\n foreach ($versions as $version) {\n Router::prefix($version['prefix'], ['path' => $version['path']], function ($routes) {\n $routes->setExtensions(['json']);\n $routes->fallbacks(DashedRoute::class);\n });\n }\n });\n }", "protected function addFallthroughRoute($controller, $uri)\n {\n $missing = $this->any($uri . '/{_missing}', $controller . '@missingMethod');\n $missing->where('_missing', '(.*)');\n }", "protected function setUpRoutes()\n {\n }", "protected function registerDefaultRoutes()\n {\n WiseServiceProvider::registerRoutes($this);\n }", "private function createDefaultRouter(): void\n {\n $this->routerContainer = new RouterContainer();\n }", "public function fallback()\n {\n $this->isFallback = true;\n\n return $this;\n }", "public function enableFallback(): self\n {\n $this->fallback = true;\n\n return $this;\n }", "public function setFallbackLocale($locale);", "function getDefaultRoute() {\r\n\t\t\treturn $this->default_route;\r\n\t\t}" ]
[ "0.66928244", "0.61687577", "0.60960585", "0.5848918", "0.58294666", "0.57644975", "0.573467", "0.5725607", "0.56332743", "0.56184226", "0.56150967", "0.5611499", "0.55476373", "0.55149794", "0.54860115", "0.5483733", "0.54559773", "0.5449615", "0.54231566", "0.54188937", "0.5411342", "0.541013", "0.5404436", "0.53950816", "0.5392564", "0.5370681", "0.5364769", "0.5359523", "0.5350451", "0.53351116" ]
0.67072904
0
Add the route to any lookup tables if necessary.
protected function addLookups($route) { $action = $route->getAction(); if (isset($action['as'])) { $name = $action['as']; $this->nameList[$name] = $route; } if (isset($action['controller'])) { $key = $action['controller']; if (! isset($this->actionList[$key])) { $this->actionList[$key] = $route; } } }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "protected function setupRoutes()\r\n\t{\r\n\t}", "abstract public function register_routes();", "protected function iniRoutes() {\n \n }", "protected function setUpRoutes()\n {\n }", "protected function initCrudRoutes(): void\n {\n $this->getTransport()->addRoute('/list/', 'listRecord', 'GET');\n $this->getTransport()->addRoute('/all/', 'all', 'GET');\n $this->getTransport()->addRoute('/exact/list/[il:ids]/', 'exactList', 'GET');\n $this->getTransport()->addRoute('/exact/[i:id]/', 'exact', 'GET');\n $this->getTransport()->addRoute('/fields/', 'fields', 'GET');\n $this->getTransport()->addRoute('/delete/[i:id]/', 'deleteRecord', [\n 'POST',\n 'DELETE'\n ]);\n $this->getTransport()->addRoute('/delete/', 'deleteFiltered', [\n 'POST',\n 'DELETE'\n ]);\n $this->getTransport()->addRoute('/create/', 'createRecord', [\n 'POST',\n 'PUT'\n ]);\n $this->getTransport()->addRoute('/update/[i:id]/', 'updateRecord', 'POST');\n $this->getTransport()->addRoute('/new/from/[s:date]/', 'newRecordsSince', 'GET');\n $this->getTransport()->addRoute('/records/count/', 'recordsCount', 'GET');\n $this->getTransport()->addRoute('/last/[i:count]/', 'lastRecords', 'GET');\n $this->getTransport()->addRoute('/records/count/[s:field]/', 'recordsCountByField', 'GET');\n }", "public static function addRoute()\n {\n $route = func_get_args();\n if ($route) {\n self::$routes[] = $route;\n }\n }", "protected function initRoutes()\n {\n foreach ($this->routes as $name => $data) {\n $this->application\n ->match($data['match'], array($this, $data['method']))\n ->bind($name);\n }\n }", "public function addRestRoutes()\n {\n }", "function add_route($match_on, $route)\r\n\t{\r\n\t\t$this->routes[$match_on] = $route;\r\n\t}", "public function addRoutes($routes);", "public function loadRoutes()\n {\n include($this->getLibBasePath() . '/config/routes.php');\n include($this->getLibUniPath() . '/config/routes.php');\n $this->loadAppRoutes();\n }", "public function map()\n {\n if($this->hasRoutesFile())\n $this->mapConnectorRoutes();\n }", "public function setRoutes() {\n $this->api->addRoute(\"/^\\/grid\\/(\\d+)\\/rooms\\/?$/\", 'getRoomsByGrid', $this, 'GET', \\Auth::READ); // Get rooms for the given grid\n $this->api->addRoute(\"/^\\/grid\\/(\\d+)\\/room\\/(\\d+)\\/?$/\", 'getRoomById', $this, 'GET', \\Auth::READ); // Get the given room on the grid\n $this->api->addRoute(\"/^\\/grid\\/(\\d+)\\/region\\/([a-z0-9-]{36})\\/rooms\\/?$/\", 'getRoomsByGridRegion', $this, 'GET', \\Auth::READ); // Get the given room on the grid\n }", "public function map()\n {\n $this->mapOpenIDRoutes();\n $this->mapClientRoutes();\n }", "public function addRoute($name, Yaf\\Route_Interface $route) {}", "public function addRoute( $method ){\n foreach ($this->routesList[$method] as $value) {\n $control = explode( '@', $value['handle'] );\n\n $this->routes->add(\n $value['rw'], \n new symRoute(\n $value['rw'], \n array(\n '_controller' => $control[0],\n '_action' => $control[1],\n ), \n $value['parameters'], \n array(), \n '', \n array(), \n array($method, 'HEAD')\n )\n ); \n\n } \n }", "public function discoverRouteMappings(): array;", "public function map()\n {\n $this->mapApiRoutes();\n $this->mapWebRoutes();\n $this->mapExamRoutes();\n $this->mapWxRoutes();\n $this->mapShopRoutes();\n $this->mapExecRoutes();\n\n $this->mapH5Routes();\n $this->mapManageRoutes();\n $this->mapUserRoutes();\n\n $this->mapPosRoutes();\n $this->mapQRoutes();\n $this->mapYRoutes();\n }", "abstract public function registerRoutes(RouteCollection $collection);", "abstract public function createRoutes();", "protected function add()\n {\n// $this->addRoutes('posts', ['controller' => 'Posts', 'action' => 'index']);\n $this->addRoute('{controller}');\n $this->addRoute('{controller}/{action}');\n $this->addRoute('{controller}/{action}/{id:\\d+}');\n $this->addRoute('admin/{action}/{controller}');\n }", "protected function prepareRoutes() {\r\n\r\n foreach ($this->resources as $resource) {\r\n\r\n $resourceType = $resource['type'];\r\n $resourceName = $resource['name'];\r\n $apiUrl = Conf::get('api') . '/';\r\n\r\n if ($resourceType == ResourceTypes::API) {\r\n $this->prepareRoute($apiUrl . $resourceName, $resourceName);\r\n }\r\n else if ($resourceType == ResourceTypes::Url) {\r\n $this->prepareRoute($resourceName, $resourceName);\r\n }\r\n else if ($resourceType == ResourceTypes::UrlAndAPI) {\r\n $this->prepareRoute($resourceName, $resourceName);\r\n $this->prepareRoute($apiUrl . $resourceName, $resourceName);\r\n }\r\n }\r\n }", "public function map()\n {\n $this->mapApiRoutes();\n\n $this->mapWebRoutes();\n //后台路由\n $this->mapWebAdminRoutes();\n //如果数据库没有配置,忽略下面加载,避免报错\n try{\n //插件路由\n $this->mapPluginRoutes();\n }catch (\\Exception $exception)\n\n {\n\n }\n\n\n\n\n }", "private function mapRoutes(): void\n {\n if (! $this->mapped) {\n\n ($this->mapper)($this->collector);\n\n $this->mapped = true;\n\n }\n }", "public function map()\n {\n $this->mapAdminRoutes();\n $this->mapBackstageRoutes();\n $this->mapIntFRoutes();\n $this->mapMipRoutes();\n\n $this->mapApiRoutes();\n\n $this->mapWebRoutes();\n //\n $this->mapAPPRoutes();\n //\n $this->mapAPPV120Routes();\n $this->mapAPPV130Routes();\n }", "public function map()\n {\n $this->mapApiRoutes();\n\n $this->mapWebRoutes();\n\n $this->mapAdminRoutes();\n\n $this->mapBrokerRoutes();\n\n $this->mapImportAgencyRoutes();\n\n $this->mapExportAgencyRoutes();\n\n $this->mapSponsorRoutes();\n\n //\n }", "protected function setupRouters()\n {\n $this->zoo->getApp()->event->dispatcher->connect('application:sefparseroute', function ($event) {\n\n $app_id = $this->app->request->getInt('app_id', null);\n $app = $this->app->table->application->get($app_id);\n\n // check if was loaded\n if (!$app) return;\n\n $group = $app->getGroup();\n if ($router = $this->app->path->path(\"applications:$group/router.php\")) {\n\n require_once $router;\n\n $class = 'ZLRouter' . ucfirst($group);\n $routerClass = new $class;\n $routerClass->parseRoute($event);\n }\n });\n }", "public function createRoutes()\n {\n }", "private function addInternalRoutes()\n {\n // Media Grabber\n App::addRoute(\"POST\", \"/mg/?\", \"MediaGrabber\");\n\n // Webhooks for payment gateways\n App::addRoute(\"GET|POST\", \"/webhooks/payments/[a:gateway]/?\", \"PaymentWebhook\");\n\n // File Manager (Connector for inline)\n App::addRoute(\"GET|POST\", \"/file-manager/connector/?\", \"FileManager\");\n }", "public function register_routes() {\n\n\t\t\t$collection_params = $this->get_collection_params();\n\t\t\t$schema = $this->get_item_schema();\n\n\t\t\t$get_item_args = array(\n\t\t\t\t'context' => $this->get_context_param( array( 'default' => 'view' ) ),\n\t\t\t);\n\t\t}" ]
[ "0.64853406", "0.6411946", "0.6352087", "0.62450486", "0.62369466", "0.61592543", "0.60475296", "0.6045338", "0.5982749", "0.5962831", "0.5947685", "0.5923516", "0.5899108", "0.5830628", "0.5816242", "0.58143544", "0.5802074", "0.5797268", "0.5791628", "0.5788077", "0.5785091", "0.5753892", "0.57439256", "0.5720392", "0.5718233", "0.57161814", "0.5707778", "0.5690494", "0.56898427", "0.56898373" ]
0.7256357
0
Get the value of idCategoria
public function getIdCategoria() { return $this->idCategoria; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function getCategoria_idcategoria(){\n return $this->categoria_idcategoria;\n }", "public function getIdCategorie()\n {\n return $this->idCategorie;\n }", "public function getIdCategorie()\n {\n return $this->idCategorie;\n }", "public function getCategorias_id(){\n return $this->categorias_id;\n }", "public function getCategorieId()\n {\n return $this->categorieId;\n }", "public function getId_categorie()\n {\n return $this->id_categorie;\n }", "public function getidcategorias()\n {\n return $this->idcategorias;\n }", "public function getCategoriaID($id)\n {\n $stmt = Conexion::conectar()->prepare('SELECT *from categorias where idCategoria=:id');\n $stmt->bindParam(\":id\",$id);\n $stmt->execute();\n $resultado=$stmt->fetch();\n return $resultado;\n //return $resultado;\n }", "public function getCategorie_id()\n {\n return $this->categorie_id;\n }", "public function getIdCategory(){\n\t\treturn $this->idCategory;\t\n\t}", "public function categoria($id)\r\n\t{\r\n\t\treturn $id;\r\n }", "public static function getCatData($idCategoria=''){\n if($idCategoria!=''){\n $id_empresa = decode( sessionVar('_iE') );\n $sql = new Sql();\n $res = $sql->select('SELECT * FROM servicos_categorias \n WHERE id_empresa = :id_empresa\n AND id_categoria = :id_categoria',array(':id_empresa'=> $id_empresa, ':id_categoria'=>$idCategoria ));\n if(count($res)>0){\n return $res;\n }else{\n return 0;\n }\n }else{\n return false;\n }\n }", "public function getCategoriaID()\n {\n return is_null($this->e_id_categoria) ? \"NULL\":$this->e_id_categoria;\n }", "public function categorie_id()\n {\n return $this->_categorie_id;\n }", "public function getCategid()\n {\n return $this->categid;\n }", "public function getCategorie();", "public function getCategoria()\n {\n return $this->categoria;\n }", "public function getCategoria()\n {\n return $this->categoria;\n }", "public function getCategoria()\n {\n return $this->categoria;\n }", "public function getIdcategory()\n {\n return $this->idcategory;\n }", "function category($id) {\n\treturn $_ENV['dbi']->getfield('categoriess','category','cid',$id);\n}", "public function getId_category()\n {\n return $this->id_category;\n }", "public function getIdCategory()\n {\n return $this->idCategory;\n }", "function get_categoria($id){\n\t\t$sql=\"SELECT nombre_cat FROM categoria WHERE id_cat='$id'\";\n\t\t$consulta=mysql_query($sql) or die(mysql_error());\n\t\t$resultado=mysql_fetch_array($consulta);\n\n\t\treturn $resultado['nombre_cat'];\n\t}", "public function getCategoria()\n\t{\n\t\treturn $this->categoria;\n\t}", "public function getCategoria()\n\t{\n\t\treturn $this->categoria;\n\t}", "function get_categoria($id){\t\n\t\t$sql=\"SELECT nombre_cat FROM categoria WHERE id_cat='$id'\";\n\t\t$consulta=mysql_query($sql) or die(mysql_error());\n\t\t$resultado=mysql_fetch_array($consulta);\n\n\t\treturn $resultado['nombre_cat'];\n\t}", "function get_categoria($id){\t\n\t\t$sql=\"SELECT nombre_cat FROM categoria WHERE id_cat='$id'\";\n\t\t$consulta=mysql_query($sql) or die(mysql_error());\n\t\t$resultado=mysql_fetch_array($consulta);\n\n\t\treturn $resultado['nombre_cat'];\n\t}", "function afficherCategorieC($id){\n $sql=\"SElECT * From category where cat_id='$id'\";\n $db = config::getConnexion();\n try{\n $liste=$db->query($sql);\n foreach($liste as $cat){\n return $cat;\n }\n }\n catch (Exception $e){\n die('Erreur: '.$e->getMessage());\n }\t\n}", "function Categorias($id)\n{\n \t$cnn = new Conexion();\n\t$con = $cnn->conexionMysql();\n\t$estado=\"Activo\";\n\t$catalogo=\"\";\n\t$sql = \"SELECT categoria.descripcion FROM categoria INNER JOIN producto on producto.idCategoria=categoria.idCategoria where producto.idProducto='$id'\";\n\tmysqli_select_db($con,\"sistemaferreteria\");\n\t\t$consulta1 = $con->query($sql);\n\t\t$fila=$consulta1->fetch_assoc();\n\t\t$catalogo= $fila[\"descripcion\"];\n\t\t$consulta1->free();\n\t$con->close();\n\treturn $catalogo;\n}" ]
[ "0.8094337", "0.78566027", "0.78566027", "0.78136617", "0.7801627", "0.7763493", "0.7751448", "0.76433504", "0.7544199", "0.7500679", "0.7462095", "0.74546975", "0.7450484", "0.7380513", "0.732361", "0.7315272", "0.7303662", "0.7303662", "0.7303662", "0.7243343", "0.722876", "0.7214753", "0.72139966", "0.72081506", "0.72055453", "0.72055453", "0.717683", "0.717683", "0.70509154", "0.69526887" ]
0.8272523
1
Set the value of idCategoria
public function setIdCategoria($idCategoria) { $this->idCategoria = $idCategoria; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function setCategoryId($id){\n $this->category_id = $id;\n }", "public function getIdCategoria()\n {\n return $this->idCategoria;\n }", "public function getIdCategoria()\n {\n return $this->idCategoria;\n }", "public function getIdCategoria()\n {\n return $this->idCategoria;\n }", "public function setIdCategory($id_category)\r\n {\r\n $this->id_category = $id_category;\r\n }", "public function getCategoria_idcategoria(){\n return $this->categoria_idcategoria;\n }", "public function editarCategoria($id)\n {\n\n }", "function category($id) {\n\t\t$this->categories[] = intval($id);\n\t}", "public function setCategoria_idcategoria($categoria_idcategoria){\n $this->categoria_idcategoria = $categoria_idcategoria;\n }", "public function setCategoryId($value){\n\t\t$this->categoryId = $value;\n\t}", "public function setIdCategoria($idCategoria)\n {\n $this->idCategoria = $idCategoria;\n\n return $this;\n }", "public function getCategorieId()\n {\n return $this->categorieId;\n }", "public function getIdCategorie()\n {\n return $this->idCategorie;\n }", "public function getIdCategorie()\n {\n return $this->idCategorie;\n }", "function modifyCategory($idCategory){\r\n\t}", "public function categoria($id)\r\n\t{\r\n\t\treturn $id;\r\n }", "public function setCategoria($categoria)\n {\n $possibiCategorie = ['casse', 'cuffie', 'microfoni', 'mouse', 'tastiera', 'monitor'];\n parent::setCategoria($categoria);\n if (in_array($categoria = $categoria, $possibiCategorie)) {\n $this->categoria = $categoria;\n } else {\n die('categoria non riconosciuta');\n }\n }", "public function getCategorias_id(){\n return $this->categorias_id;\n }", "public function getId_categorie()\n {\n return $this->id_categorie;\n }", "public function setId_categorie($id_categorie)\n {\n $this->id_categorie = $id_categorie;\n\n return $this;\n }", "public function getCategorie_id()\n {\n return $this->categorie_id;\n }", "public function getidcategorias()\n {\n return $this->idcategorias;\n }", "public function setCategoria($categoria)\n {\n $this->categoria = $categoria;\n }", "public function getCategoriaID()\n {\n return is_null($this->e_id_categoria) ? \"NULL\":$this->e_id_categoria;\n }", "public function categorie_id()\n {\n return $this->_categorie_id;\n }", "public function setIdCategorie($idCategorie)\n {\n $this->idCategorie = $idCategorie;\n\n return $this;\n }", "public function setIdCategorie($idCategorie)\n {\n $this->idCategorie = $idCategorie;\n\n return $this;\n }", "function editar_categoria(){\n\t\t$this->accion=\"Editando Datos de Categoría\";\n\t\tif (isset($_POST['envio']) && $_POST['envio']==\"Guardar\" && isset($_GET['id']) && $_GET['id']!=\"\"){\n\t\t\t$id=$_GET['id'];\n\t\t\t$this->asignar_valores();\n\t\t\t$sql=\"SELECT * FROM categoria WHERE nombre_cat='$this->nombre' AND id_cat!='$id'\";\n\t\t\t$consulta=mysql_query($sql) or die(mysql_error());\n\t\t\tif($resultado=mysql_fetch_array($consulta)){\n\t\t\t\t$this->mensaje=1;\n\t\t\t}else{\n\t\t\t\t$sql=\"UPDATE categoria SET nombre_cat='$this->nombre', etiqueta_cat='$this->etiqueta', prioridad_cat='$this->prioridad', padre_cat='$this->padre' WHERE id_cat='$id'\";\n\t\t\t\t$consulta=mysql_query($sql) or die(mysql_error());\n\t\t\t\theader(\"location:/admin/categoria/\");\n\t\t\t}\n\t\t}else{\n\t\t $this->mostrar_categoria();\n\t\t}\n\t}", "function modificar_nom_categoria(){\n $conexion = Conexion();\n $sql = \"UPDATE tbl_productos SET fk_categoria = '$this->fk_categoria' WHERE sku = '$this->sku';\";\n $conexion->query($sql);\n echo\"<script type=\\\"text/javascript\\\">alert('Categoria modificada'); window.location='../Vista/Productos.php'; </script>\";\n exit();\n }", "public function setCategorie_id($_categorie_id)\n {\n $this->_categorie_id = $_categorie_id;\n return $this;\n }" ]
[ "0.7156885", "0.7087287", "0.7087287", "0.7087287", "0.70269156", "0.6897506", "0.68381107", "0.6794829", "0.67809826", "0.67531693", "0.6743569", "0.66744053", "0.6645798", "0.6645798", "0.66042596", "0.6592769", "0.6587341", "0.6581015", "0.656691", "0.6461024", "0.6459431", "0.6455213", "0.6446361", "0.6397873", "0.6362781", "0.63548464", "0.63548464", "0.6350337", "0.6323676", "0.629088" ]
0.8215176
1
Access Public Return entire form HTML for PayPal, but not include form closing tag
public function getHtml(){ # Check for PayPal ID or an email address associated with PayPal account if(!$this->get('business')){ echo 'Need to set PayPal ID to the variable "business".<br>'; } # Prepare for form opening if($this->sandbox == true) $url = PAYPAL_SANDBOX_SUBMIT_URL; else $url = PAYPAL_SUBMIT_URL; $this->html .= "<form name=\"{$this->name}\" action=\"{$url}\" method=\"post\""; if($this->openInNewWindow) $this->html .= " target=\"_blank\""; $this->html .= ">\n"; foreach( $this->variables as $key => $value ){ if( $value !== "" ){ $id = 'pp-'.str_replace('_', '-', $key); $this->html .= "<input type=\"hidden\" id=\"$id\" name=\"{$key}\" value=\"{$value}\" />\n"; } } $this->html .= $this->getCartItemsHtml(); return $this->html; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "function payment_form_html()\n\t{\n\t\treturn \"\";\n\t}", "public function get_button() {\n\t\t$form = '';\n\n\t\tif($this->timeout != false) {\n\t\t\t$form .= '<script type=\"text/javascript\">';\n\t\t\t$form .= \"addEvent(window, 'load', function() { setTimeout(\\\"document.forms['paypal_form'].submit()\\\", \" . $this->timeout*1000 . \");})\";\n\t\t\t$form .= '</script>';\n\t\t}\n\n\t\t$form .= '<form method=\"post\" name=\"paypal_form\" id=\"paypal_form\" action=\"'.$this->paypal_url.'\">'.\"\\n\";\n\n\t\tif($this->encrypt) {\n\t\t\t$form .= $this->get_button_encrypted();\n\t\t} else {\n\t\t\t$form .= $this->get_button_plain();\n\t\t}\n\n\t\tif($this->button) {\n\t\t\t$form .= '<input type=\"submit\" value=\"'.$this->button.'\"/>'.\"\\n\";\n\t\t}\n\n\t\t$form .= '</form>';\n\n\t\treturn $form;\n\t}", "public function generateFormClose() {\n\t\t$form = '';\n\t\t// add hidden fields\n\t\t$hidden_fields = $this->getHiddenFields();\n\t\tforeach ( $hidden_fields as $field => $value ) {\n\t\t\t$form .= Html::hidden( $field, $value );\n\t\t}\n\n\t\t$form .= Xml::closeElement( 'form' ); // close form 'payment'\n\t\t$form .= $this->generateDonationFooter();\n\t\t$form .= Xml::closeElement( 'td' );\n\t\t$form .= Xml::closeElement( 'tr' );\n\t\t$form .= Xml::closeElement( 'table' );\n\t\treturn $form;\n\t}", "function build_form() {\r\n\t\t//GET方式传递\r\n $sHtml = \"<form id='alipaysubmit' name='alipaysubmit' action='\".$this->gateway.\"_input_charset=\".$this->parameter['_input_charset'].\"' method='get'>\";\r\n while (list ($key, $val) = each ($this->parameter)) {\r\n $sHtml.= \"<input type='hidden' name='\".$key.\"' value='\".$val.\"'/>\";\r\n }\r\n\r\n $sHtml = $sHtml.\"<input type='hidden' name='sign' value='\".$this->mysign.\"'/>\";\r\n $sHtml = $sHtml.\"<input type='hidden' name='sign_type' value='\".$this->sign_type.\"'/>\";\r\n\t\t$sHtml = $sHtml . \"<script>document.forms['alipaysubmit'].submit();</script>\";\r\n\t\t//submit按钮控件请不要含有name属性\r\n // $sHtml = $sHtml.\"<input type='submit' value='正在跳转到支付宝'></form>\";\r\n\r\n\t\t//$sHtml = $sHtml.\"<script>document.forms['alipaysubmit'].submit();</script>\";\r\n\r\n return $sHtml;\r\n }", "public function transactionGetForm ()\n {\n return '';\n }", "public function getHTML() {\n\t\t return $this->form['form'];\n\t }", "protected function _displayForm() {\n $html = '';\n $html .= $this->_getFormHtml($_SERVER['REQUEST_URI'], 'post', $this->_initFormFields());\n return $html;\n }", "function paypal_auto_form(){\r\r\n\t\t// a form with hidden elements which is submitted to paypal via the \r\r\n\t\t// BODY element's onLoad attribute.\r\r\n\t\t$this->button('Click here if you\\'re not automatically redirected...');\r\r\n\r\r\n\t\techo '<html>' . \"\\n\";\r\r\n\t\techo '<head><title>Processing Payment...</title></head>' . \"\\n\";\r\r\n\t\techo '<body style=\"text-align:center;\" onLoad=\"document.forms[\\'paypal_auto_form\\'].submit();\">' . \"\\n\";\r\r\n\t\techo '<p style=\"text-align:center;\">Please wait, your order is being processed and you will be redirected to the PayPal website.</p>' . \"\\n\";\r\r\n\t\techo $this->paypal_form('paypal_auto_form');\r\r\n\t\techo '</body></html>';\r\r\n\t}", "private function startFormTag(): string\n {\n $html = \"<form name='{$this->id}' method='{$this->method}' action='\"\n . $this->url->makeUrl($this->actionPage) . \"' \";\n\n $html .= $this->getGlobalAttributes();\n\n if ($this->autocomplete) {\n $html .= 'autocomplete=\"on\" ';\n } else {\n $html .= 'autocomplete=\"off\" ';\n }\n\n if ($this->openInNewPage) {\n $html .= 'target=\"_blank\" ';\n }\n if ($this->enctype != '') {\n $html .= \"enctype='{$this->enctype}' \";\n }\n\n $html .= $this->getGlobalEventAttributesHtml();\n\n $html .= '>';\n\n return $html;\n }", "function get_html(){\n\t\t// Adding id to the form\n\t\t$id = ' id=\"' . $this->id . '\"';\n\t\t\n\t\t// Adding method to the form\n\t\t$method = ' method=\"' . $this->method . '\"';\n\t\t\n\t\t$html = '<form' . $id . $method . ' action=\"' . $this->action . '\" name=' . $this->name . '>';\n\t\t\n\t\t$html = apply_filters( 'tk_form_start_' . $this->id, $html );\n\t\t\n\t\t// Adding elements to form\n\t\tforeach( $this->elements AS $element ){\n\t\t\t$tkdb = new TK_Display();\n\t\t\t$html.= $tkdb->get_html( $element );\n\t\t\tunset( $tkdb );\n\t\t}\n\t\t\n\t\t$html = apply_filters( 'tk_form_end_' . $id, $html );\n\t\t\t\t\n\t\t$html.='</form>';\n\t\t\n\t\treturn $html;\n\t}", "protected function generateForm() {\n $this->context->smarty->assign( [\n 'action' => $this->context->link->getModuleLink( $this->name, 'validation', [], true ),\n ] );\n\n return $this->context->smarty->fetch( 'module:twocheckout/views/templates/hook/payment_options.tpl' );\n }", "public function makeSimpleForm($data){\n $orderPayment = [\n 'order_id' => $data['order_id'],\n 'payment_id' => \"2\",\n 'operation_code' => date('ymdHis')\n ];\n\n $orderPayments = $this->ordersPayments;\n $orderPayments->create($orderPayment);\n\n $html = \"<form name='paypal_form' action='\".$this->getPaypalUrl().\"' method='POST' id='paypal_form'>\n <input type='hidden' name='cmd' value='_xclick'>\n <input type='hidden' name='bn' value='\".env('PAYPAL_BUSINESS_NAME').\"' />\n <input type='hidden' name='business' value='\".env('PAYPAL_USER').\"'>\n <input type='hidden' name='image_url' value='\".env('PAYPAL_LOGO').\"'/>\n <input type='hidden' name='item_name' value='Pedido \".$data['ref'].\"'>\n <input type='hidden' name='custom' value='\".$orderPayment['operation_code'].\"'>\n <input type='hidden' name='currency_code' value='EUR'>\n <input type='hidden' name='amount' value='\".$data['total'].\"'>\n <input type='hidden' name='return' value='\".route('payments.paypal.ok').\"' />\n <input type='hidden' name='cancel_return' value='\".route('payments.paypal.ko').\"' />\n <input type='hidden' name='notify_url' value='\".route('payments.paypal.response').\"'>\n </form>\n <script>document.paypal_form.submit()</script>\";\n return $html;\n }", "private function getContent1415()\n\t\t{\n\t\t\t$output = '<h2>'.$this->displayName.' '.$this->version.'</h2>';\n\n\t\t\t$output .= '<form method=\"post\" action=\"'.$_SERVER['REQUEST_URI'].'\" enctype=\"multipart/form-data\">\n\t\t\t<fieldset>\n\t\t\t\t<legend><img src=\"'.$this->_path.'logo.gif\" alt=\"\" title=\"\" /> '.$this->l('Virtual POS Settings').'</legend>\n \t\t\t\t<div id=\"items\">';\n\n\t\t\t$sandbox_mode = Configuration::get('OBSREDSYS_SANDBOX');\n\t\t\t$sandbox_test = '';\n\t\t\t$sandbox_prod = '';\n\t\t\tif ($sandbox_mode == '1')\n\t\t\t\t$sandbox_test = 'selected';\n\t\t\t\telse\n\t\t\t\t\t$sandbox_prod = 'selected';\n\n\t\t\t\t\t$output .= '\n \t \t\t\t<div style=\"clear:both\">\n\t\t\t\t<label>'.$this->l('Environment').'</label>\n\t\t\t\t<div class=\"margin-form\" style=\"padding-left:0\">\n\t\t\t\t\t<select name=\"redsys_sandbox\" >\n\t\t\t\t\t\t<option value=\"1\" '.$sandbox_test.'>'.$this->l('Test Simulator').'</option>\n\t\t\t\t\t\t<option value=\"0\" '.$sandbox_prod.'>'.$this->l('Production').'</option>\n\t\t\t\t\t</select> &nbsp;'.$this->l('Remember that once in production may not return to the test').'\n\t\t\t\t\t<p style=\"clear: both\"></p>\n\t\t\t\t</div>';\n\t\t\t\t\t$output .= '\n \t \t\t\t<div style=\"clear:both\">\n\t\t\t\t\t<label>'.$this->l('Merchant Code (FUC)').'</label>\n\t\t\t\t\t<div class=\"margin-form\" style=\"padding-left:0\">\n\t\t\t\t\t\t<input type=\"text\" name=\"redsys_merchant_code\" size=\"22\" maxlength=\"9\" value=\"'.Configuration::get('OBSREDSYS_MERCHANT_CODE').'\" />\n\t\t\t\t\t\t&nbsp;'.$this->l('Data provided by your bank').'\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n \t \t\t\t<div style=\"clear:both\">\n\t\t\t\t\t<label>'.$this->l('Merchant Name').'</label>\n\t\t\t\t\t<div class=\"margin-form\" style=\"padding-left:0\">\n\t\t\t\t\t\t<input type=\"text\" name=\"redsys_merchant_name\" size=\"22\" maxlength=\"25\" value=\"'.Configuration::get('OBSREDSYS_MERCHANT_NAME').'\" />\n\t\t\t\t\t\t&nbsp;'.$this->l('Data to display in the form of payment').'\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n \t \t\t\t<div style=\"clear:both\">\n\t\t\t\t\t<label>'.$this->l('Terminal number').'</label>\n\t\t\t\t\t<div class=\"margin-form\" style=\"padding-left:0\">\n\t\t\t\t\t\t<input type=\"text\" name=\"redsys_terminal_number\" size=\"22\" maxlength=\"2\" value=\"'.Configuration::get('OBSREDSYS_TERMINAL_NUMBER').'\" />\n\t\t\t\t\t\t&nbsp;'.$this->l('Data provided by your bank').'\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n \t \t\t\t<div style=\"clear:both\">\n\t\t\t\t\t<label>'.$this->l('Merchant Encryption key').'</label>\n\t\t\t\t\t<div class=\"margin-form\" style=\"padding-left:0\">\n\t\t\t\t\t\t<input type=\"text\" name=\"redsys_merchant_key\" size=\"22\" maxlength=\"25\" value=\"'.Configuration::get('OBSREDSYS_MERCHANT_KEY').'\" />\n\t\t\t\t\t\t&nbsp;'.$this->l('Data provided by your bank').'\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n \t \t\t\t';\n\t\t\t\t\t$output .= '\n\t\t\t\t<div style=\"clear:both\">\n\t\t\t\t\t<label>'.$this->l('Payment types accepted').'</label>\n\t\t\t\t\t<div class=\"margin-form\" style=\"padding-left:0\">\n\t\t\t\t\t\t<select name=\"payment_type\" >\n\t\t\t\t\t\t\t\t<option value=\"C\" '.(Configuration::get('OBSREDSYS_PAYMENT_TYPE') == 'C'?'selected':'').'>'.$this->l('Only credit card').'</option>\n\t\t\t\t\t\t\t\t<option value=\"R\" '.(Configuration::get('OBSREDSYS_PAYMENT_TYPE') == 'R'?'selected':'').'>'.$this->l('Payment by Transfer (only if you have this payment method active)').'</option>\n\t\t\t\t\t\t\t\t<option value=\"D\" '.(Configuration::get('OBSREDSYS_PAYMENT_TYPE') == 'D'?'selected':'').'>'.$this->l('Debit (only if you have this payment method active)').'</option>\n\t\t\t\t\t\t\t\t<option value=\"T\" '.(Configuration::get('OBSREDSYS_PAYMENT_TYPE') == 'T'?'selected':'').'>'.$this->l('Credit card + IUPAY').'</option>\n\t\t\t\t\t\t\t</select>\n\t\t\t\t\t</div>\n\t\t\t\t<div style=\"clear:both\">\n\t\t\t\t\t<label>'.$this->l('Currency').'</label>\n\t\t\t\t\t<div class=\"margin-form\" style=\"padding-left:0\">\n\t\t\t\t\t\t<select name=\"redsys_currency\" >\n\t\t\t\t\t\t\t\t<option value=\"978\" '.(Configuration::get('OBSREDSYS_CURRENCY') == '978'?'selected':'').'>'.$this->l('Euro').'</option>\n\t\t\t\t\t\t\t\t<option value=\"840\" '.(Configuration::get('OBSREDSYS_CURRENCY') == '840'?'selected':'').'>'.$this->l('Dollar').'</option>\n\t\t\t\t\t\t\t\t<option value=\"826\" '.(Configuration::get('OBSREDSYS_CURRENCY') == '826'?'selected':'').'>'.$this->l('Pound Sterling').'</option>\n\t\t\t\t\t\t</select>\n\t\t\t\t\t</div>\n \t \t\t</div>\n\t\t\t\t</div>\n\t\t\t\t</fieldset>';\n\n\t\t\t\t\t/*$host = (isset($_SERVER['HTTP_X_FORWARDED_HOST']) ? $_SERVER['HTTP_X_FORWARDED_HOST'] : $_SERVER['HTTP_HOST']);*/\n\n\t\t\t\t\t$output .= '<p style=\"clear: both\"></p>';\n\n\t\t\t\t\t$output .= '<fieldset>\n \t \t<legend><img src=\"../img/admin/manufacturers.gif\" alt=\"\" title=\"\" /> '.$this->l('Advanced Settings').'</legend>\n\n \t \t<div style=\"clear:both\">\n\t\t\t\t\t<label>'.$this->l('Payment form style').'</label>\n\t\t\t\t\t<div class=\"margin-form\" style=\"padding-left:0\">\n\t\t\t\t\t\t<select name=\"redsys_show_as_iframe\" >\n\t\t\t\t\t\t\t<option value=\"1\" '.(Configuration::get('OBSREDSYS_SHOW_AS_IFRAME') == 1?'selected':'').'>'.$this->l('iFrame / Integrated').'</option>\n\t\t\t\t\t\t\t<option value=\"0\" '.(Configuration::get('OBSREDSYS_SHOW_AS_IFRAME') != 1?'selected':'').'>'.$this->l('New Blank Page').'</option>\n\t\t\t\t\t\t</select>\n\t\t\t\t\t\t<p style=\"clear: both\"></p>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t<div style=\"clear:both\">\n\t\t\t<label>'.$this->l('iFrame Width').'</label>\n\t\t\t<div class=\"margin-form\" style=\"padding-left:0\">\n\t\t\t\t<input type=\"text\" name=\"redsys_iframe_width\" size=\"6\" maxlength=\"3\" value=\"'.Configuration::get('OBSREDSYS_IFRAME_WIDTH').'\" />\n\t\t\t\t&nbsp;'.$this->l('pixels (only for iFrame/Integrated option)').'\n\t\t\t\t<p style=\"clear: both\"></p>\n\t\t\t</div>\n\t\t</div>\n\n\t\t<div style=\"clear:both\">\n\t\t\t<label>'.$this->l('Clear the cart if fails to pay').' </label>\n\t\t\t <div class=\"margin-form\" style=\"padding-left:0\">\n\t\t\t \t<label class=\"t\" for=\"clear_cart_on\"><img src=\"../img/admin/enabled.gif\" alt=\"'.$this->l('Yes').'\" title=\"'.$this->l('Yes').'\" /></label>\n\t\t\t\t\t\t<input type=\"radio\" name=\"clear_cart\" id=\"clear_cart_on\" value=\"1\"'.(Configuration::get('OBSREDSYS_CLEAR_CART') ? ' checked=\"checked\"' : '').' />\n\t\t\t\t\t\t<label class=\"t\" for=\"clear_cart_off\"><img src=\"../img/admin/disabled.gif\" alt=\"'.$this->l('No').'\" title=\"'.$this->l('No').'\" style=\"margin-left: 10px;\" /></label>\n\t\t\t\t\t\t<input type=\"radio\" name=\"clear_cart\" id=\"clear_cart_on\" value=\"0\" '.(!Configuration::get('OBSREDSYS_CLEAR_CART') ? 'checked=\"checked\"' : '').'/>\n\t\t\t\t\t\t&nbsp;'.$this->l('If you disable this option, the order will not be generated in state \"Error in payment\" and the cart will remain intact').'\n\t\t\t </div>\n\n \t \t</fieldset>';\n\n\t\t\t\t\t$output .= ' <div class=\"margin-form clear\">\n\t\t\t\t\t<div class=\"clear pspace\"></div>\n\t\t\t\t\t<div class=\"margin-form\">\n\t\t\t\t\t\t <input type=\"submit\" name=\"submitUpdate\" value=\"'.$this->l('Save').'\" class=\"button\" />\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t\t</form>';\n\n\t\t\t\t\treturn $output.'<fieldset><legend>'.$this->l('Bank Notifications').'</legend>'.$this->_getNotifications().'</fieldset><br/>';\n\t\t}", "function outputPayPal()\n{\n\tglobal $strSign;\n\n\t$arrMail['Content'] = \"\";\n\t$arrMail['Content'] .= parseContent(\"transaction_subject\", \"Artikel: ##\\n\\n\", \"post\");\n\t$arrMail['Content'] .= parseContent(\"txn_id\", \"Transaktions-ID: ##\\n\\n\", \"post\");\n\t$arrMail['Content'] .= parseContent(\"payment_date\", \"Zeitpunkt: ##\\n\\n\", \"post\");\n\t$arrMail['Content'] .= parseContent(\"mc_gross\", \"Summe: ## \", \"post\");\n\t$arrMail['Content'] .= parseContent(\"mc_currency\", \"##\\n\\n\", \"post\");\n\t$arrMail['Content'] .= parseContent(\"payment_status\", \"Zahlungsstatus: ##\\n\\n\", \"post\");\n\n\t$strMailContent = nl2br( $arrMail['Content'] );\n\n\t$strOutput = \"\";\n\n\tif ( $GLOBALS['config']['orderform']['show_form_title'] )\n\t{\n\t\t$stroutput .= sprintf('<h2 class=\"line\">%s</h2>', post('Formulartitel') );\n\t}\n\n\t$strOutput = \"\n\t\t<h2>Vielen Dank für Ihre Bestellung!</h2>\n\n\t\t<p>\n\t\t\tDer Artikel wurde mit PayPal bezahlt.<br />\n\t\t\t<br />\n\t\t\t<span class=\\\"quote\\\">\n\t\t\t<strong>Transaktionsdaten:</strong><br />\n\t\t\t<br />\n\t\t\t{$strMailContent}\n\t\t\t</span>\n\t\t\t<br />\n\t\t\tHerzlichen Dank für Ihre Bestellung.<br />\n\t\t\tWir kümmern uns darum, daß Sie Ihre Bestellung so zügig wie möglich erhalten.<br />\n\t\t\t<br />\n\t\t\tMit besten Grüßen<br />\n\t\t\t{$GLOBALS['company']['owner']}<br />\n\t\t\t{$strSign}<br />\n\t\t</p>\n\n\t\t<p style=\\\"text-align: center;\\\">\n\t\t\t<a title=\\\"zurück\\\" href=\\\"\".post('Umleitung').\"\\\">zurück zur Startseite</a>\n\t\t</p>\\n\";\n\n return $strOutput;\n\n}", "function getSubscriptionFormHTMLCode()\r\n\t\t{\r\n\t\t\t/* Setup POST parameters - Begin */\r\n\t\t\t$ArrayPostParameters = array();\r\n\t\t\t$ArrayPostParameters[] = \"Command=ListIntegration.GenerateSubscriptionFormHTMLCode\";\r\n\t\t\t$ArrayPostParameters[] = \"ResponseFormat=JSON\";\r\n\t\t\t$ArrayPostParameters[] = \"SessionID=\".$_POST['SessionID'];\r\n\t\t\t$ArrayPostParameters[] = \"SubscriberListID=\".$_POST['SubscriberListID'];\r\n\t\t\t$ArrayPostParameters[] = \"CustomFields=\".$_POST['CustomFields'];\r\n\t\t\t/* Setup POST parameters - End */\r\n\t\t\t\r\n\t\t\t$response = $this->_postToRemoteURL($_POST['ar1_url'].\"/api.php?\", $ArrayPostParameters);\r\n\t\t\t\r\n\t\t\t\r\n\t\t\techo $response[1];\r\n\t\t\texit;\r\n\t\t}", "public function bulk_pay_form() {\n\n\t\tif( ! affiliate_wp_paypal()->has_api_credentials() ) {\n\t\t\treturn;\n\t\t}\n?>\n\t\t<script>\n\t\tjQuery(document).ready(function($) {\n\t\t\t// Show referral export form\n\t\t\t$('.affwp-referrals-paypal-payout-toggle').click(function() {\n\t\t\t\t$('.affwp-referrals-paypal-payout-toggle').toggle();\n\t\t\t\t$('#affwp-referrals-paypal-payout-form').slideToggle();\n\t\t\t});\n\t\t\t$('#affwp-referrals-paypal-payout-form').submit(function() {\n\t\t\t\tif( ! confirm( \"<?php _e( 'Are you sure you want to payout referrals for the specified time frame via Paypal?', 'affwp-paypal-payouts' ); ?>\" ) ) {\n\t\t\t\t\treturn false;\n\t\t\t\t}\n\t\t\t});\n\t\t});\n\t\t</script>\n\t\t<button class=\"button-primary affwp-referrals-paypal-payout-toggle\"><?php _e( 'Bulk Pay via Paypal', 'affwp-paypal-payouts' ); ?></button>\n\t\t<button class=\"button-primary affwp-referrals-paypal-payout-toggle\" style=\"display:none\"><?php _e( 'Close', 'affwp-paypal-payouts' ); ?></button>\n\t\t<form id=\"affwp-referrals-paypal-payout-form\" class=\"affwp-gray-form\" style=\"display:none;\" action=\"<?php echo admin_url( 'admin.php?page=affiliate-wp-referrals' ); ?>\" method=\"post\">\n\t\t\t<p>\n\t\t\t\t<input type=\"text\" class=\"affwp-datepicker\" autocomplete=\"off\" name=\"from\" placeholder=\"<?php _e( 'From - mm/dd/yyyy', 'affwp-paypal-payouts' ); ?>\"/>\n\t\t\t\t<input type=\"text\" class=\"affwp-datepicker\" autocomplete=\"off\" name=\"to\" placeholder=\"<?php _e( 'To - mm/dd/yyyy', 'affwp-paypal-payouts' ); ?>\"/>\n\t\t\t\t<input type=\"text\" class=\"affwp-text\" name=\"minimum\" placeholder=\"<?php esc_attr_e( 'Minimum amount', 'affwp-paypal-payouts' ); ?>\"/>\n\t\t\t\t<input type=\"hidden\" name=\"affwp_action\" value=\"process_bulk_paypal_payout\"/>\n\t\t\t\t<input type=\"submit\" value=\"<?php _e( 'Process Payout via Paypal', 'affwp-paypal-payouts' ); ?>\" class=\"button-secondary\"/>\n\t\t\t\t<p><?php printf( __( 'This will send payments via Paypal for all unpaid referrals in the specified timeframe.', 'affwp-paypal-payouts' ), admin_url( 'admin.php?page=affiliate-wp-tools&tab=export_import' ) ); ?></p>\n\t\t\t</p>\n\t\t</form>\n<?php\n\t}", "function paypalForm($ref_id) {\n\n\t\t$paypalInfo = $this->getPaypalInfo();\n\n\t\t$form = '<html><body onLoad=\"document.paypal.submit()\">';\n\t\t$form.= '<form action=\"'.$paypalInfo['paypal_url'].'\" method=\"post\" name=\"paypal\" id=\"paypal\">';\n\t\t$form.= '<input type=\"hidden\" name=\"cmd\" value=\"_xclick\">';\n\t\t$form.= '<input type=\"hidden\" name=\"business\" value=\"'.$_REQUEST['business'].'\">';\n\t\t$form.= '<input type=\"hidden\" name=\"item_name\" value=\"'.$_REQUEST['item_name'].'\">';\n\t\t$form.= '<input type=\"hidden\" name=\"shipping\" value=\"'.($_REQUEST['quantity']*$_REQUEST['postage']).'\">';\n\t\t$form.= '<input type=\"hidden\" name=\"quantity\" value=\"'.$_REQUEST['quantity'].'\">';\n\t\t$form.= '<input type=\"hidden\" name=\"amount\" value=\"'.$_REQUEST['price'].'\">';\n\t\t$form.= '<input type=\"hidden\" name=\"currency_code\" value=\"'.CURRENCYCODE.'\">';\n\t\t$form.= '<input type=\"hidden\" name=\"item_number\" value=\"'.$_REQUEST['item_number'].'\">';\n\t\t$form.= '<input type=\"hidden\" name=\"StoreID\" value=\"'.$_REQUEST['StoreID'].'\"> ';\n\t\t$form.= '<input type=\"hidden\" name=\"custom\" value=\"'.$_REQUEST['StoreID'].','.$ref_id.','.$_SESSION['ShopID'].','.time().'\"> ';\n\t\t$form.= '<input type=\"hidden\" name=\"return\" value=\"'.$paypalInfo['paypal_siteurl'].'/product_activate.php\">';\n\t\t$form.= '<input type=\"hidden\" name=\"cancel_return\" value=\"'.$paypalInfo['paypal_siteurl'].'/product_activate.php\">';\n\t\t$form.= '<input type=\"hidden\" name=\"notify_url\" value=\"'.$paypalInfo['paypal_siteurl'].'/product_activate.php\">';\n\t\t$form.= '</form></body></html>';\n\t\treturn $form;\n\t}", "public function getHtmlFormRedirect ()\n {\n $form = new Varien_Data_Form();\n $form->setAction($this->getTargetURL())\n ->setId($this->getFormId())\n ->setName($this->getFormId())\n ->setMethod($this->getMethod())\n ->setUseContainer(true);\n foreach ($this->_getFormFields() as $field => $value) {\n $form->addField($field, 'hidden', array('name' => $field, 'value' => $value));\n }\n $html = $form->toHtml();\n $html.= '<script type=\"text/javascript\">document.getElementById(\"' . $this->getFormId() . '\").submit();</script>';\n return $html;\n }", "function submit_paypal_post() {\n // a form with hidden elements which is submitted to paypal via the \n // BODY element's onLoad attribute. We do this so that you can validate\n // any POST vars from you custom form before submitting to paypal. So \n // basically, you'll have your own form which is submitted to your script\n // to validate the data, which in turn calls this function to create\n // another hidden form and submit to paypal.\n \n // The user will briefly see a message on the screen that reads:\n // \"Please wait, your order is being processed...\" and then immediately\n // is redirected to paypal.\n\t $form_data = '';\n $form_data.= \"<html>\\n\";\n //$form_data.= \"<head><title>Processing Payment...</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"></head>\\n\";\n $form_data.= \"<body onLoad=\\\"document.forms['paypal_form'].submit();\\\">\\n\";\n $form_data.= \"<center><h2>\";\n $form_data.=\"Please wait, you will be redirected to the payment operator website to complete the transaction.\";\n\t $form_data.= \" </h2></center>\\n\";\n $form_data.= \"<form method=\\\"post\\\" name=\\\"paypal_form\\\" \";;\n $form_data.= \"action=\\\"\".$this->paypal_url.\"\\\">\\n\";\n\n foreach ($this->fields as $name => $value) {\n $form_data.= \"<input type=\\\"hidden\\\" name=\\\"$name\\\" value=\\\"$value\\\"/>\\n\";\n }\n\t $form_data.= '<input type=\"hidden\" name=\"cbt\" value=\"Continue >>\">';\n $form_data.= \"<center><br/><br/>\".lang('account_payment_IFnot_redirect_txt');\n $form_data.= \"If you are not automatically redirected within 15 seconds please click on the Continue button\";\n\t $form_data.= \"<br/><br/>\\n\";\n $form_data.= \"<input class=\\\"btn blue_btn\\\" type=\\\"submit\\\" value=\\\"\";\n\t $form_data.=\"Continue\";\n\t $form_data.=\"\\\"></center>\\n\";\n $form_data.= \"</form>\\n\";\n $form_data.= \"</body></html>\\n\";\n\t return $form_data;\n \n }", "function vt_payment_images_form() {\n\n\tob_start(); ?>\n\n\t<fieldset id=\"edd_cc_fields\" class=\"edd-veritrans-fields\">\n\t\t<p class=\"edd-veritrans-profile-wrapper\">\n\t\t\t<div>adadwadawdad</div>\t\n\t\t\t<img src= <?php echo '\"'.plugins_url( 'assets/logo/mandiri.png', __FILE__ ).'\"'; ?> alt=\"Mandiri\" style='width:64px; height:64px'>\n\t\t\t<img src=\"http://docs.veritrans.co.id/images/cc_icon.jpg\" alt=\"CC\">\n\t\t\t<div>dadd</div>\n\t\t\t<span class=\"edd-veritrans-profile-name\"><?php echo $profile['name']; ?></span>\n\t\t</p>\n\n\t\t<div id=\"edd-veritrans-address-box\"></div>\n\t</fieldset>\n\n\t<?php\n\t$form = ob_get_clean();\n\techo $form;\n}", "function print_form() \n\t{\n\n\t\techo <<< END\n\n\t\t<form action = \"$_SERVER[PHP_SELF]\" method = \"post\" id = \"contact\">\n\t\t<div class = \"wrapper\">\n\n\t\t<div class = \"about\">\n\t\t<h2> Contact Us </h2>\n\t\t<p>\n\t\tDo you like to send us a message regarding what you feel about our service, have any comments or feedback, any suggestion for adding new content that may be useful for you and others, any suggestion to improve the quality of existing content, did you find any errors or bugs and want to inform us so that we can correct it, then please send us a mail. We would love to read all of your message. We will make sure that all the important emails will get responded. \n\t\t</p>\n\t\t</div>\n\t\t<div class = \"phpquestions\">\n\t\t<p>\n\t\t\t\t\n\t\tName<br/>\n\t\t<label><input type=\"text\" name=\"name\" size=\"35\"></label>\n\t\t<br/>\n\t\tEmail<br/>\n\t\t<label><input type=\"text\" name=\"email\" size=\"35\"></label>\n\t\t<br/>\n\t\tSubject<br/>\n\t\t<label><input type=\"text\" name=\"phone\" size=\"35\"></label>\n\t\t<br/>\n\t\tComments<br/>\n\t\t<label><textarea name=\"message\" rows=\"6\" cols=\"25\"></textarea></label>\n\t\t<br/>\n\t\t\n\t\t<input type=\"hidden\" name=\"stage\" value=\"process\">\n\t\t<input type=\"submit\" name=\"sumbit\" value=\"Submit\">\n\t\t<input type=\"reset\" value=\"Clear\">\n\n\t\t<p><strong>Location:</strong> Shop #53, Boudhnath Stupa, Kathmandu, Nepal</p>\n\t\t</div>\n\t\t</div>\n\t\t</form>\nEND;\n\t}", "function showPaypal(){\n if(isset($_SESSION['total_quantity']) && $_SESSION['total_quantity'] >= 1){\n\n $paypal = <<<DELIMETER\n \n <input type=\"image\" name=\"upload\"\n src=\"https://www.paypalobjects.com/en_US/i/btn/btn_buynow_LG.gif\"\n alt=\"PayPal - The safer, easier way to pay online\">\n \n DELIMETER;\n\n return $paypal;\n\n }\n }", "protected function generateForm()\n {\n $this->context->smarty->assign([\n 'action' => $this->context->link->getModuleLink($this->name, 'validation', [], true),\n ]);\n\n return $this->context->smarty->fetch('module:twocheckout/views/templates/hook/payment_options.tpl');\n }", "public function html(){\n\t\t$html = $this->getHtml();\n\t\t$html .= $this->button;\n\t\t$html .= \"\\n</form>\";\n\t\treturn $html;\n\t}", "function outputFullTaxExemptForm()\n {\n global $application;\n\n $show_form = modApiFunc('Settings','getParamValue','TAXES_PARAMS','ALLOW_FULL_TAX_EXEMPTS');\n\n if($show_form == DB_FALSE)\n {\n $retval = \"\";\n }\n else\n {\n $_template_tags = array('Local_FullTaxExemptStatus' => \"\",\n 'Local_FullTaxExemptCustomerInput' => \"\");\n\n $application->registerAttributes($_template_tags);\n $this->templateFiller = new TemplateFiller();\n $this->template = $application->getBlockTemplate('FullTaxExemptForm');\n $this->templateFiller->setTemplate($this->template);\n\n $retval = $this->templateFiller->fill(\"ClaimFullTaxExempt\");\n }\n return $retval;\n }", "protected function getBusinessWebsiteForm(){\r\n $aVars = array(\r\n 'help_caption' => _t('_emmetbytes_club_cover_help_business_website_caption'),\r\n 'input_name' => 'business_website',\r\n 'business_website_caption' => _t('_emmetbytes_club_cover_business_website_input_caption'),\r\n );\r\n return $this->_oTemplate->parseHTMLByName('ebytes_club_cover_business_website_form', $aVars);\r\n }", "private function getValidFormHtml()\n {\n return '\n <!DOCTYPE HTML>\n <html>\n <head>\n <meta charset=\"utf-8\">\n <title>Title</title>\n </head>\n <body>\n\n <form action=\"some\">\n <p><input type=\"radio\" name=\"parameter1\" value=\"val1\">val1<Br>\n <input type=\"radio\" name=\"parameter2\" value=\"val2\">val2<Br>\n <input type=\"radio\" name=\"parameter3\" value=\"val3\">val3</p>\n <p><input type=\"submit\"></p>\n </form>\n\n </body>\n </html>\n ';\n }", "public function paymenForm($affemail, $email, $item_name, $item_number, $item_cost, $item_download_url, $item_cancel_url, $sys_currency, $sys_locale, $sys_charset, $item_ipn_url, $ref,$aff, $ip, $salesletter) {\n\t# header() seems to cause session issues with PayPal\n\techo \"<html>\n\t<head>\n\t\t<title>\".$_ENV['lang['goto_paypal_title']'].\"</title>\n\t</head>\n\t<body>\n\t\t<p align=center>\n\t\t<table width=100% height=100%>\n\t\t\t<tr>\n\t\t\t\t<td align=center valign=center>\n\t\t\t\t\t<table width=420px cellpadding=5 style='border: 1px solid black; font-size: 12px;'>\n\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t<td><font face=verdana><p>\".$_ENV['lang['goto_paypal_explain']'].\"</p>\n\t\t\t\t\t\t\t<p>\".$_ENV['lang['goto_paypal_explain2']'].\"</p></font></td>\n\t\t\t\t\t\t</tr>\n\t\t\t\t\t</table></td>\n\t\t\t</tr>\n\t\t\t<tr>\n\t\t\t\t<td align=center valign=top height=50px><p align=center><font style='font-size: 12px;'>[\".$_ENV['lang['goto_paypal_affiliate']'].\" = $affemail]</font></p></td>\n\t\t\t</tr>\n\t\t</table></p>\n\t\t<form action=\\\"https://www.paypal.com/cgi-bin/webscr\\\" method=\\\"post\\\" id=paymentform>\n\t\t<input type=\\\"hidden\\\" name=\\\"cmd\\\" value=\\\"_xclick\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"business\\\" value=\\\"$email\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"item_name\\\" value=\\\"$item_name\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"item_number\\\" value=\\\"$item_number\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"amount\\\" value=\\\"$item_cost\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"no_shipping\\\" value=\\\"1\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"return\\\" value=\\\"$item_download_url\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"cancel_return\\\" value=\\\"$item_cancel_url\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"no_note\\\" value=\\\"1\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"shipping\\\" value=\\\"0.00\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"currency_code\\\" value=\\\"$sys_currency\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"lc\\\" value=\\\"$sys_locale\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"charset\\\" value=\\\"$sys_charset\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"bn\\\" value=\\\"PP-BuyNowBF\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"rm\\\" value=\\\"2\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"notify_url\\\" value=\\\"$item_ipn_url\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"cbt\\\" value=\\\"\".$_ENV['lang['return_button']'].\"\\\">\n\t\t<input type=\\\"hidden\\\" name=\\\"custom\\\" value=\\\"$ref|$aff|$ip||||$salesletter\\\">\n\t\t</form>\n\t\t\t\t<script language=javascript><!--\n\t\tsetTimeout('redir()', 5000);\n\n\t\tfunction redir() {\n\t\t\tdocument.getElementById('paymentform').submit();\n\t\t\t}\n\t\t\t\t--></script>\n\t\t\t</body>\n\t\t</html>\";\n }", "public function inner_html(){\n $html = $this->errors_box();\n foreach($this->opts['fields'] as $name => $field){\n $html .= $this->field($name, $field).'<br/>';\n }\n $html .= $this->submit('submit');\n return $html;\n }", "protected function generateApiForm()\n {\n\n // get style and remove newlines\n if (Configuration::get('TWOCHECKOUT_STYLE_DEFAULT_MODE')) {\n $style = trim(preg_replace('/\\s\\s+/', ' ', $this->getDefaultStyle()));\n } else {\n $style = trim(preg_replace('/\\s\\s+/', ' ', Configuration::get('TWOCHECKOUT_STYLE')));\n }\n $this->context->smarty->assign([\n 'action' => $this->context->link->getModuleLink($this->name, 'validation', [], true),\n 'sellerId' => Configuration::get('TWOCHECKOUT_SID'),\n 'style' => $style,\n 'script' => Media::getMediaPath(_PS_MODULE_DIR_ . $this->name . '/views/assets/js/twocheckout.js'),\n 'css' => Media::getMediaPath(_PS_MODULE_DIR_ . $this->name . '/views/assets/css/twocheckout.css'),\n 'spinner' => Media::getMediaPath(_PS_MODULE_DIR_ . $this->name . '/views/assets/images/spinner.gif'),\n ]);\n\n return $this->context->smarty->fetch('module:twocheckout/views/templates/front/payment_form.tpl');\n }" ]
[ "0.7912525", "0.65103245", "0.6466102", "0.6426234", "0.63881665", "0.6379835", "0.6358486", "0.6353552", "0.631822", "0.6284521", "0.6269061", "0.6267491", "0.62410027", "0.6238158", "0.6235409", "0.623167", "0.623124", "0.622782", "0.6208325", "0.6198682", "0.61875975", "0.6175043", "0.61564136", "0.6153604", "0.6142136", "0.61130965", "0.6109457", "0.6091331", "0.60802734", "0.60708576" ]
0.7505717
1
Construct our operation object. If our value is a string, and the operation is an equal operator, we want to make it a `LIKE` instead.
public function __construct($path, $operation, $value) { $this->computeIncludePath($path); $this->operation = (is_string($value) && $operation == "=") ? "LIKE" : $operation; $this->value = $value; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function operator() {\n return $this->getConditionOperator($this->operator == '=' ? 'LIKE' : 'NOT LIKE');\n }", "private function findOperator($value) {\n // LIKE\n if (substr($value, 0, 1) == '*') { return 'LIKE';\n // NOT LIKE\n } elseif (substr($value, 0, 2) == '!*') { return 'NOT LIKE';\n // >=\n } elseif (substr($value, 0, 2) == '>=') { return '>=';\n // <=\n } elseif (substr($value, 0, 2) == '<=') { return '<=';\n // >\n } elseif (substr($value, 0, 1) == '>') { return '>';\n // <\n } elseif (substr($value, 0, 1) == '<') { return '<';\n // !=\n } elseif (substr($value, 0, 2) == '!=') { return '!=';\n // NOT IN\n } elseif (substr($value, 0, 6) == 'NOT IN') { return 'NOT IN';\n // IN\n } elseif (substr($value, 0, 2) == 'IN') { return 'IN';\n // =\n } else return '=';\n }", "public function getOperatorCondition($field, $operator, $value)\n {\n switch ($operator) {\n case '!=':\n case '>=':\n case '<=':\n case '>':\n case '<':\n $selectOperator = sprintf('%s?', $operator);\n break;\n case '{}':\n case '!{}':\n if (preg_match('/^.*(category_id)$/', $field) && is_array($value)) {\n $selectOperator = ' IN (?)';\n } else {\n $selectOperator = ' LIKE ?';\n }\n if (substr($operator, 0, 1) == '!') {\n $selectOperator = ' NOT' . $selectOperator;\n }\n break;\n\n case '[]':\n case '![]':\n case '()':\n case '!()':\n $selectOperator = 'FIND_IN_SET(?,' . $this->_adapter->quoteIdentifier($field) . ')';\n if (substr($operator, 0, 1) == '!') {\n $selectOperator = 'NOT ' . $selectOperator;\n }\n break;\n\n default:\n $selectOperator = '=?';\n break;\n }\n $field = $this->_adapter->quoteIdentifier($field);\n\n if (is_array($value) && in_array($operator, array('==', '!=', '>=', '<=', '>', '<', '{}', '!{}'))) {\n $results = array();\n foreach ($value as $v) {\n $results[] = $this->_adapter->quoteInto(\"{$field}{$selectOperator}\", $v);\n }\n $result = implode(' AND ', $results);\n } elseif (in_array($operator, array('()', '!()', '[]', '![]'))) {\n if (!is_array($value)) {\n $value = array($value);\n }\n\n $results = array();\n foreach ($value as $v) {\n $results[] = $this->_adapter->quoteInto(\"{$selectOperator}\", $v);\n }\n $result = implode(in_array($operator, array('()', '!()')) ? ' OR ' : ' AND ', $results);\n } else {\n $result = $this->_adapter->quoteInto(\"{$field}{$selectOperator}\", $value);\n }\n return $result;\n }", "private function parseOperation($operation){\r\n\t\t$operation = trim(strtoupper(preg_replace(\"/(?<=\\\\w)(?=[A-Z])/\", \" $1\", $operation)));\r\n\r\n\t\t// update the query\r\n\t\t$this->rawSql .= \"{$operation} \";\r\n\t}", "protected function filterAllowedOperations(&$query)\n {\n switch ( $this->operation ) {\n case 'in':\n if ( is_array($this->value) ) {\n $query->whereIn($this->field_name, $this->value);\n }\n break;\n case 'not in':\n if ( is_array($this->value) ) {\n $query->whereNotIn($this->field_name, $this->value);\n }\n break;\n case 'like':\n if ( is_string($this->value) ) {\n $searchString = Str::lower($this->value);\n $query->whereRaw(\"LOWER($this->field_name) like '%$searchString%'\");\n }\n break;\n case 'search':\n if ( is_array($this->value) ) {\n foreach ( $this->value as $searchString ) {\n $searchString = Str::lower($searchString);\n $query->orWhereRaw(\"LOWER($this->field_name) like '%$searchString%'\");\n }\n }\n break;\n case 'scope':\n call_user_func_array(\n [ $query, $this->value ],\n is_array($this->operationParameters) ? $this->operationParameters : [ $this->operationParameters ]\n );\n break;\n default:\n $query->where($this->field_name, $this->operation, $this->getDateValue($this->value));\n\n }\n }", "public function addCondition($field, $value = '', $op = '==') {\n\n if (!in_array($op, self::$operators)) {\n throw new \\InvalidArgumentException('Invalid operator');\n }\n\n // Change boolean into a string value of the same name.\n if (is_bool($value)) {\n $value = $value ? 'true' : 'false';\n }\n\n // Construction condition statement based on operator.\n if (in_array($op, array('==', '!='))) {\n $this->conditions[] = $field . $op . '\"' . $value . '\"';\n }\n elseif ($op == 'guid') {\n $this->conditions[] = $field . '= Guid(\"' . $value . '\")';\n }\n else {\n $this->conditions[] = $field . '.' . $op . '(\"' . $value . '\")';\n }\n\n return $this;\n }", "public function matchPartial()\n {\n $newOperation = clone $this;\n $newOperation->value = (is_string($this->value)) ? \"%{$this->value}%\" : $this->value;\n return $newOperation;\n }", "public function __construct($domainStr, $op, $value)\n {\n\t\t$this->setDomain($domainStr);\n\t\t$this->setOperator($op);\n\t\t$this->setValue($value);\n }", "public function __construct($field, $value, $operator);", "function operator($op) {\n static $bin = array('+', '-', '*', '/', '%', '&', '|', '^', '>>', '<<', '&&', '||', 'and', 'or', 'xor');\n static $uno = array('_', '~', '!', 'not');\n static $fns = array();\n\n if(isset($fns[$op]))\n return $fns[$op];\n\n if(in_array($op, $bin)) {\n return $fns[$op] = create_function('$a,$b', \"return \\$a $op \\$b;\");\n }\n\n if(in_array($op, $uno)) {\n $fop = $op;\n if($op == '_') $fop = '-';\n if($op == 'not') $fop = '!';\n\n return $fns[$op] = create_function('$a', \"return $fop \\$a;\");\n }\n\n throw new ValueError('invalid operator', $op);\n\n}", "public function getOperatorCondition($field, $operator, $value)\n {\n\n // CORE PATCH: Check to see if this is an (), {}, !() or !{} query, it is comma separated and it is not an array.\n\n if ( in_array($operator, array('()', '{}', '!()', '!{}')) && !is_array($value) && strstr($value, ',') ) {\n $value = explode(',', $value);\n $value = array_map('trim', $value);\n }\n\n // END CORE PATCH\n\n // CORE PATCH: Fix for products with few assigned values form multieselect attribute in catalog rules, regexp in SQL because in product flat table multieselect values stored as coma separated\n\n if (strstr($field, 'cpf.')){\n\n $attribute_parse = explode('.', $field); // get attribute code ( attribute from cpf.attribute )\n\n $attribute = $attribute_parse[1];\n\n $attribute_type = Mage::getSingleton(\"eav/config\")->getAttribute('catalog_product', $attribute)->getFrontendInput();\n\n if (strstr($attribute_type, 'multiselect')){\n\n $attribute_values = implode('|', $value);\n\n $result_patched = '`cpf`.`'.$attribute.'` REGEXP \"(^|,)'.$attribute_values.'(,|$)\"';\n\n return $result_patched; // return SQL for avoid future SqlBuider processing\n }\n\n }\n\n // END CORE PATCH\n\n\n switch ($operator) {\n case '!=':\n case '>=':\n case '<=':\n case '>':\n case '<':\n $selectOperator = sprintf('%s?', $operator);\n break;\n case '{}':\n case '!{}':\n // CORE PATCH: Commented out the category_id matching since any array should use this select operator.\n if (/*preg_match('/^.*(category_id)$/', $field) &&*/ is_array($value)) {\n $selectOperator = ' IN (?)';\n } else {\n $selectOperator = ' LIKE ?';\n $value = '%' . $value . '%';\n }\n if (substr($operator, 0, 1) == '!') {\n $selectOperator = ' NOT' . $selectOperator;\n }\n break;\n\n case '()':\n $selectOperator = ' IN(?)';\n break;\n\n case '!()':\n $selectOperator = ' NOT IN(?)';\n break;\n\n default:\n $selectOperator = '=?';\n break;\n }\n $field = $this->_adapter->quoteIdentifier($field);\n\n if (is_array($value) && in_array($operator, array('==', '!=', '>=', '<=', '>', '<'))) {\n $results = array();\n foreach ($value as $v) {\n $results[] = $this->_adapter->quoteInto(\"{$field}{$selectOperator}\", $v);\n }\n $result = implode(' AND ', $results);\n } else {\n $result = $this->_adapter->quoteInto(\"{$field}{$selectOperator}\", $value);\n }\n\n return $result;\n }", "protected function operatorForWhere(\n string $key,\n string $operator,\n $value = null\n ): Closure {\n if (2 === func_num_args()) {\n $value = $operator;\n $operator = '=';\n }\n\n return function ($item) use ($key, $operator, $value) {\n $retrieved = data_get($item, $key);\n\n $strings = array_filter([$retrieved, $value,], function ($value) {\n return is_string($value)\n || (is_object($value) && method_exists($value, '__toString'));\n });\n\n if (2 >= count($strings)\n && 1 == count(array_filter([$retrieved, $value,], 'is_object'))) {\n return in_array($operator, ['!=', '<>', '!==',]);\n }\n\n switch ($operator) {\n case '!=':\n case '<>':\n return $retrieved != $value;\n case '<':\n return $retrieved < $value;\n case '>':\n return $retrieved > $value;\n case '<=':\n return $retrieved <= $value;\n case '>=':\n return $retrieved >= $value;\n case '===':\n return $retrieved === $value;\n case '!==':\n return $retrieved !== $value;\n case '=':\n case '==':\n default:\n return $retrieved == $value;\n }\n };\n }", "private function whereConversion(String $Key ,String $Operation ,String $Value) {\n // for where (or,and) operations\n if ( $Operation == \"=\" ){\n return [ \"$Key\"=> \"$Value\" ]; // SQL transform select * from table where 'key' = 'value' ; \n }elseif( $Operation == \"!=\" ) {\n return [ \"$Key\" => ['$ne' => \"$Value\" ] ]; // SQL transform select * from table where 'key' != 'value'\n }elseif($Operation == \"<=\"){\n return [ \"$key\" => [ '$lte' => \"$Value\" ] ]; // SQL transform select * from table where 'key' <= 'value'\n }elseif($Operation == \">=\"){\n return [ \"$key\" => [ '$gte' => \"$Value\" ] ]; // SQL transform select * from table where 'key' >= 'value'\n }elseif($Operation == \"<\"){\n return [ \"$key\" => [ '$lt' => \"$Value\" ] ]; // SQL transform select * from table where 'key' < 'value'\n }elseif($Operation == \">\"){\n return [ \"$key\" => [ '$gt' => \"$Value\" ] ]; // SQL transform select * from table where 'key' > 'value'\n }elseif( $Operation == \"like\" ) {\n if ( $Value[0] != \"%\" && substr( \"$Value\" , -1 ) ==\"%\" ) { \n return [ \"$Key\" => new Regex('^'. substr( $Value ,0,-1 ) .'.*$', 'i') ] ; // SQL transform select * from table where 'key' like 'value%' ; find begin with ? \n }elseif ( $Value[0] == \"%\" && substr( \"$Value\" , -1 ) != \"%\" ) {\n return [ \"$Key\" => new Regex('^.*'.substr( $Value ,1 ) .'$', 'i') ]; // SQL transform select * from table where 'key' like '%value' ; find end with ?\n }elseif ( $Value[0] == \"%\" && substr( \"$Value\" , -1 ) ==\"%\" ) {\n return [ \"$Key\" => new Regex('^.*'.substr( $Value ,1 ,-1) .'.*$', 'i')]; // SQL transform select * from table where 'key' like '%value%' ; find where ever with ?\n }else{\n return [ \"$Key\" => new Regex('^.'.\"$Value\".'.$', 'i')]; // SQL transform select * from table where 'key' like 'value'\n }\n }\n }", "public function getOperator($operator)\n {\n if ($operator === 'LIKE') {\n return 'LIKE';\n }\n else if ($operator === 'ILIKE') {\n return 'ILIKE';\n }\n\n return '';\n }", "protected function getOperatable($value) {\n\n\t\t\tif (is_scalar($value)) return ('= ' . $this->getValue($value));\n\n\t\t\tif (is_array($value)) return ('IN ' . $this->getRange($value));\n\n\t\t\tif ($value instanceof Type\\Not) return ('NOT ' . $this->getValue($value->get()));\n\n\t\t\tif ($value instanceof Type\\Like) return ('LIKE ' . $this->getValue($value->get()));\n\n\t\t\tif ($value instanceof Type\\LessThan) return ('< ' . $value->get());\n\n\t\t\tif ($value instanceof Type\\GreaterThan) return ('> ' . $value->get());\n\n\t\t\tif ($value instanceof Type\\LessThanOrEqual) return ('<= ' . $value->get());\n\n\t\t\tif ($value instanceof Type\\GreaterThanOrEqual) return ('>= ' . $value->get());\n\n\t\t\t# ------------------------\n\n\t\t\treturn '';\n\t\t}", "public function operacao($valor,$operador){\n\t\tswitch ($operador){\n\t\t\t\tcase \"igual\":\n\t\t\t\t\t\treturn \"= '{$valor}'\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"maiorIgual\":\n\t\t\t\t\t\treturn \">= '{$valor}'\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"menor\":\n\t\t\t\t\t\treturn \"< '{$valor}'\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"menorIgual\":\n\t\t\t\t\t\treturn \"<= '{$valor}'\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"diferente\":\n\t\t\t\t\t\treturn \"<> '{$valor}'\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"LIKE\":\n\t\t\t\t\t\treturn \"LIKE '%{$valor}%' \";\n\t\t\t\t\tbreak;\n\t\t\t\tdefault:\n\t\t\t\t\t\treturn \"= {$valor}\";\n\t\t\t\t\tbreak;\n\t\t\t}\n\t}", "protected function resolveOperator($operator) {\n\t\tswitch ($operator) {\n\t\t\tcase \\F3\\FLOW3\\Persistence\\QueryInterface::OPERATOR_EQUAL_TO:\n\t\t\t\t$operator = '=';\n\t\t\t\tbreak;\n\t\t\tcase \\F3\\FLOW3\\Persistence\\QueryInterface::OPERATOR_NOT_EQUAL_TO:\n\t\t\t\t$operator = '!=';\n\t\t\t\tbreak;\n\t\t\tcase \\F3\\FLOW3\\Persistence\\QueryInterface::OPERATOR_LESS_THAN:\n\t\t\t\t$operator = '<';\n\t\t\t\tbreak;\n\t\t\tcase \\F3\\FLOW3\\Persistence\\QueryInterface::OPERATOR_LESS_THAN_OR_EQUAL_TO:\n\t\t\t\t$operator = '<=';\n\t\t\t\tbreak;\n\t\t\tcase \\F3\\FLOW3\\Persistence\\QueryInterface::OPERATOR_GREATER_THAN:\n\t\t\t\t$operator = '>';\n\t\t\t\tbreak;\n\t\t\tcase \\F3\\FLOW3\\Persistence\\QueryInterface::OPERATOR_GREATER_THAN_OR_EQUAL_TO:\n\t\t\t\t$operator = '>=';\n\t\t\t\tbreak;\n\t\t\tcase \\F3\\FLOW3\\Persistence\\QueryInterface::OPERATOR_LIKE:\n\t\t\t\t$operator = 'LIKE';\n\t\t\t\tbreak;\n\t\t\tdefault:\n\t\t\t\tthrow new \\RuntimeException('Unsupported operator encountered.', 1263384870);\n\t\t}\n\n\t\treturn $operator;\n\t}", "public function buildLikeCondition($operator, $operands)\n {\n if (!isset($operands[0], $operands[1])) {\n throw new InvalidParamException(\"Operator '$operator' requires two operands.\");\n }\n list($column, $value) = $operands;\n if (!($value instanceof \\RethinkRegex)) {\n $value = new \\RethinkRegex('/' . preg_quote($value) . '/i');\n }\n\n return [$column => $value];\n }", "public function setOperator($val)\n {\n $this->_propDict[\"operator\"] = $val;\n return $this;\n }", "protected function parseOperator()\n {\n $operators = array(\n '<=' => 'lte',\n '>=' => 'gte',\n '<' => 'lt',\n '>' => 'gt',\n );\n\n foreach ($operators as $operator => $method) {\n if (strpos($this->value, $operator) === 0) {\n $this->value = substr($this->value, strlen($operator));\n return $method;\n }\n }\n\n return '';\n }", "public function __construct($column_name, $value, $op=\"EQ\") {\n parent::__construct();\n $this->column_name = $column_name;\n $this->value = $value;\n if (is_int($op)) {\n $this->op = $op;\n } else {\n $operators = $GLOBALS['\\cassandra\\E_IndexOperator'];\n $this->op = $operators[$op];\n }\n }", "public function orWhere($column, $operator = '', $value = '');", "private function operations($operator, $l, $r) {\r\n $content = str_replace(\"%\", \"(\\w+)?\", $r);\r\n $startsWith = \"/^\" . $content . \"/i\";\r\n $endsWith = \"/\" . $content . \"$/i\";\r\n $match = \"/\" . $content . \"/i\";\r\n $key = trim(strtolower($operator));\r\n $table = array(\r\n '<' => create_function('$l,$r', 'return $l < $r;'),\r\n '<=' => create_function('$l,$r', 'return $l <= $r;'),\r\n '=' => create_function('$l,$r', 'return $l == $r;'),\r\n '===' => create_function('$l,$r', 'return $l === $r;'),\r\n '!=' => create_function('$l,$r', 'return $l != $r;'),\r\n '!==' => create_function('$l,$r', 'return $l !== $r;'),\r\n '>=' => create_function('$l,$r', 'return $l >= $r;'),\r\n '>' => create_function('$l,$r', 'return $l > $r;'),\r\n 'between' => create_function('$l,$r', 'return ($l >= $r[0] && $l <= $r[1]);'),\r\n 'not_between' => create_function('$l,$r', 'return !($l >= $r[0] && $l <= $r[1]);'),\r\n 'equal' => create_function('$l, $r', 'return strcmp($l, $r) === 0;'),\r\n 'not_equal' => create_function('$l, $r', 'return strcmp($l, $r) !== 0;'),\r\n 'contains' => create_function('$l, $r', 'return preg_match($r, $l) === 1;'),\r\n 'starts' => create_function('$l, $r', 'return preg_match($r, $l) === 1;'),\r\n 'not_starts' => create_function('$l, $r', 'return preg_match($r, $l) !== 1;'),\r\n 'ends' => create_function('$l, $r', 'return preg_match($r, $l) === 1;'),\r\n 'not_ends' => create_function('$l, $r', 'return preg_match($r, $l) !== 1;'),\r\n 'not_contains' => create_function('$l, $r', 'return preg_match($r, $l) !== 1;'),\r\n 'regex' => create_function('$l, $r', 'return preg_match($r, $l) === 1;'),\r\n 'empty' => create_function('$l, $r', 'return empty($l);'),\r\n 'not_empty' => create_function('$l, $r', 'return !empty($l);')\r\n );\r\n\r\n if ((strcmp($key, 'starts') == 0) || (strcmp($key, 'not_starts') == 0)) {\r\n $arguments = array($l, $startsWith);\r\n }\r\n elseif ((strcmp($key, 'ends') == 0) || (strcmp($key, 'not_ends') == 0)) {\r\n $arguments = array($l, $endsWith);\r\n }\r\n elseif ((strcmp($key, 'regex') == 0) || (strcmp($key, 'contains') == 0) ||\r\n (strcmp($key, 'not_contains') == 0)) {\r\n $arguments = array($l, $match);\r\n }\r\n else {\r\n $arguments = array($l, $r);\r\n }\r\n\r\n return call_user_func_array($table[$key], $arguments);\r\n }", "public function setOp($var)\n {\n GPBUtil::checkEnum($var, \\Google\\Cloud\\Firestore\\V1\\StructuredQuery\\FieldFilter\\Operator::class);\n $this->op = $var;\n\n return $this;\n }", "private function validateComparisonOperators($value) \n {\n $operator = strtoupper(trim($value));\n $isValid = in_array($operator, $this->comparisonOperators);\n \n if($isValid === true) {\n return $operator;\n } \n \n throw new \\Exception(\"Comparison operator $value is not supported.\");\n }", "public function setOperation($var)\n {\n GPBUtil::checkString($var, True);\n $this->operation = $var;\n\n return $this;\n }", "public function addOperator($op = 'AND') {\n if (!in_array($op, array('AND', 'OR'))) {\n throw new \\InvalidArgumentException('Invalid logical operator.');\n }\n\n $this->conditions[] = $op;\n\n return $this;\n }", "private function translateCondition(string $field, string $value, string $operator): string {\n if (mb_strpos($operator, '!') === 0) {\n $condition = sprintf('(!(%s=%s))', $field, Html::escape($value));\n }\n else {\n $condition = sprintf('(%s=%s)', $field, Html::escape($value));\n }\n return $condition;\n }", "public function or_where($column, $op, $value)\n\t{\n\t\t$this->_where[] = ['OR' => [$column, $op, $value]];\n\n\t\treturn $this;\n\t}", "public function makeWhere(string|self $query, string $operator = null, mixed $value = null, string $condition = 'and'): self\n {\n [$query, $bindings] = $this->parseExpression($query);\n\n if(!empty($bindings)) {\n $this->bind($bindings, 'where');\n }\n\n return $this->where(new Expression(\"($query)\"), $operator, $value, $condition);\n }" ]
[ "0.65051484", "0.6496846", "0.6311015", "0.61706865", "0.6149585", "0.60910267", "0.6089508", "0.60113347", "0.5971079", "0.59491444", "0.58653677", "0.5853427", "0.58443314", "0.58265305", "0.58014745", "0.57892954", "0.5687796", "0.5667192", "0.5655714", "0.5641696", "0.5633625", "0.5592869", "0.55914664", "0.5548273", "0.55330557", "0.5501354", "0.5496393", "0.54813224", "0.54668385", "0.54574996" ]
0.6849447
0
Add partial matching to the Operation, i.e. if the value is a string add %wildcards%
public function matchPartial() { $newOperation = clone $this; $newOperation->value = (is_string($this->value)) ? "%{$this->value}%" : $this->value; return $newOperation; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "private function searchWildcards() {\n \t// Figure out all the variables used in the condition\n \t// Check if any of them contains WILDCARDx in their names where x is an integer\n \t// Add such variable names with wildcard names to $this->wildcards array\n \tpreg_match_all('/(\\$[_\\d\\w]*WILDCARD\\d+[_\\d\\w]*)/', $this->condition, $matches);\n \t\n \t$this->wildcards = array_unique($matches[0]);\n }", "public function testMatchWithWildcard()\n {\n $this->router->map('GET', '/a', 'foo_action', 'foo_route');\n $this->router->map('GET', '*', 'bar_action', 'bar_route');\n $this->assertEquals(\n array(\n 'target' => 'bar_action',\n 'params' => array(),\n 'name' => 'bar_route'\n ),\n $this->router->match('/everything', 'GET')\n );\n\n }", "public function wildcard($cpLen) {\n\t\t$this->_additionalParameters = true;\n\t\t$this->_pattern = substr($this->_pattern, 0, $cpLen > 2 && $this->_pattern[$cpLen - 2] == '/' ? -1 : -1);\n\t}", "public function match(string $expected, string $actual, array $wildcards = []): void;", "public function wildcard() {\n return $this->wildcard;\n }", "public function like($field = \"\", $value = \"\", $flags = \"i\", $enable_start_wildcard = TRUE, $enable_end_wildcard = TRUE)\r\n {\r\n $field = (string) trim($field);\r\n $this->where_init($field);\r\n $value = (string) trim($value);\r\n $value = quotemeta($value);\r\n\r\n if ($enable_start_wildcard !== TRUE)\r\n {\r\n $value = \"^\" . $value;\r\n }\r\n\r\n if ($enable_end_wildcard !== TRUE)\r\n {\r\n $value .= \"$\";\r\n }\r\n\r\n $regex = \"/$value/$flags\";\r\n $this->wheres[$field] = new MongoRegex($regex);\r\n return $this;\r\n }", "public function isWildcard()\n {\n return $this->value == '*/*';\n }", "public function __construct($path, $operation, $value)\n {\n $this->computeIncludePath($path);\n $this->operation = (is_string($value) && $operation == \"=\") ? \"LIKE\" : $operation;\n $this->value = $value;\n }", "public function dataProviderMatchWildcard()\n {\n return [\n // *\n ['*', 'any', true],\n ['*', '', true],\n ['begin*end', 'begin-middle-end', true],\n ['begin*end', 'beginend', true],\n ['begin*end', 'begin-d', false],\n ['*end', 'beginend', true],\n ['*end', 'begin', false],\n ['begin*', 'begin-end', true],\n ['begin*', 'end', false],\n ['begin*', 'before-begin', false],\n // ?\n ['begin?end', 'begin1end', true],\n ['begin?end', 'beginend', false],\n ['begin??end', 'begin12end', true],\n ['begin??end', 'begin1end', false],\n // []\n ['gr[ae]y', 'gray', true],\n ['gr[ae]y', 'grey', true],\n ['gr[ae]y', 'groy', false],\n ['a[2-8]', 'a1', false],\n ['a[2-8]', 'a3', true],\n ['[][!]', ']', true],\n ['[-1]', '-', true],\n // [!]\n ['gr[!ae]y', 'gray', false],\n ['gr[!ae]y', 'grey', false],\n ['gr[!ae]y', 'groy', true],\n ['a[!2-8]', 'a1', true],\n ['a[!2-8]', 'a3', false],\n // -\n ['a-z', 'a-z', true],\n ['a-z', 'a-c', false],\n // slashes\n ['begin/*/end', 'begin/middle/end', true],\n ['begin/*/end', 'begin/two/steps/end', true],\n ['begin/*/end', 'begin/end', false],\n ['begin\\\\\\\\*\\\\\\\\end', 'begin\\middle\\end', true],\n ['begin\\\\\\\\*\\\\\\\\end', 'begin\\two\\steps\\end', true],\n ['begin\\\\\\\\*\\\\\\\\end', 'begin\\end', false],\n // dots\n ['begin.*.end', 'begin.middle.end', true],\n ['begin.*.end', 'begin.two.steps.end', true],\n ['begin.*.end', 'begin.end', false],\n // case\n ['begin*end', 'BEGIN-middle-END', false],\n ['begin*end', 'BEGIN-middle-END', true, ['caseSensitive' => false]],\n // file path\n ['begin/*/end', 'begin/middle/end', true, ['filePath' => true]],\n ['begin/*/end', 'begin/two/steps/end', false, ['filePath' => true]],\n ['begin\\\\\\\\*\\\\\\\\end', 'begin\\middle\\end', true, ['filePath' => true]],\n ['begin\\\\\\\\*\\\\\\\\end', 'begin\\two\\steps\\end', false, ['filePath' => true]],\n ['*', 'any', true, ['filePath' => true]],\n ['*', 'any/path', false, ['filePath' => true]],\n ['[.-0]', 'any/path', false, ['filePath' => true]],\n ['*', '.dotenv', true, ['filePath' => true]],\n // escaping\n ['\\*\\?', '*?', true],\n ['\\*\\?', 'zz', false],\n ['begin\\*\\end', 'begin\\middle\\end', true, ['escape' => false]],\n ['begin\\*\\end', 'begin\\two\\steps\\end', true, ['escape' => false]],\n ['begin\\*\\end', 'begin\\end', false, ['escape' => false]],\n ['begin\\*\\end', 'begin\\middle\\end', true, ['filePath' => true, 'escape' => false]],\n ['begin\\*\\end', 'begin\\two\\steps\\end', false, ['filePath' => true, 'escape' => false]],\n ];\n }", "protected function parseFieldPartialMatchFilter($filter, $value)\n {\n $this->parsedFilterParams['field_partial_match'][$filter] = $value;\n }", "function concatArgs($variable, $args){\n $output = \"\";\n foreach ($args as $key=>$value){\n $output = $output.\" \".$variable.\" LIKE '%\".$value.\"%'\";\n\n if ($key < count($args)-1){\n $output = $output.\" OR \";\n }\n }\n return $output;\n}", "protected function getWildcardDefinitions()\n {\n // Merge with user definitions\n return array_merge(array(\n '{action}' => '([a-zA-Z0-9_]+)',\n '{alpha}' => '([a-zA-Z]+)',\n '{int}' => '([0-9]+)',\n '*' => '([a-zA-Z0-9-+_.%]+)',\n '**' => '([a-zA-Z0-9-+_.%/]+)',\n ), $this->arrWildcardDefinitions);\n }", "private function createWildcardWhereClause($pathSegment)\n {\n $spaceCharacter = isset($this->conf['spaceCharacter']) ? $this->conf['spaceCharacter'] : '-';\n $titleFieldList = \\TYPO3\\CMS\\Core\\Utility\\GeneralUtility::trimExplode(',', $this->conf['segTitleFieldList']);\n\n $whereClause = [];\n foreach ($titleFieldList as $titleField) {\n $whereClause[] = $titleField . ' LIKE ' . $GLOBALS['TYPO3_DB']->fullQuotestr('%' . str_replace($spaceCharacter,\n '%', $pathSegment) . '%', 'pages)');\n }\n\n return implode('OR ', $whereClause);\n }", "public function wildcard(): bool\n {\n return $this->_wildcard;\n }", "public function addSearchCriterion(string $criterion, string $value);", "public function addValue(string $value): ISearchRequestSimpleQuery;", "private function macroWhereLike(): void\n {\n Builder::macro('whereLike', function ($attributes, string $searchTerm) {\n $this->where(function (Builder $query) use ($attributes, $searchTerm) {\n foreach (Arr::wrap($attributes) as $attribute) {\n $query->when(\n str_contains($attribute, '.'),\n function (Builder $query) use ($attribute, $searchTerm) {\n [$relationName, $relationAttribute] = explode('.', $attribute);\n\n $query->orWhereHas($relationName, function (Builder $query) use ($relationAttribute, $searchTerm) {\n $query->where($relationAttribute, 'LIKE', \"%{$searchTerm}%\");\n });\n },\n function (Builder $query) use ($attribute, $searchTerm) {\n $query->orWhere($attribute, 'LIKE', \"%{$searchTerm}%\");\n }\n );\n }\n });\n\n return $this;\n });\n }", "protected function filterAllowedOperations(&$query)\n {\n switch ( $this->operation ) {\n case 'in':\n if ( is_array($this->value) ) {\n $query->whereIn($this->field_name, $this->value);\n }\n break;\n case 'not in':\n if ( is_array($this->value) ) {\n $query->whereNotIn($this->field_name, $this->value);\n }\n break;\n case 'like':\n if ( is_string($this->value) ) {\n $searchString = Str::lower($this->value);\n $query->whereRaw(\"LOWER($this->field_name) like '%$searchString%'\");\n }\n break;\n case 'search':\n if ( is_array($this->value) ) {\n foreach ( $this->value as $searchString ) {\n $searchString = Str::lower($searchString);\n $query->orWhereRaw(\"LOWER($this->field_name) like '%$searchString%'\");\n }\n }\n break;\n case 'scope':\n call_user_func_array(\n [ $query, $this->value ],\n is_array($this->operationParameters) ? $this->operationParameters : [ $this->operationParameters ]\n );\n break;\n default:\n $query->where($this->field_name, $this->operation, $this->getDateValue($this->value));\n\n }\n }", "public function prepareForSearch()\n\t{\n\t\t$this->replace(\"%\", \"\");\n\t\tif(Str::length(Str::replace(\"*\", \"\", $this->string)) >= $this->minLenghtForSearch)\n\t\t{\n\t\t\t$this->validSearchString = true;\n\t\t}\n\t\telse { $this->validSearchString = false; }\n\t\t$this->replace(\"*\", \"%\");\n\t\t$this->string = \"%\".$this->string.\"%\";\n\t\treturn $this;\n\t}", "public function testMultiLikeSelect()\n {\n parse_str('filter[text][like][0]=%porro%&filter[text][like][1]=%velit%', $parameters);\n $response = $this->get(self::API_URI, $parameters);\n\n\n $this->assertEquals(200, $response->getStatusCode());\n $this->assertNotNull($resource = json_decode((string)$response->getBody()));\n\n // manually checked number comments that have 'porro' and `velit' in `text` field\n $this->assertCount(2, $resource->data);\n }", "public function testSelectFilterLangMatchesWithStar()\n {\n // test data\n $this->fixture->query('INSERT INTO <http://example.com/> {\n <http://s> <http://p1> \"foo\" .\n <http://s> <http://p1> \"in de\"@de .\n <http://s> <http://p1> \"in en\"@en .\n }');\n\n $res = $this->fixture->query('\n SELECT ?s ?o WHERE {\n ?s <http://p1> ?o .\n FILTER langMatches (lang(?o), \"*\")\n }\n ');\n $this->assertEquals(\n [\n 'query_type' => 'select',\n 'result' => [\n 'variables' => [\n 's', 'o'\n ],\n 'rows' => [],\n ],\n 'query_time' => $res['query_time']\n ],\n $res\n );\n }", "protected function constrainByWildcard($query)\n {\n $query->where(\"{$this->table}.entity_type\", '*');\n }", "protected function parseAny($value)\n {\n //are allowed to be specified through __any parameter\n $notAllowed = array_keys($this->matchedParameters);\n //remove all characters after ?(and including) if ? exists\n //this can produce errors if there is multiple ?, but that url is not valid, so we dont want to bother with it(same goes to & without ? in url)\n $startOfGetPos = strrpos($value, '?');\n if ($startOfGetPos !== false) {\n $value = substr($value, 0, $startOfGetPos);\n }\n $array = explode('/', trim($value, '/'));\n $i = 0;\n while ($i + 1 < count($array)) {\n $key = urldecode($array[$i]);\n //skip if key is 0, null, '', or in not allowed parameter names\n if ($key && !in_array($key, $notAllowed)) {\n $this->matchedParameters[$key] = urldecode($array[$i + 1]);\n }\n $i += 2;\n }\n }", "public function like($pattern) {\n $isRegexp = strstr($pattern, '%') !== false;\n if ($isRegexp) {\n $pattern = str_replace('[', '\\[', $pattern);\n $pattern = str_replace(']', '\\]', $pattern);\n $pattern = str_replace('%', '[^.]*', $pattern);\n $pattern = str_replace('\\\\', '\\\\\\\\', $pattern);\n $pattern = '/^' . $pattern . '$/';\n\n $callback = function ($variable) use ($pattern) {\n $result = preg_match($pattern, $variable);\n return $result > 0;\n };\n } else {\n $callback = function ($variable) use ($pattern) {\n return strstr($variable, $pattern) !== false;\n };\n }\n $this->builder->add(new Callback($callback), 5, 2);\n return $this;\n }", "public function search($value, $searchMode = self::STRICT_SEARCH_MODE);", "private function compileMatchPattern()\n {\n $defaultReplaces = array();\n $hasDefaults = false;\n\n $findPattern = '';\n $parts = explode('/', trim($this->createPattern, '/'));\n foreach ($parts as $part) {\n //in one part of url we can have more than one key /:id-:name\n preg_match_all('/\\:([A-Za-z0-9_]+)/', $part, $matches);\n $matches = $matches[1];\n\n if (count($matches)) {\n $tokens = array();\n $replaces = array();\n $isInDefault = true;\n foreach ($matches as $key) {\n $patternPart = isset($this->parameters[$key]) && $this->parameters[$key] instanceof icRouteParameter\n ? $this->parameters[$key]->getPattern()\n : '[^/]+';\n $replaces[] = '(?P<' . $key . '>' . $patternPart . ')';\n $tokens[] = ':' . $key;\n $isInDefault = $isInDefault && array_key_exists($key, $this->defaultMatchedParameters);\n }\n\n $part = str_replace($tokens, $replaces, $part);\n\n if (!$isInDefault) {\n if (!$hasDefaults) {\n $findPattern .= '/' . $part;\n } else {\n $findPattern .= '/' . join('/', $defaultReplaces) . '/' . $part;\n $defaultReplaces = array();\n $hasDefaults = false;\n }\n } else {\n $defaultReplaces[] = $part;\n $hasDefaults = true;\n }\n } else {\n if ($hasDefaults) {\n $defaultReplaces[] = $part;\n } else {\n $findPattern .= '/' . $part;\n }\n }\n\n }\n //adds sufix\n if (!$hasDefaults) {\n if ($this->allowAdditionalParameters) {\n $findPattern .= icRoute::ANY_PATTERN;\n } else {\n $findPattern .= '/?';\n }\n } else {\n $patternSuffix = $this->allowAdditionalParameters ? icRoute::ANY_PATTERN : '/?';\n $i = count($defaultReplaces) - 1;\n while ($i >= 0) {\n $patternSuffix = '(?:/' . $defaultReplaces[$i] . $patternSuffix . ')?';\n $i--;\n }\n\n $findPattern .= $patternSuffix . '/?';\n\n }\n\n //if ( icRouter::$DEBUG ) echo htmlspecialchars('#^'.$findPattern.'$#').'<br />';\n $this->findPattern = '#^' . $findPattern . '$#';\n }", "public function queryFormats($pattern = '*') {\n\t}", "public function where_like( $column_name, $value = null ) {\n\t\treturn $this->_add_simple_where( $column_name, 'LIKE', $value );\n\t}", "private function findWildcardMatchedRules($requestPath, $path, $queryString)\n\t{\n\t\tif (!isset($this->matchedRules['wildcard']))\n\t\t{\n\t\t\t$isNonSefRequest = wbStartsWith($requestPath, 'index.php?option=');\n\t\t\t$this->matchedRules['wildcard'] = array();\n\n\t\t\tif (is_null($this->wildcardAliases))\n\t\t\t{\n\t\t\t\t$this->wildcardAliases = ShlDbHelper::selectObjectList(\n\t\t\t\t\t'#__sh404sef_aliases',\n\t\t\t\t\t'*',\n\t\t\t\t\t'state = 1 and (type = ? or type = ?)',\n\t\t\t\t\tarray(\n\t\t\t\t\t\tSh404sefHelperGeneral::COM_SH404SEF_URLTYPE_ALIAS_WILDCARD,\n\t\t\t\t\t\tSh404sefHelperGeneral::COM_SH404SEF_URLTYPE_ALIAS_CUSTOM\n\t\t\t\t\t)\n\t\t\t\t);\n\t\t\t\t$this->wildcardAliases = empty($this->wildcardAliases) ? array() : $this->wildcardAliases;\n\t\t\t}\n\t\t\tforeach ($this->wildcardAliases as $wildcardsAliasRecord)\n\t\t\t{\n\t\t\t\t// test the full URL\n\t\t\t\t$matches = ShlSystem_Route::urlRuleMatch($wildcardsAliasRecord->alias, $requestPath, $wildChar = '{*}', $singleChar = '{?}', $regexpChar = '~');\n\t\t\t\tif (!empty($matches[0]))\n\t\t\t\t{\n\t\t\t\t\t$this->matchedRules['wildcard'][] = array(\n\t\t\t\t\t\t'rule' => $wildcardsAliasRecord,\n\t\t\t\t\t\t'request_path' => $requestPath,\n\t\t\t\t\t\t'matches' => $matches,\n\t\t\t\t\t\t'query_string' => ''\n\t\t\t\t\t);\n\t\t\t\t}\n\n\t\t\t\t// test the path only\n\t\t\t\t$matches = ShlSystem_Route::urlRuleMatch($wildcardsAliasRecord->alias, $path, $wildChar = '{*}', $singleChar = '{?}', $regexpChar = '~');\n\t\t\t\tif (!empty($matches[0]))\n\t\t\t\t{\n\t\t\t\t\t// if match occured on full requested URL, or this is a non-sef or this is a canonilca, not a redirect: no need to re-append the query string\n\t\t\t\t\t// to the target URL.\n\t\t\t\t\t$queryString = $wildcardsAliasRecord->target_type == self::TARGET_TYPE_CANONICAL || $isNonSefRequest || $wildcardsAliasRecord->newurl == $requestPath ? '' : $queryString;\n\t\t\t\t\t$this->matchedRules['wildcard'][] = array(\n\t\t\t\t\t\t'rule' => $wildcardsAliasRecord,\n\t\t\t\t\t\t'request_path' => $requestPath,\n\t\t\t\t\t\t'matches' => $matches,\n\t\t\t\t\t\t'query_string' => $queryString\n\t\t\t\t\t);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\treturn $this;\n\t}", "function filterStr($field, $value) {\n if (\"$value\" !== '') {\n if ($value[0] === '=') {\n $this->where($field, '=', trim( substr($value, 1) ));\n } else {\n $wrapped = $this->table->grammar->wrap($field);\n\n switch ($value[0]) {\n case '^':\n $cond = '= 1';\n case '?':\n isset($cond) or $cond = '!= 0';\n $this->raw_where(\"LOCATE(?, $wrapped) $cond\", array($value));\n break;\n\n case '%':\n $this->raw_where(\"$wrapped LIKE ?\", array($value));\n break;\n\n default:\n $this->where($field, '=', trim($value));\n break;\n }\n }\n }\n }" ]
[ "0.6025567", "0.55597514", "0.5539395", "0.5477273", "0.5384558", "0.5355996", "0.5318138", "0.52257574", "0.51771086", "0.5140815", "0.507258", "0.4964821", "0.4954977", "0.49102375", "0.48890173", "0.48814812", "0.48677167", "0.4842269", "0.483535", "0.48333487", "0.48150343", "0.47953656", "0.47880042", "0.47520596", "0.47478032", "0.47223806", "0.4720033", "0.4708957", "0.47059542", "0.47021493" ]
0.6648103
0
Checks if there are any keys in the include path
public function hasIncludes() { return count($this->include_path) > 0; }
{ "objective": { "self": [], "paired": [], "triplet": [ [ "query", "document", "negatives" ] ] } }
[ "public function checkInclude()\n {\n return ($this->checkIncludePages() || $this->checkIncludePaths());\n }", "public function checkIncludePaths()\n {\n $currentPath = $this->getRequest()->getRequestUri();\n $pathsConfig = $this->_helperData->getWhereToShowConfig('include_pages_with_url');\n\n if ($pathsConfig) {\n $arrayPaths = explode(\"\\n\", $pathsConfig);\n $pathsUrl = array_map('trim', $arrayPaths);\n foreach ($pathsUrl as $path) {\n if ($path && strpos($currentPath, $path) !== false) {\n return true;\n }\n }\n }\n\n return false;\n }", "public function isIncludePath(): bool;", "protected function checkIncludePath()\n {\n if (static::$includePathVerified) {\n return ;\n }\n\n $path = realpath(__DIR__ . '/../../../');\n $includePath = get_include_path();\n\n if (strpos($path, $includePath) === false) {\n set_include_path($includePath . PATH_SEPARATOR . $path);\n }\n\n static::$includePathVerified = true;\n }", "function site_include_exists( $path ) {\n\n\treturn file_exists( site_view_path( $path ) );\n\n}", "protected function _checkInclude($include) {\n $request = Request::instance();\n\n if (isset($include['no'])) {\n if (in_array('.' . $request->src, $include['no']) || in_array('.' . $request->src . '.' . $request->controller, $include['no']) || in_array('.' . $request->src . '.' . $request->controller . '.' . $request->action, $include['no']) || in_array('.' . $request->controller, $include['no']) || in_array('.' . $request->controller . '.' . $request->action, $include['no'])) {\n return false;\n }\n else {\n return true;\n }\n }\n if (isset($include['yes'])) {\n if (in_array('.' . $request->src, $include['yes']) || in_array('.' . $request->src . '.' . $request->controller, $include['yes']) || in_array('.' . $request->src . '.' . $request->controller . '.' . $request->action, $include['yes']) || in_array('.' . $request->controller, $include['yes']) || in_array('.' . $request->controller . '.' . $request->action, $include['yes'])) {\n return true;\n }\n else {\n return false;\n }\n }\n\n return true;\n }", "function Check_PHP_Config() {\n if (!strstr(get_include_path(),$_SERVER['DOCUMENT_ROOT'])) {\n echo \"The document Root is not part of the php include path - LOTS of things depend on this<p>\";\n exit;\n }\n // Should check for open_basedir and file size eventually\n}", "public function hasKeys(): bool\n {\n return $this->has('KeysC0')\n || $this->has('KeysC1')\n || $this->has('KeysC2')\n || $this->has('KeysC3');\n }", "protected function _includes() {\r\n\t\t\t// code\r\n\t\t}", "function register_include( $path ){\n\t\tif( ! isset($this->incs[$path]) ){\n\t\t\t$this->incs[$path] = 1;\n\t\t\treturn false;\n\t\t}\n\t\telse {\n\t\t\t$this->incs[$path]++;\n\t\t\treturn true;\n\t\t}\n\t}", "protected function isIncludeAllowed($include)\n\t{\n\t\treturn true;\n\t}", "public function isPathIncluded($pathInfo)\n {\n //remove locale if exists from path info\n $result = $this->getLocalePathInfo($pathInfo);\n if (isset($result['locale'])) {\n $locale = $result['locale'];\n $pathInfo = $this->removeInvalidLocale($pathInfo, $locale);\n }\n\n // '/' is a special case, so do it manually\n if ($pathInfo == '/') {\n return true;\n }\n\n foreach ($this->includePaths as $path) {\n if (0 === strpos($pathInfo, $path)) {\n return true;\n }\n }\n\n return false;\n }", "public function checkIncludePages()\n {\n $fullActionName = $this->getRequest()->getFullActionName();\n $arrayPages = explode(\"\\n\", $this->_helperData->getWhereToShowConfig('include_pages'));\n $includePages = array_map('trim', $arrayPages);\n\n return in_array($fullActionName, $includePages, true);\n }", "public function isIncludePath(): bool\n {\n if ($this->includePath instanceof Closure) {\n $this->includePath = ($this->includePath)();\n }\n\n return $this->includePath;\n }", "function bbp_is_template_included()\n{\n}", "static function installed() {\n return self::has_keys();\n }", "public function processIncludes()\n {\n if ($this->processIncludesHasBeenRun) {\n return;\n }\n\n $paths = $this->templateIncludePaths;\n $files = [];\n foreach ($this->constants as &$value) {\n $includeData = Parser\\TypoScriptParser::checkIncludeLines($value, 1, true, array_shift($paths));\n $files = array_merge($files, $includeData['files']);\n $value = $includeData['typoscript'];\n }\n unset($value);\n $paths = $this->templateIncludePaths;\n foreach ($this->config as &$value) {\n $includeData = Parser\\TypoScriptParser::checkIncludeLines($value, 1, true, array_shift($paths));\n $files = array_merge($files, $includeData['files']);\n $value = $includeData['typoscript'];\n }\n unset($value);\n\n if (!empty($files)) {\n $files = array_unique($files);\n foreach ($files as $file) {\n $this->rowSum[] = [$file, filemtime($file)];\n }\n }\n\n $this->processIncludesHasBeenRun = true;\n }", "private function isPathIncluded($path)\n {\n if ($this->includedPath === '*') {\n return true;\n }\n\n if (empty($this->includedPath) && !is_numeric($this->includedPath)) {\n return false;\n }\n\n foreach ((array)$this->includedPath as $included) {\n if (preg_match('@' . $included . '@', $path)) {\n return true;\n }\n }\n\n return false;\n }", "function can_include ($path, $content_path) {\n\tif (preg_match('/\\.\\./', $path) || !is_file($path)) return false;\n return strpos($path, $content_path) === 0;\n}", "protected function checkIncludeAllowed($includes)\n {\n\t\t// Check permissions for includes\n foreach($includes as $key => $include) {\n\t\t\tif(!$this->isIncludeAllowed($include)) {\n\t\t\t\tunset($includes[$key]);\n\t\t\t}\n\t\t}\n\t\t\n\t\treturn $includes;\n }", "public function verify_include( $file ) {\n return ( file_exists( $file ) ) ? true : false;\n }", "public function testFilesArePresent()\n {\n $this->assertFileExists(config_path(\"binshopsblog.php\"), \"/config/binshopsblog.php should exist - currently no file with that filename is found\");\n $this->assertTrue(is_array(include(config_path(\"binshopsblog.php\"))), \"/config/binshopsblog.php should exist - currently no file with that filename is found\");\n }", "public function testLoaderFileIncludePathEmptyDirs()\n {\n $saveIncludePath = get_include_path();\n set_include_path(implode(array($saveIncludePath, implode(array(__DIR__, '_files', '_testDir1'), DIRECTORY_SEPARATOR)), PATH_SEPARATOR));\n\n $this->assertTrue(Loader::loadFile('Class3.php', null));\n\n set_include_path($saveIncludePath);\n }", "public function hasPath(){\n return $this->_has(1);\n }", "private function include(): bool\n {\n if ($this->autoInclude === true && $this->exclude() === false) {\n return true;\n }\n\n return (($this->testAnnotations['class']['PostmanInclude'] ?? false)\n || ($this->testAnnotations['method']['PostmanInclude'] ?? false))\n && $this->exclude() === false;\n }", "function _tryInclude($handler_class, $handler_include_path)\n {\n if (class_exists($handler_class))\n return true;\n\n if (file_exists($handler_include_path) && is_file($handler_include_path) && is_readable($handler_include_path))\n {\n _use($handler_include_path);\n if (class_exists($handler_class))\n return true;\n }\n\n global $application;\n $objMM = &$application->getInstance('Modules_Manager');\n $objMM->includeAPIFileOnce($handler_class);\n\n if (class_exists($handler_class))\n return true;\n else\n return false;\n }", "protected abstract function getScriptIncludes();", "function includePaths() {\n\t\tRuntime::_requires('4.3.0', 'includePaths');\n\t\treturn array_map('trim', explode(PATH_SEPARATOR, get_include_path()));\t\t\t\t\n\t}", "public function getIncludes();", "public function getIncludes();" ]
[ "0.7293302", "0.68735725", "0.6783132", "0.67514616", "0.6383648", "0.63205874", "0.6156163", "0.6138785", "0.6104151", "0.60878414", "0.6071488", "0.60031444", "0.59835136", "0.59257996", "0.592287", "0.5871889", "0.58273685", "0.57847446", "0.5762227", "0.5735981", "0.57274646", "0.5700016", "0.5667748", "0.5648502", "0.5638031", "0.5605305", "0.5602322", "0.5569699", "0.5568617", "0.5568617" ]
0.77950525
0