Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/script-loader.php on line 757

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/script-loader.php on line 757

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/script-loader.php on line 758

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/script-loader.php on line 758

Notice: require(): read of 18714 bytes failed with errno=14 Bad address in /var/www/html/ticnews.com.br/web/wp-content/plugins/google-maps-easy/functions.php on line 44

Notice: require(): read of 18714 bytes failed with errno=14 Bad address in /var/www/html/ticnews.com.br/web/wp-content/plugins/google-maps-easy/functions.php on line 44
= self::nameToClassId($name); } $paramsText = $paramsSelect = $params; $paramsText['attrs'] .= 'id = "'. $id. '_text"'; $paramsSelect['attrs'] .= 'id = "'. $id. '_select"'; $res = ''; $res .= self::$params['selectHtml']($name, $paramsSelect); $res .= self::text($name, $paramsText); if(empty($params['doNotAddJs'])) { $res .= ''; } return $res; } static public function statesList($name, $params = array('value' => '', 'attrs' => '', 'notSelected' => true, 'id' => '')) { $params['selectHtml'] = 'selectbox'; return self::statesInput($name, $params); } static public function statesListMultiple($name, $params = array('value' => '', 'attrs' => '', 'notSelected' => true, 'id' => '')) { if(!empty($params['value'])) { if(is_string($params['value'])) { if(strpos($params['value'], ',')) $params['value'] = array_map('trim', explode(',', $params['value'])); else $params['value'] = array(trim($params['value'])); } } $params['selectHtml'] = 'selectlist'; return self::statesInput($name, $params); } static public function countryList($name, $params = array('value' => '', 'attrs' => '', 'notSelected' => true)) { $params['notSelected'] = isset($params['notSelected']) ? $params['notSelected'] : true; $params['options'] = fieldAdapterGmp::getCountries($params['notSelected']); $params['attrs'] .= ' type="country"'; return self::selectbox($name, $params); } static public function countryListMultiple($name, $params = array('value' => '', 'attrs' => '', 'notSelected' => true)) { if(!empty($params['value'])) { if(is_string($params['value'])) { if(strpos($params['value'], ',')) $params['value'] = array_map('trim', explode(',', $params['value'])); else $params['value'] = array(trim($params['value'])); } } $params['notSelected'] = isset($params['notSelected']) ? $params['notSelected'] : true; $params['options'] = fieldAdapterGmp::getCountries($params['notSelected']); $params['attrs'] .= ' type="country"'; return self::selectlist($name, $params); } static public function textFieldsDynamicTable($name, $params = array('value' => '', 'attrs' => '', 'options' => array())) { $res = ''; if(empty($params['options'])) $params['options'] = array(0 => array('label' => '')); if(!empty($params['options'])) { $pattern = array(); foreach($params['options'] as $key => $p) { $pattern[$key] = htmlGmp::text($name. '[]['. $key. ']'); } $countOptions = count($params['options']); $remove = 'remove'; $add = 'add'; $res = '
'; if(empty($params['value'])) $params['value'] = array(); elseif(!is_array($params['value'])) { $params['value'] = utilsGmp::jsonDecode($params['value']); //$params['value'] = $params['value'][0]; } $i = 0; do { $res .= '
'; foreach($params['options'] as $key => $p) { switch($countOptions) { case 1: if(isset($params['value'][$i])) $value = is_array($params['value'][$i]) ? $params['value'][$i][$key] : $params['value'][$i]; else $value = ''; break; case 2: default: $value = isset($params['value'][$i][$key]) ? $params['value'][$i][$key] : ''; break; } $paramsForText = array( 'value' => $value, ); $res .= __($p['label']). htmlGmp::text($name. '['. $i. ']['. $key. ']', $paramsForText); } $res .= $remove. '
'; $i++; } while($i < count($params['value'])); $res .= $add; $res .= '
'; } return $res; } static public function categorySelectlist($name, $params = array('attrs'=>'', 'size'=> 5, 'value' => '')) { self::_loadCategoriesOptions(); if(self::$categoriesOptions) { $params['options'] = self::$categoriesOptions; return self::selectlist($name, $params); } return false; } static public function categorySelectbox($name, $params = array('attrs'=>'', 'size'=> 5, 'value' => '')) { self::_loadCategoriesOptions(); if(!empty(self::$categoriesOptions)) { $params['options'] = self::$categoriesOptions; return self::selectbox($name, $params); } return false; } static public function productsSelectlist($name, $params = array('attrs'=>'', 'size'=> 5, 'value' => '')) { self::_loadProductsOptions(); if(!empty(self::$productsOptions)) { $params['options'] = self::$productsOptions; return self::selectlist($name, $params); } return false; } static public function productsSelectbox($name, $params = array('attrs'=>'', 'size'=> 5, 'value' => '')) { self::_loadProductsOptions(); if(!empty(self::$productsOptions)) { $params['options'] = self::$productsOptions; return self::selectbox($name, $params); } return false; } static protected function _loadCategoriesOptions() { if(empty(self::$categoriesOptions)) { $categories = frameGmp::_()->getModule('products')->getCategories(); if(!empty($categories)) { foreach($categories as $c) { self::$categoriesOptions[$c->term_taxonomy_id] = $c->cat_name; } } } } static protected function _loadProductsOptions() { if(empty(self::$productsOptions)) { $products = frameGmp::_()->getModule('products')->getModel()->get(array('getFields' => 'post.ID, post.post_title')); if(!empty($products)) { foreach($products as $p) { self::$productsOptions[$p['ID']] = $p['post_title']; } } } } static public function slider($name, $params = array('value' => 0, 'min' => 0, 'max' => 0, 'step' => 1, 'slide' => '')) { $id = self::nameToClassId($name, $params); $paramsStr = ''; if(!isset($params['slide']) || (empty($params['slide']) && $params['slide'] !== false)) { //Can be set to false to ignore function onSlide event binding $params['slide'] = 'toeSliderMove'; } if(!empty($params)) { if(isset($params['min']) && empty($params['min'])) { $params['min'] = 0; } $paramsArr = array(); foreach($params as $k => $v) { if(in_array($k, array('attrs')) || strpos($k, '-')) continue; $value = (is_numeric($v) || in_array($k, array('slide'))) ? $v : '"'. $v. '"'; $paramsArr[] = $k. ': '. $value; } $paramsStr = implode(', ', $paramsArr); } $res = '
'. (isset($params['value']) ? $params['value'] . ' ' : '') . '
'; $res .= '
'; $params['attrs'] = 'id="toeSliderInput_'. $id. '"'; $res .= self::hidden($name, $params); $res .= ''; return $res; } static public function capcha() { return recapchaGmp::_()->getHtml(); } static public function textIncDec($name, $params = array('value' => '', 'attrs' => '', 'options' => array(), 'onclick' => '', 'id' => '')) { if(!isset($params['attrs'])) $params['attrs'] = ''; $textId = (isset($params['id']) && !empty($params['id'])) ? $params['id'] : 'toeTextIncDec_'. mt_rand(9, 9999); $params['attrs'] .= ' id="'. $textId. '"'; $textField = self::text($name, $params); $onClickInc = 'toeTextIncDec(\''. $textId. '\', 1); return false;'; $onClickDec = 'toeTextIncDec(\''. $textId. '\', -1); return false;'; if(isset($params['onclick']) && !empty($params['onclick'])) { $onClickInc = $params['onclick']. ' '. $onClickInc; $onClickDec = $params['onclick']. ' '. $onClickDec; } $textField .= '
+
' . '
-
'; return $textField; } static public function colorpicker($name, $params = array('value' => '')) { $params['value'] = isset($params['value']) ? $params['value'] : ''; $params['attrs'] = isset($params['attrs']) ? $params['attrs'] : ''; $nameToClass = self::nameToClassId($name); $textId = self::nameToClassId($name, $params); if(strpos($params['attrs'], 'id="') === false) { $textId .= '_'. mt_rand(9, 9999); $params['attrs'] .= 'id="'. $textId. '"'; } //$pickerId = $textId. '_picker'; $params['attrs'] .= ' data-default-color="'. $params['value']. '"'; $out = self::text($name, $params); //$out .= '
'; $out .= ''; return $out; } static public function fontsList($name, $params = array('value' => '')) { static $options = array(); if(empty($options)) { // Fill them only one time per loading foreach(fieldAdapterGmp::getFontsList() as $font) $options[ $font ] = $font; } $params['options'] = $options; return self::selectbox($name, $params); } static public function checkboxHiddenVal($name, $params = array('attrs' => '', 'value' => '', 'checked' => '')) { $params['attrs'] = isset($params['attrs']) ? $params['attrs'] : ''; $checkId = self::nameToClassId($name, $params); if(strpos($params['attrs'], 'id="') === false) { $checkId .= '_check'; } $hideId = self::nameToClassId($name, $params). '_text'; $paramsCheck = $paramsHidden = $params; if(strpos($params['attrs'], 'id="') === false) { $paramsCheck['attrs'] .= ' id="'. $checkId. '"'; } $paramsCheck['attrs'] .= ' data-hideid="'. $hideId. '"'; $paramsHidden['attrs'] = ' id="'. $hideId. '"'; $paramsCheck['value'] = isset($paramsCheck['value']) ? $paramsCheck['value'] : ''; $paramsCheck['checked'] = $paramsCheck['value'] ? '1' : '0'; $out = self::checkbox(self::nameToClassId($name), $paramsCheck); $out .= self::hidden($name, $paramsHidden); $out .= ''; return $out; } static public function slideInput($name, $params = array('attrs' => '', 'checked' => false, 'id' => '')) { $params = !isset($params) || empty($params) ? array() : $params; if(!isset($params['id'])) { $params['id'] = self::nameToClassId($name, $params); if(strpos($params['attrs'], 'id="') === false) { $params['id'] .= '_'. mt_rand(1, 99999); } } $params['checked'] = isset($params['checked']) ? (int) $params['checked'] : 0; $params['attrs'] = isset($params['attrs']) && !empty($params['attrs']) ? $params['attrs'] : ''; $params['attrs'] .= ' id="'. $params['id']. '"'; return ' '. __('ON'). ' '. __('OFF'). ' '; } static public function galleryBtn($name, $params = array()) { $galleryType = isset($params['galleryType']) ? $params['galleryType'] : 'all'; $buttonId = self::nameToClassId($name, $params); $params['value'] = isset($params['value']) ? $params['value'] : ''; $params['attrs'] = isset($params['attrs']) ? $params['attrs'] : ''; if(strpos($params['attrs'], 'id="') === false) { $buttonId .= '_'. mt_rand(1, 99999); $params['attrs'] .= ' id="'. $buttonId. '"'; } $inputId = $buttonId. '_input'; $out = self::hidden($name, array('value' => $params['value'], 'attrs' => 'id="'. $inputId. '"')); $onChange = isset($params['onChange']) ? $params['onChange'] : ''; $buttonParams = $params; $buttonParams['value'] = isset($params['btnVal']) ? $params['btnVal'] : sprintf(__('Select %s', GMP_LANG_CODE), strFirstUp($galleryType)); $out .= self::button($buttonParams); $out .= ''; return $out; } static public function imgGalleryBtn($name, $params = array()) { $params['galleryType'] = 'image'; return self::galleryBtn($name, $params); } static public function audioGalleryBtn($name, $params = array()) { $params['galleryType'] = 'audio'; return self::galleryBtn($name, $params); } static public function checkedOpt($arr, $key, $value = true) { if(!isset($arr[ $key ])) return false; return $value === true ? $arr[ $key ] : $arr[ $key ] == $value; } /*static public function radialProgress($progress, $attrs = array()) { frameGmp::_()->addStyle('radial-progress', GMP_CSS_PATH. 'radial-progress.css'); $attrs['class'] = isset($attrs['class']) ? $attrs['class'] : ''; return '
-0%1%2%3%4%5%6%7%8%9%10%11%12%13%14%15%16%17%18%19%20%21%22%23%24%25%26%27%28%29%30%31%32%33%34%35%36%37%38%39%40%41%42%43%44%45%46%47%48%49%50%51%52%53%54%55%56%57%58%59%60%61%62%63%64%65%66%67%68%69%70%71%72%73%74%75%76%77%78%79%80%81%82%83%84%85%86%87%88%89%90%91%92%93%94%95%96%97%98%99%100%
'; }*/ }
Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/ticnews.com.br/web/wp-content/plugins/shortcodes-ultimate/includes/deprecated/functions.php on line 130

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/ticnews.com.br/web/wp-content/plugins/shortcodes-ultimate/includes/deprecated/functions.php on line 130

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/ticnews.com.br/web/wp-content/plugins/shortcodes-ultimate/includes/deprecated/functions.php on line 131

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/ticnews.com.br/web/wp-content/plugins/shortcodes-ultimate/includes/deprecated/functions.php on line 131

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/ticnews.com.br/web/wp-content/plugins/shortcodes-ultimate/includes/deprecated/functions.php on line 132

Deprecated: Array and string offset access syntax with curly braces is deprecated in /var/www/html/ticnews.com.br/web/wp-content/plugins/shortcodes-ultimate/includes/deprecated/functions.php on line 132

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/load.php on line 926

Notice: Trying to access array offset on value of type bool in /var/www/html/ticnews.com.br/web/wp-includes/theme.php on line 2360

Notice: Trying to access array offset on value of type bool in /var/www/html/ticnews.com.br/web/wp-content/plugins/download-monitor/src/DLM.php on line 236

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768
EVENTOS – TICNEWS
Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

EVENTOS


Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Veja aqui os eventos promovidos pela Área de Tecnologia da Informação da Estácio, bem como eventos indicados pela Coordenação de seu curso.

Reserve em seu calendário estas datas importantes do Mês Clique neste link para guardar as datas em sua agenda
Programação de Eventos Completa – Selecione o Mês/Evento desejado
Top

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Function get_magic_quotes_gpc() is deprecated in /var/www/html/ticnews.com.br/web/wp-includes/formatting.php on line 4768

Deprecated: Unparenthesized `a ? b : c ? d : e` is deprecated. Use either `(a ? b : c) ? d : e` or `a ? b : (c ? d : e)` in /var/www/html/ticnews.com.br/web/wp-content/plugins/google-maps-easy/modules/gmap/views/gmap.php on line 151
UA-131492759-1