Changeset 1190558
- Timestamp:
- 07/01/2015 01:25:31 AM (11 years ago)
- Location:
- dimbal-poll-manager/trunk
- Files:
-
- 7 edited
-
classes/class.DimbalEditor_DPM_PRO.php (modified) (1 diff)
-
classes/class.DimbalPollManager_DPM_PRO.php (modified) (4 diffs)
-
classes/class.DimbalPollQuestion_DPM_PRO.php (modified) (2 diffs)
-
classes/class.DimbalStandardLinkRecord_DPM_PRO.php (modified) (2 diffs)
-
index.php (modified) (2 diffs)
-
js/dimbal-dpm.js (modified) (4 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dimbal-poll-manager/trunk/classes/class.DimbalEditor_DPM_PRO.php
r1190543 r1190558 464 464 public static function saveEditorChanges($object, $options, $requestVars){ 465 465 466 error_log("Inside saveEditorChanges");466 //error_log("Inside saveEditorChanges"); 467 467 468 468 /* -
dimbal-poll-manager/trunk/classes/class.DimbalPollManager_DPM_PRO.php
r1190543 r1190558 234 234 $dimbalVars = array( 235 235 'slug' => DIMBAL_CONST_DPM_PRO_SLUG, 236 'page' => DIMBAL_CONST_DPM_PRO_PAGE_PREFIX, 236 237 'url' => DIMBAL_CONST_DPM_PRO_URL, 237 238 'ajax_url' => admin_url('admin-ajax.php'), … … 249 250 $dimbalVars = array( 250 251 'slug' => DIMBAL_CONST_DPM_PRO_SLUG, 252 'page' => DIMBAL_CONST_DPM_PRO_PAGE_PREFIX, 251 253 'url' => DIMBAL_CONST_DPM_PRO_URL, 252 254 'ajax_url' => admin_url('admin-ajax.php'), … … 387 389 public static function ajaxDisplayPoll(){ 388 390 389 error_log("Inside :: ".__CLASS__."::".__FUNCTION__);391 //error_log("Inside :: ".__CLASS__."::".__FUNCTION__); 390 392 391 393 $response = array(); … … 531 533 532 534 public static function ajaxSubmitPoll(){ 533 Dimbal_DPM_PRO::logMessage("Inside ".__FUNCTION__);535 //Dimbal_DPM_PRO::logMessage("Inside ".__FUNCTION__); 534 536 535 537 $response = array(); -
dimbal-poll-manager/trunk/classes/class.DimbalPollQuestion_DPM_PRO.php
r1190543 r1190558 583 583 $choices = array(); 584 584 foreach($this->choices as $choice){ 585 if($choice instanceof DimbalPollAnswerChoice){585 //if($choice instanceof DimbalPollAnswerChoice){ 586 586 if($simpleArray){ 587 587 $choices[$choice->id]=$choice->text; … … 589 589 $choices[$choice->id]=$choice; 590 590 } 591 }591 //} 592 592 } 593 593 //Logger::debug("ANSWER CHOICES: ".print_r($choices,true)); -
dimbal-poll-manager/trunk/classes/class.DimbalStandardLinkRecord_DPM_PRO.php
r1190543 r1190558 122 122 } 123 123 124 error_log(__CLASS__."::".__FUNCTION__." - Inside function column[$column] value[$value] tablename[$tableName]");124 //error_log(__CLASS__."::".__FUNCTION__." - Inside function column[$column] value[$value] tablename[$tableName]"); 125 125 126 126 // Query the Data … … 133 133 ); 134 134 135 error_log(__CLASS__."::".__FUNCTION__." - SQL : $sql");135 //error_log(__CLASS__."::".__FUNCTION__." - SQL : $sql"); 136 136 137 137 // Get the results -
dimbal-poll-manager/trunk/index.php
r1190555 r1190558 2 2 /* 3 3 * Plugin Name: Dimbal Poll Manager - Professional 4 * Version: 1.0. 34 * Version: 1.0.4 5 5 * Plugin URI: http://www.dimbal.com/ 6 6 * Description: A powerful Poll Management plugin allowing you to create and maintain user interest polls for your blog or website. … … 10 10 11 11 define('DIMBAL_CONST_DPM_PRO_SLUG', 'dimbal-poll-manager'); 12 define('DIMBAL_CONST_DPM_PRO_PAGE_PREFIX', 'dimbal-dpm ');12 define('DIMBAL_CONST_DPM_PRO_PAGE_PREFIX', 'dimbal-dpm-pro'); 13 13 define('DIMBAL_CONST_DPM_PRO_PLUGIN_TITLE', 'Dimbal Poll Manager'); 14 14 define('DIMBAL_CONST_DPM_PRO_PLUGIN_TITLE_SHORT', 'Dimbal Polls'); -
dimbal-poll-manager/trunk/js/dimbal-dpm.js
r1190543 r1190558 21 21 initialized:false, 22 22 slug:"DIMBAL_CONST_DPM_PRO_SLUG", 23 page:"DIMBAL_CONST_DPM_PRO_PAGE_PREFIX", 23 24 url_root:"", 24 25 url_ajax:"", … … 57 58 } 58 59 60 console.log("SLUG: "+this.slug); 61 59 62 // Setup the URLS 63 //this.page = dimbal_dpm_vars.page; 60 64 this.url_root = dimbal_dpm_vars.url; 61 65 this.url_ajax = dimbal_dpm_vars.ajax_url; … … 78 82 elements[i].setAttribute("id", elementId); 79 83 } 84 85 //console.log("Page: "+dimbalPoll_DPM_PRO.page); 80 86 81 87 // Setup the proper Display Ajax Action … … 333 339 334 340 widgetChangeType:function(elemId, typeId) { 335 console.log("Widget Change Type: elemId["+elemId+"] typeId["+typeId+"]");341 //console.log("Widget Change Type: elemId["+elemId+"] typeId["+typeId+"]"); 336 342 jQuery('.dimbal_dpm_widget_wrapper_'+elemId).hide(); 337 343 var elementName = elemId+"_"+typeId; 338 console.log("Final Element Name: "+elementName);344 //console.log("Final Element Name: "+elementName); 339 345 jQuery("."+elementName).show(); 340 346 }, -
dimbal-poll-manager/trunk/readme.txt
r1190555 r1190558 5 5 Requires at least: 3.0.1 6 6 Tested up to: 4.2 7 Stable tag: 1.0. 37 Stable tag: 1.0.4 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 39 39 == Changelog == 40 40 41 = 1.0.4 = 42 * Bug Fixes 43 44 = 1.0.3 = 45 * Bug Fixes 46 41 47 = 1.0.2 = 42 48 * Bug Fixes
Note: See TracChangeset
for help on using the changeset viewer.