framework\modules\core\controllers\expTagController.php 2

Type Line Description
FIXME 122 here is a hack to get the faq to be listed
FIXME 183 here is a hack to get the faq to be listed

framework\core\forms\controls\bootstrap3\yuicalendarcontrol.php 1

Type Line Description
FIXME 56 $disable_text & $showtime are NOT used

framework\plugins\bootstrap\function.ddrerank.php 1

Type Line Description
FIXME 74 we don't seem to get a container var

framework\core\forms\controls\bootstrap\checkboxcontrol.php 1

Type Line Description
FIXME 140 this is just here until we completely deprecate the old school checkbox

framework\modules\ecommerce\controllers\shippingController.php 7

Type Line Description
FIXME 62 we do NOT want the global $order
FIXME 66 a lot of work just to get one set of data since we'll be doing it again for cart/checkout redisplay...maybe cache???
FIXME 103 do we ever call this?
FIXME 105 we do NOT want the global $order
FIXME 108 perhaps check for cached rates if calculator didn't change???
FIXME 138 this model has no listPrices() method???
FIXME 188 we need to ensure our default calculator is still active...not sure this does it

exponent_constants.php 2

Type Line Description
FIXME 39 PATH_RELATIVE definition will break in certain parts when the server does not offer the Document_root.
FIXME 40 Notable, it breaks in the installer.

framework\modules\ecommerce\models\shippingcalculator.php 1

Type Line Description
FIXME 53 probably needs to be passed order object

framework\modules\ecommerce\billingcalculators\payflowpro.php 4

Type Line Description
FIXME 70 why aren't we passing $opts?
FIXME 518 not sure this is correct, but we need to update billingmethod
FIXME 637 not sure this is correct, but we need to update billingmethod
FIXME 758 not sure this is correct, but we need to update billingmethod

framework\modules\report\controllers\reportController.php 4

Type Line Description
FIXME 110 OLD calendar control format
FIXME 947 there is no billingmethod->title ...this is translated??
FIXME 1984 this is NOT in import
FIXME 2027 this is NOT in import

framework\modules\ecommerce\models\shipping.php 4

Type Line Description
FIXME 32 we don't use this in shipping, only order?
FIXME 35 we do NOT want the global $order
FIXME 86 , we don't really need to call it each time the shipping model is created! slows entire system down!
FIXME 230 we need to get current address here

framework\core\forms\template.php 1

Type Line Description
TODO 28 prepare this class for multiple template systems

framework\modules\administration\menus\admin.php 1

Type Line Description
FIXME 281 should a group admin get the entire User Management menu?

install\upgrades\upgrade_forms.php 2

Type Line Description
FIXME 103 do we want to add a forms_id field?
FIXME 214 ???

framework\modules\ecommerce\billingcalculators\worldpayCheckout.php 4

Type Line Description
TODO 23 make into php5 class with access modifiers properties and all that jazz.
FIXME 122 already unserialized?? == $opts???
FIXME 130 is 'complete' and $grand_total proper?
FIXME 178 we don't store a 'token'

framework\core\forms\controls\jquery\listbuildercontrol.php 1

Type Line Description
FIXME 22 this is NOT a bootstrap control, but jQuery

framework\modules\ecommerce\products\models\product.php 7

Type Line Description
FIXME 140 Make this actually do something.
FIXME 203 adjust multiple quantity here
FIXME 233 adjust multiple quantity here for child products???
FIXME 411 adjust multiple quantity here
FIXME 495 was this replaced by orderitem->getFormattedExtraData() ? It's not used
FIXME 982 $product_type is not set, changed to $product->product_type
FIXME 1050 not sure why we are creating 2 array entries??

framework\plugins\function.chain.php 2

Type Line Description
FIXME 35 old school way of calling?
FIXME 43 old school only?

framework\modules\recyclebin\models\recyclebin.php 1

Type Line Description
FIXME 108 we should only send module with sources or configs to the recycle bin NOT things like rss, addressbook

framework\core\forms\controls\statescontrol.php 1

Type Line Description
FIXME 55 this is the US in sample db

framework\core\subsystems\expLabels.php 2

Type Line Description
FIXME 144
FIXME 158 need to integrate into expHTMLToPDF

framework\modules\events\controllers\eventController.php 6

Type Line Description
FIXME 340 this can't be right?
FIXME 343 this can't be right?
FIXME 1441 must convert $dtstart timezone
FIXME 1454 must convert $dtend timezone
FIXME 1577 we must have the real timezone offset for the date by this point
FIXME 1579 this is for the google ical feed which is bad!

framework\modules\company\controllers\companyController.php 1

Type Line Description
TODO 124 this is a misnomer as we only accept an id NOT a title and duplicates the show() method

framework\core\subsystems\expMail.php 10

Type Line Description
FIXME 169 won't work since $params['connections'] is NOT array
FIXME 170 won't work since $params['connections'] is NOT array
TODO 74 add support for telling the constructor where the system specific Mail Transit Authority is: i.e. where sendmail or exim is if not in the default /usr/sbin
TODO 74 drop support for passing in custom "connections", a Swift 3.x relic that we do not need.
TODO 74 add further documentation for using settings other than the system default
TODO 219 Update this section to use more error checking
TODO 267 May add allowing a string param to be passed as the message (text_message) using all defaults to mail it.
TODO 398 Update this section to use batch processing properly
TODO 517 add support for other types of headers mentioned below, and a second pass in value/switch to specify what kind headers you are adding # Text Headers Text headers are the simplest type of Header. They contain textual information with no special information included within it for example the Subject header in a message. # Parameterized Headers Parameterized headers are text headers that contain key-value parameters following the textual content. The Content-Type header of a message is a parameterized header since it contains charset information after the content type. # Date Headers Date headers contains an RFC 2822 formatted date (i.e. what PHP's date('r') returns). They are used anywhere a date or time is needed to be presented as a message header. # Mailbox (e-mail address) Headers Mailbox headers contain one or more email addresses, possibly with personalized names attached to them. The data on which they are modeled is represented by an associative array of email addresses and names. # ID Headers ID headers contain identifiers for the entity (or the message). The most notable ID header is the Message-ID header on the message itself. # Path Headers Path headers are like very-restricted mailbox headers. They contain a single email address with no associated name. The Return-Path header of a message is a path header.
TODO 690 A nice future feature addition would be to allow the passing in of associative arrays like so: $emailsToSendTo = array('bob@smith.com'=>'Bob Smith', 'mary@smith.com'=>'Mary Smith'); $emailItem->addTo($emailsToSendTo); OR $emailItem->addTo('array('myemail@mysite.com'=>'Website Owner', 'secondemail@website.com'=>'Frank Jones'); Actually, cleanup should be done so that this function only takes associative arrays, and nothing else.

framework\modules\blog\controllers\blogController.php 3

Type Line Description
FIXME 438 $object not set
FIXME 440 $object not set
FIXME 442 $object not set

framework\modules\twitter\models\Twitter.php 1

Type Line Description
TODO 247 refactor me

framework\modules\ecommerce\controllers\billingController.php 1

Type Line Description
FIXME 93 we need to ensure our default calculator is still active

framework\modules\forms\controllers\formsController.php 10

Type Line Description
FIXME 433 not sure we need this here
FIXME 1237 change this to an expValidator call
FIXME 1274 we also need to update any config column_names_list settings?
FIXME 1447 should we default to only 5 columns or all columns? and should we pick up modules columns ($this->config) or just form defaults ($f->)
FIXME 1611 $individual_Header is ALWAYS in $rptcols?
FIXME 1675 we need to echo inside call
FIXME 1695 check for duplicate form data table name before import?
FIXME 1774 quick hack to remove file model
FIXME 1834
FIXME 1955 quick hack to remove file model

framework\core\forms\controls\checkboxcontrol.php 1

Type Line Description
FIXME 145 this is just here until we completely deprecate the old school checkbox

framework\modules\users\models\user.php 2

Type Line Description
FIXME 82 will be empty for new ldap user
FIXME 309 who should get a slingbar? any non-view permissions? new group setting?

framework\modules\file\models\expFile.php 4

Type Line Description
FIXME 1783 we need to echo and/or write to file within this method to handle large database dumps
FIXME 1829 $dump may become too large and exhaust memory
FIXME 2139 we may have to change this for handling large files via fgets()...see dumpDatabase() above
FIXME 2185 should we convert this? object2array?

framework\plugins\modifier.convertlangcode.php 1

Type Line Description
FIXME 38 this plugin isn't used, but this will at least return something

framework\modules\ecommerce\controllers\orderController.php 30

Type Line Description
FIXME 121 this sql isn't correct???
FIXME 199 we don't really want to 'pop' it off the object
FIXME 223 what about new orders with no items??
FIXME 237 what about new orders with no items??
FIXME 320 we'll use the tc param for now
FIXME 452 uncomment to implement, comment out above
FIXME 461 uncomment to implement, comment out above
FIXME 702 never used
FIXME 863 Unless you need each mail sent separately, you can now set 'to'=>$email_addys and let expMail send a single email to all addresses
FIXME 910 we should also be getting the order status name
FIXME 1043 already unserialized???
FIXME 1048 credit card doesn't have a result
FIXME 1075 should this be discrete??
FIXME 1088 should it always be the grand total???
FIXME 1100 only getting 1st one and then removing it
FIXME 1140 for now multiple shipping methods will crash ecom with shipping->__construct()
FIXME 1183 check for existing rate, if not get next cheapest? (based on predefined package?)
FIXME 1196 updated with new options we may need to take action on like tracking number?
FIXME 1269 should we add the params to the $sm->shipping_options, or pass them??
FIXME 1398 do we need to do this?
FIXME 1534 add a fake item?
FIXME 1564 only getting 1st one and then removing it
FIXME 1603 only getting 1st one and then removing it
FIXME 1683 we don't use selectedOpts?
FIXME 1713 only getting 1st one and then removing it
FIXME 1820 only getting 1st one and thenremoving it
FIXME 1838 attempt to update w/ new billing transaction
FIXME 1864 we need to be able to call this from program with $params also, addToOrder
FIXME 1885 attempt to update w/ new billing transaction
FIXME 1944 attempt to update w/ new billing transaction

framework\modules\ecommerce\billingcalculators\creditcard.php 1

Type Line Description
FIXME 108 we need to display/obtain user information if we are doing a quickPay checkout???

framework\core\subsystems\expCore.php 4

Type Line Description
FIXME 95 Hardcoded controller stuff!!
FIXME 143 $sef_name isn't set??
TODO 279 Investigate the chances of BASE occurring more than once
FIXME 565 $individual_Header is ALWAYS in $rptcols?

framework\core\subsystems\expTemplate.php 29

Type Line Description
FIXME 40 only called from basetemplate->_construct() NOT controllertemplate
FIXME 41 only place this method is called, move to this subsystem?
FIXME 59 Not Used 2.2???
FIXME 72 Not Used 2.2???
FIXME 126 Not Used 2.2???
FIXME 150 DEPRECATED: backward compatibility wrapper
FIXME 151 Not Used???
FIXME 191 only used by container 2.0 edit action
FIXME 219 we need to also look for custom & jquery & bootstrap controls and NOT assume we only subclass basic controls?
FIXME 235 we need to also look for custom & jquery & bootstrap controls and NOT assume we only subclass basic controls?
FIXME 321 remove old school module code
TODO 322 implement caching
TODO 323 optimization - walk the tree backwards and stop on the first match
TODO 333 convert everything to the new naming model
TODO 356 forms/calendar only used by calendarmodule
TODO 380 forms/calendar only used by calendarmodule
TODO 381 forms/calendar only used by calendarmodule
TODO 394 forms/calendar only used by calendarmodule
FIXME 410 old school actions were php files
TODO 423 handle subthemes
TODO 424 now that glob is used build a syntax for it instead of calling it repeatedly
TODO 439 handle the - currently unused - case where there is the same file in different $type categories
TODO 452 invent better error handling, maybe an error message channel ?
FIXME 471 only used by 1) event module edit action (email forms) & 2) expTemplate::listModuleViews for OS modules
FIXME 720 should there be a theme newui variation?
FIXME 721 should there be a theme newui variation?
FIXME 782 this function isn't called
FIXME 808 we assume the file is only a filename and NOT a path?
FIXME 815 we need to check for custom views and add full path for system views if coming from custom view

install\pages\install-3.php 1

Type Line Description
FIXME 301 not sure if we should do this?

framework\core\subsystems\expVersion.php 2

Type Line Description
FIXME 157 we need a good installation/server to place this on
FIXME 159 substitute until git fixed on exponent servers

framework\core\forms\filetemplate.php 1

Type Line Description
FIXME 26 Never used???

install\upgrades\upgrade_calendar.php 1

Type Line Description
FIXME 255 we also need to copy any .form & .config files

framework\plugins\newui\function.ddrerank.php 1

Type Line Description
FIXME 74 we don't seem to get a container var

framework\core\subsystems\expJavascript.php 2

Type Line Description
FIXME 393 we need to allow for an array of scripts with unique+index as name
FIXME 734 $hide & $footer are not defined below

framework\modules\ecommerce\definitions\shippingmethods.php 4

Type Line Description
FIXME 28 needed to activate the has_many assignment
FIXME 88 is this a 'shipping_options' item??
FIXME 92 moved from orders table
FIXME 96 moved from orders table

framework\modules\ecommerce\billingcalculators\passthru.php 3

Type Line Description
FIXME 70 doesn't match parent declaration update($params = array())
FIXME 87 never used
FIXME 152 why aren't we passing $opts?

framework\plugins\block.assocarray.php 1

Type Line Description
FIXME 148 we discard this result?

framework\core\forms\controls\jquery\calendarcontrol.php 1

Type Line Description
FIXME 24 this is NOT a bootstrap control, but jQuery

framework\modules\ecommerce\definitions\orders.php 6

Type Line Description
FIXME 49 we may need to move this to the shippingmethod
FIXME 53 we may need to move this to the shippingmethod
FIXME 58 here because we currently only allow one package?
FIXME 62 we may want this since there is only one and NOT many?
FIXME 82 is this actual or estimated, move this to the shippingmethod?
FIXME 132 deprecated order gift message??

framework\modules\administration\menus\y-navigation.php 1

Type Line Description
FIXME 117 do we just need to let any user w/ manage page perms to get to the manage menu hierarchy and let it decide perms from there?

framework\core\forms\controls\jquery\yuidatetimecontrol.php 1

Type Line Description
FIXME 24 this is NOT a bootstrap control, but jQuery

framework\plugins\function.userlistcontrol.php 1

Type Line Description
TODO 45 should we display username w/ first/last name in parens or first/last name?

framework\core\subsystems\expTheme.php 23

Type Line Description
FIXME 534 Not used
FIXME 543 $form is not set??
FIXME 550 Not used
FIXME 562 this should be $file instead of $filename?
FIXME 621 need to use $feed instead of $params
FIXME 861 clean our passed parameters
FIXME 862 need array sanitizer
FIXME 869 we've already sanitized at this point
FIXME 871 we've already sanitized at this point
FIXME 874 module/controller glue code..remove ASAP
FIXME 939 only used by smarty functions, old school?
FIXME 946 need array sanitizer
FIXME 1023 not sure how to convert this yet
FIXME 1059 change to showModule call
FIXME 1100 patch to cleanup module name
FIXME 1110 there is no such config index
FIXME 1151 patch to cleanup module name
FIXME 1157 let's try $sectionObj instead of last_section
FIXME 1184 not used in base system (custom themes?)
FIXME 1334 - $section might be empty! We're getting it from last_section instead of sectionObj??
FIXME 1337 let's try $sectionObj instead of last_section
FIXME 1389 patch to cleanup module name
FIXME 1462 we are checking here for a new MVC style controller or an old school module. We only need to perform

framework\modules\ealerts\models\expeAlerts.php 1

Type Line Description
FIXME 58 , not pulling any items?

framework\modules\ecommerce\billingcalculators\ezic.php 3

Type Line Description
TODO 38 I don't think this is used any more but i don't have a clue
FIXME 213 hard coded text!!
FIXME 223 hard coded text!!

framework\plugins\outputfilter.trim.php 1

Type Line Description
TODO 37 substr_replace() is not overloaded by mbstring.func_overload - so this function might fail!

framework\modules\file\controllers\fileController.php 5

Type Line Description
FIXME 489 json error checking/reporting, may no longer be needed
FIXME 718 we exit before hitting this
FIXME 735 we exit before hitting this
TODO 875 we need to write inside call passing $eql file pointer
FIXME 902 we need to echo inside call

framework\core\forms\formtemplate.php 1

Type Line Description
FIXME 29 only used by calendarmodule for feedback forms

framework\core\forms\controls\bootstrap3\uploadcontrol.php 2

Type Line Description
FIXME 209 this shouldn't be a link
FIXME 218 this shouldn't be a link

framework\core\subsystems\database\mysqli.php 3

Type Line Description
TODO 61 determine how to handle encoding on postgres
FIXME 330 we don't add column length??
FIXME 1358 this can run us out of memory with too many rows

framework\modules\ecommerce\controllers\cartController.php 7

Type Line Description
FIXME 115 shouldn't this be relegated to $product->addToCart???
FIXME 171 though currently unused we don't account for minimym nor multiple quantity settings
FIXME 588 $opts is usually empty
FIXME 722 $comment doesn't exist
FIXME 783 we exit earlier if shipping_required???
TODO 834
FIXME 844 $opts is usually empty

framework\core\models\expRecord.php 12

Type Line Description
FIXME 459 only placed used is in helpController->copydocs (though we don't have attachments), & migration
FIXME 465 plural vs single?
FIXME 466 plural vs single?
FIXME 497 we're not going to do this automagically until we get the refreshing figured out.
FIXME 640 $where .= empty($this->rank_by_field) ? null : "AND " . $this->rank_by_field . "='" . $this->$this->rank_by_field . "'";
FIXME 725 find a better way to pluralize these names!!!
FIXME 726 find a better way to pluralize these names!!!
FIXME 857 not used??
FIXME 904 is it plural where others are single?
FIXME 968 find a better way to unpluralize the name!
TODO 1023 perhaps add a 'in' option to the find so we can pass an array of ids and make ONE db call instead of looping
FIXME 1113 not used??

install\index.php 2

Type Line Description
FIXME 73 is this still necessary?
FIXME 127 we need to output this into an element and not simply out on the page

framework\modules\ecommerce\controllers\eventregistrationController.php 12

Type Line Description
FIXME 283 we only have 0=active & 2=inactive ???
TODO 341 should we pull in an existing reservation already in the cart to edit? e.g., the registrants
FIXME 342 we only have 0=active & 2=inactive ???
FIXME 483 only used by the eventregistration_form view (no method)
FIXME 496 $product doesn't exist
FIXME 540 change this to forms table
FIXME 590 $opts doesn't exist
FIXME 861 if $registrant->value != $this->params['value'] update order/invoice w/ new quantity???
FIXME 934 we don't have a 'guest' definable field type
FIXME 1036 reset & pulled from above
FIXME 1037
FIXME 1132 this is never used

framework\modules\ecommerce\billingcalculators\paypalExpressCheckout.php 9

Type Line Description
TODO 23 make into php5 class with access modifiers proprities and all that jazz.
FIXME 258 why aren't we passing $opts?
FIXME 281 why aren't we passing $opts?
FIXME 367 , what can we do with the note returned?
FIXME 378 only true if mode is 'sale'
FIXME 467 what about multiple captures?
FIXME 539 we probably need a payment_status
FIXME 627 we probably need a payment_status
FIXME 948 Deprecated now in favor of above standard

framework\modules\ecommerce\models\billingcalculator.php 3

Type Line Description
FIXME 201 this is only the 'results' property unlike $bm???
FIXME 202 what is this used for?
FIXME 203 we need a transaction_state of complete, authorized, authorization pending, error, void, or refunded; or paid or payment due

framework\core\forms\controls\bootstrap\radiocontrol.php 1

Type Line Description
FIXME 53 does this mess up validation styling?

framework\modules\ecommerce\models\discounts.php 1

Type Line Description
FIXME 116 we do NOT want the global $order

cron\lang_extract.php 1

Type Line Description
FIXME 146 these tend to hold computations and likewise break things?

cron\generateXMLFeed.php 6

Type Line Description
FIXME 128 g:title
FIXME 140 g:link
FIXME 144 g:description
FIXME 152 add currency type <g:price>15.00 USD</g:price>
FIXME 157 add currency type <g:price>15.00 USD</g:price>
FIXME 200 g:product_type is our cat, g:google_product_category is their cat

framework\modules\ecommerce\billingcalculators\cash.php 1

Type Line Description
FIXME 48 why aren't we passing $opts?

framework\core\forms\controls\bootstrap3\listbuildercontrol.php 1

Type Line Description
FIXME 22 this is NOT a bootstrap control, but jQuery

framework\modules\ecommerce\shippingcalculators\fedexcalculator.php 4

Type Line Description
FIXME 173 we need to be able to set this
FIXME 179 we need to be able to set this
FIXME 211 we need to be able to set this
FIXME 217 we need to be able to set this

framework\core\forms\controls\htmleditorcontrol.php 1

Type Line Description
TODO 103 Convert to OO API and use eXp->EditorControl->doneInit instead

framework\core\forms\controls\bootstrap\uploadcontrol.php 2

Type Line Description
FIXME 180 this shouldn't be a link
FIXME 189 this shouldn't be a link

framework\modules\importexport\controllers\importexportController.php 6

Type Line Description
FIXME 168 this may crash on large .eql files
FIXME 219 this may crash on large .eql files
FIXME 278 we can't handle file attachments since this is only a db import
FIXME 397 we need to echo inside call
FIXME 621 this is where canonical should be
FIXME 849 this is where canonical should be

framework\modules\ecommerce\products\models\eventregistration.php 6

Type Line Description
FIXME 38 only if a cost is involved
FIXME 244 not sure this accurate based on expDefinableFields & Forms
FIXME 376 for now we'll just add a new registration 'purchase' to the cart since that's the way the code flows.
FIXME 379 we are adding updating an existing item in the cart??
FIXME 572 we need to be dealing w/ eventregistration_registrants here also/primarily
FIXME 683 there is no 3rd param for this

framework\core\subsystems\expPaginator.php 4

Type Line Description
FIXME 212 we don't get attachments in this approach
FIXME 253 we may want some more intelligent selection here based on cats/groups, e.g., don't break groups across pages, number of picture rows, etc...
FIXME 377 module/controller glue code
FIXME 427 return 404 error for infinite page scroll plugin

framework\modules\ecommerce\billingcalculators\paylater.php 1

Type Line Description
FIXME 54 why aren't we passing $opts?

framework\core\subsystems\expPermissions.php 1

Type Line Description
FIXME 105 for v2.2.2 and earlier this was true

framework\plugins\function.yuimenubar.php 1

Type Line Description
FIXME 36 convert to yui3

framework\plugins\function.ddrerank.php 1

Type Line Description
FIXME 72 we don't seem to get a container var

framework\plugins\function.yuimenu.php 1

Type Line Description
FIXME 36 convert to yui3

framework\modules\core\controllers\expCommentController.php 7

Type Line Description
FIXME 53 here is where we might sanitize the comment before displaying/editing it
FIXME 101 here is where we might sanitize the comments before displaying them
FIXME 153 here is where we might sanitize the comments before displaying them
FIXME 154 this should follow the site attribution setting
FIXME 300 here is where we might sanitize the comments before displaying them
FIXME 301 this should follow the site attribution setting
FIXME 456 here is where we might sanitize the comments before approving them

framework\core\subsystems\database\mysqlid.php 1

Type Line Description
TODO 134 determine how to handle encoding on postgres

framework\modules\administration\controllers\administrationController.php 2

Type Line Description
FIXME 29 this requires a logged in user to perform?
FIXME 840 shouldn't use echo

framework\core\subsystems\expSession.php 2

Type Line Description
FIXME 302 is this data used to measure abandoned carts
FIXME 470 not currently used

framework\core\expFramework.php 9

Type Line Description
FIXME 312 this is now handled by the template class during get_template_for_action since it only sets template variables
FIXME 411 ? if the assoc $perm doesn't exist, the 'action' will ALWAYS be allowed, e.g., default is to allow action
FIXME 471 there is NO 'page' object and section has no _construct method
FIXME 473 there is no getModulesBySource method anywhere
FIXME 533 this works by making assumptions
FIXME 570 is this the correct sequence spot?
FIXME 687 newui take priority
FIXME 713 shoudl there be a theme newui variation?
FIXME 935 do we need to update this to HTML5 and only include the space?

framework\modules\help\models\help.php 1

Type Line Description
FIXME 209 $where .= empty($this->rank_by_field) ? null : "AND " . $this->rank_by_field . "='" . $this->$this->rank_by_field . "'";

framework\core\subsystems\expSettings.php 8

Type Line Description
FIXME 175 only used with themes and self::change() method
FIXME 197 is this still necessary since we stripslashes above???
FIXME 273 this method is only used in install, and doesn't deal with profiles
FIXME 380 this method is never used
FIXME 471 this method is never used
FIXME 554 do we need to delete an existing profile first??
FIXME 572 this method is never used
FIXME 596 do we need to delete current config first??

framework\core\controllers\expController.php 11

Type Line Description
FIXME 29 not used and not actually set right index needed of -3 instead of -2 below
FIXME 30 never used, $basemodel_name replaced?
FIXME 94 this requires we move the 'core' controllers into the modules folder or use this hack
FIXME 904 already assigned in controllertemplate?
FIXME 909 $controller already assigned baseclassname (short vs long) in controllertemplate?
FIXME 1472 $object not set
FIXME 1474 $object not set
FIXME 1476 $object not set
FIXME 1500 $object not set
FIXME 1502 $object not set
FIXME 1504 $object not set

framework\modules\ecommerce\controllers\storeCategoryController.php 3

Type Line Description
FIXME 226 or should this simply be 'category'?
FIXME 279 or should this simply be 'category' and a rank?
FIXME 292 or should this simply be 'category' and a rank?

framework\core\forms\controls\jquery\popupdatetimecontrol.php 1

Type Line Description
FIXME 24 this is NOT a bootstrap control, but jQuery

framework\modules\ecommerce\controllers\storeController.php 7

Type Line Description
FIXME 33 image variant needs a separate method
FIXME 669 we simply do all now
FIXME 1064 bad sql statement needs to be a JOIN
FIXME 1150 we also need a showFullTree_images method like above
FIXME 2062 what about 'complete'?
FIXME 2767 this is where canonical should be
FIXME 2995 this is where canonical should be

framework\core\forms\controls\tagtreecontrol.php 1

Type Line Description
FIXME 124 convert to yui3 because of call to exp-tree.js

framework\core\subsystems\expModules.php 2

Type Line Description
FIXME 64 , not needed?
FIXME 130 , not needed?

framework\modules\eaas\controllers\eaasController.php 4

Type Line Description
FIXME 80 this doesn't seem to work correctly in this scenario
FIXME 191 must replace with media player and then removed
FIXME 329 we shoud be getting upcoming events
FIXME 330 needs 'upcoming' type of find

framework\modules\ecommerce\products\models\giftcard.php 2

Type Line Description
FIXME 114 we're missing the category, but we don't give gifts categories?
FIXME 115 $catConfig doesn't exist

framework\core\subsystems\expHtmlToPDF.php 4

Type Line Description
FIXME 1269 method no longer exists???
FIXME 1281 protected property???
FIXME 1295 protected property???
FIXME 1298 method no longer exists???

framework\modules\ecommerce\shippingcalculators\upscalculator.php 6

Type Line Description
FIXME 115 kludge for the giftcard shipping
FIXME 151 we need to be able to set this
FIXME 156 we need to be able to set this
FIXME 184 we need to be able to set this
FIXME 189 we need to be able to set this
FIXME 200 adding a $5 fee if shipping a gift card???

framework\core\forms\controls\uploadcontrol.php 2

Type Line Description
FIXME 168 this shouldn't be a link
FIXME 177 this shouldn't be a link

framework\plugins\bootstrap3\function.ddrerank.php 1

Type Line Description
FIXME 74 we don't seem to get a container var

cron\bootstrap.php 1

Type Line Description
TODO 66 Swift 3.x is no longer available, but expMail is already waiting

framework\core\subsystems\expDatabase.php 10

Type Line Description
FIXME 154 we shouldn't echo this, already installed?
FIXME 212 we shouldn't echo this, already installed?
FIXME 1086 never used
FIXME 1100 never used
FIXME 1135 never used
FIXME 1160 never used
FIXME 1222 never used
FIXME 1418 never used
FIXME 1459 never used
FIXME 1713 never used

framework\plugins\function.control.php 5

Type Line Description
FIXME 277 this is the US in sample db
FIXME 361 we don't really use this
FIXME 362 we don't really use this
FIXME 379 not sure we need this here
FIXME 531 is value always == default?

framework\core\forms\controls\yuicalendarcontrol.php 1

Type Line Description
FIXME 49 $disable_text & $showtime are NOT used

framework\modules\banners\controllers\bannerController.php 1

Type Line Description
FIXME 158 we are using a full path BASE instead of relative to root

framework\modules\core\controllers\expDefinableFieldController.php 1

Type Line Description
FIXME 50 $record & $tag are undefined

framework\core\subsystems\expRouter.php 8

Type Line Description
FIXME 238 why would $user be empty here unless $db is down?
FIXME 239 debug test
FIXME 286 what are we doing with this history? saving each page load
FIXME 692 this method is never called and doesn't do anything as written
FIXME 805 need array sanitizer
FIXME 809 debug test
TODO 811 fully sanitize all params values here for ---We already do this!
FIXME 893 , we still need a good lighttpd.conf rewrite config for sef_urls to work

framework\modules\ecommerce\models\order.php 6

Type Line Description
FIXME 27 in reality we only have one billingmethod???
FIXME 41 we don't seem to use this
FIXME 65 we could auto-associate these with has_many
FIXME 67 we could auto-associate these with get_assoc_for
TODO 661 We need to use produce_price_adjusted in the loops to accommodate for more than one discount
FIXME 761 not written for multiple shipments/destinations

index.php 1

Type Line Description
FIXME 145 timeout before closing an empty pdf or html2pdf error window

framework\plugins\function.rating.php 1

Type Line Description
FIXME 57 we need to be able to get a expRating record based on:

exponent_php_setup.php 1

Type Line Description
FIXME 56 does NOT exist

framework\modules\container\controllers\containerController.php 3

Type Line Description
TODO 69 we currently don't use the container cache
FIXME 158 old school config
FIXME 170 old school config

framework\plugins\compiler.exp_include.php 2

Type Line Description
FIXME 102 we assume the file is only a filename and NOT a path?
FIXME 118 we need to check for custom views and add full path for system views if coming from custom view

framework\modules\core\controllers\expCatController.php 1

Type Line Description
FIXME 112 here is a hack to get the faq to be listed

exponent.js.php 2

Type Line Description
FIXME 35 deprecated
FIXME 38 deprecated

framework\modules\ecommerce\shippingcalculators\easypostcalculator.php 14

Type Line Description
FIXME 233 for now just doing a single package
FIXME 251 end single package
FIXME 275 we need to be able to set this
FIXME 280 we need to be able to set this
FIXME 293 we need to begin adding the rates per package here
FIXME 320 we need to be able to set this
FIXME 325 we need to be able to set this
FIXME 337 we need to begin adding the rates per package here
FIXME 347 single package
FIXME 351 single package
FIXME 459 old code
FIXME 562 not sure we need to get/save these???
FIXME 587 we need to select the correct carrier/method based on package type/size
FIXME 686 not sure we need to get/save these???

framework\core\forms\controls\jquery\yuicalendarcontrol.php 2

Type Line Description
FIXME 24 this is NOT a bootstrap control, but jQuery
FIXME 57 $disable_text & $showtime are NOT used

framework\modules\ecommerce\models\taxclass.php 1

Type Line Description
FIXME 67 we need to ensure any applicable origin tax is at the top of the list

framework\plugins\block.toggle.php 1

Type Line Description
FIXME 66 replace w/ a system default?

framework\plugins\function.scaffold.php 1

Type Line Description
FIXME 58 $default_value is NOT set

install\upgrades\remove_oldtables.php 1

Type Line Description
FIXME 41 this is NEVER run!

exponent.php 2

Type Line Description
FIXME 48 test
TODO 63 Maxims initial anonymous user implementation, we need an anonymous user record

framework\modules\events\models\event.php 1

Type Line Description
FIXME 210 hack in case the day of week wasn't checked off

framework\modules\navigation\controllers\navigationController.php 7

Type Line Description
FIXME 627 if we delete the module & sectionref the module completely disappears
FIXME 630 more module/controller glue code
FIXME 882 $manage_all is moot w/ cascading perms now?
FIXME 887 recode to use foreach $key=>$value
FIXME 942 this breaks jstree if we remove a parent and not the child
FIXME 1114 we come here for new/edit content/standalone pages
FIXME 1115 Allow non-administrative users to manage certain parts of the section hierarchy.

framework\modules\text\controllers\textController.php 1

Type Line Description
FIXME 112 we don't load any custom stuff in this view except skin & plugins

framework\modules\ecommerce\billingcalculators\splitcreditcard.php 6

Type Line Description
TODO 46 I don't think this is used any more but i don't have a clue
FIXME 54 why aren't we passing $opts?
FIXME 60 this is where we lose the split credit card data
FIXME 185 we do NOT want the global $order
FIXME 202 we do NOT want the global $order
FIXME 214 we don't store a 'token'

framework\modules\core\controllers\expSimpleNoteController.php 5

Type Line Description
FIXME 67 here is where we might sanitize the note before displaying/editing it
FIXME 114 here is where we might sanitize the notes before displaying them
FIXME 167 here is where we might sanitize the notes before displaying them
FIXME 208 here is where we might sanitize the note before saving it
FIXME 283 here is where we might sanitize the note before approving it

framework\modules\ecommerce\billingcalculators\authorizedotnet.php 6

Type Line Description
FIXME 69 why aren't we passing $opts?
FIXME 98
FIXME 295 what to do with this?
FIXME 367 what to do with this?
FIXME 385 initialize the amount??
FIXME 440 what to do with this?

framework\modules\portfolio\controllers\portfolioController.php 1

Type Line Description
FIXME 89 we need to change this to expPaginator to get category grouping

framework\modules\ecommerce\models\billing.php 1

Type Line Description
FIXME 56 we do NOT want the global $order

framework\core\subsystems\expCSS.php 9

Type Line Description
FIXME 169 we ONLY output primercss, corecss, links, and inline styles in $params['css']... with less processing
FIXME 302 test
FIXME 303 test
FIXME 304 test
FIXME 305 test
FIXME 309 test
FIXME 310 test
FIXME 311 test
FIXME 714 docs recommends, but dist only has 6 digits of precision

framework\modules\ecommerce\models\shippingmethod.php 4

Type Line Description
FIXME 26 does this fix the situation??
FIXME 50 this has a global $order
FIXME 54 we do NOT want the global $order
FIXME 56 update the shippingmethod id for each orderitem..again, this is only here until we implement split shipping.

framework\modules\navigation\models\section.php 2

Type Line Description
FIXME 375 if we delete the module & sectionref the module completely disappears
FIXME 378 more module/controller glue code

framework\core\forms\controllertemplate.php 2

Type Line Description
FIXME 36 this disables bad template code reporting 3.x
FIXME 122 probably not used in 2.0?

framework\core\subsystems\expBot.php 1

Type Line Description
FIXME 47 is this better than sleep(1)? seems to make it work, but delays?

framework\modules\ecommerce\models\order_discounts.php 2

Type Line Description
FIXME 37 this has a global $order
FIXME 55 we do NOT want the global $order, but it's not used

framework\modules\users\controllers\usersController.php 2

Type Line Description
FIXME 324 why are we doing this? this loads the edited user perms over the current user???
FIXME 1378 needs to be the newer fail form

framework\modules\migration\controllers\migrationController.php 2

Type Line Description
TODO 309 this doesn't work w/ php 5.2
FIXME 2283 do we want to add a forms_id field?

framework\core\forms\basetemplate.php 2

Type Line Description
FIXME 57 this disables bad template code reporting 3.x
FIXME 123 only place we call this method